71 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
|  * @package     Joomla.Administrator
 | |
|  * @subpackage  com_banners
 | |
|  *
 | |
|  * @copyright   (C) 2009 Open Source Matters, Inc. <https://www.joomla.org>
 | |
|  * @license     GNU General Public License version 2 or later; see LICENSE.txt
 | |
|  */
 | |
| 
 | |
| defined('_JEXEC') or die;
 | |
| 
 | |
| use Joomla\CMS\HTML\HTMLHelper;
 | |
| use Joomla\CMS\Language\Text;
 | |
| use Joomla\CMS\Layout\LayoutHelper;
 | |
| use Joomla\CMS\Router\Route;
 | |
| 
 | |
| /** @var \Joomla\Component\Banners\Administrator\View\Client\HtmlView $this */
 | |
| 
 | |
| /** @var Joomla\CMS\WebAsset\WebAssetManager $wa */
 | |
| $wa = $this->getDocument()->getWebAssetManager();
 | |
| $wa->useScript('keepalive')
 | |
|     ->useScript('form.validate');
 | |
| 
 | |
| ?>
 | |
| 
 | |
| <form action="<?php echo Route::_('index.php?option=com_banners&layout=edit&id=' . (int) $this->item->id); ?>" method="post" name="adminForm" id="client-form" aria-label="<?php echo Text::_('COM_BANNERS_CLIENT_' . ((int) $this->item->id === 0 ? 'NEW' : 'EDIT'), true); ?>" class="form-validate">
 | |
| 
 | |
|     <?php echo LayoutHelper::render('joomla.edit.title_alias', $this); ?>
 | |
| 
 | |
|     <div class="main-card">
 | |
|         <?php echo HTMLHelper::_('uitab.startTabSet', 'myTab', ['active' => 'general', 'recall' => true, 'breakpoint' => 768]); ?>
 | |
| 
 | |
|         <?php echo HTMLHelper::_('uitab.addTab', 'myTab', 'general', empty($this->item->id) ? Text::_('COM_BANNERS_NEW_CLIENT') : Text::_('COM_BANNERS_EDIT_CLIENT')); ?>
 | |
|         <div class="row">
 | |
|             <div class="col-lg-9">
 | |
|                 <?php
 | |
|                 echo $this->form->renderField('contact');
 | |
|                 echo $this->form->renderField('email');
 | |
|                 echo $this->form->renderField('purchase_type');
 | |
|                 echo $this->form->renderField('track_impressions');
 | |
|                 echo $this->form->renderField('track_clicks');
 | |
|                 echo $this->form->renderFieldset('extra');
 | |
|                 ?>
 | |
|             </div>
 | |
|             <div class="col-lg-3">
 | |
|                 <?php echo LayoutHelper::render('joomla.edit.global', $this); ?>
 | |
|             </div>
 | |
|         </div>
 | |
|         <?php echo HTMLHelper::_('uitab.endTab'); ?>
 | |
| 
 | |
|         <?php echo HTMLHelper::_('uitab.addTab', 'myTab', 'metadata', Text::_('JGLOBAL_FIELDSET_METADATA_OPTIONS')); ?>
 | |
|         <div class="row">
 | |
|             <div class="col-12 col-lg-6">
 | |
|                 <fieldset id="fieldset-metadata" class="options-form">
 | |
|                     <legend><?php echo Text::_('JGLOBAL_FIELDSET_METADATA_OPTIONS'); ?></legend>
 | |
|                     <div>
 | |
|                     <?php echo $this->form->renderFieldset('metadata'); ?>
 | |
|                     </div>
 | |
|                 </fieldset>
 | |
|             </div>
 | |
|         </div>
 | |
|         <?php echo HTMLHelper::_('uitab.endTab'); ?>
 | |
| 
 | |
|         <?php echo HTMLHelper::_('uitab.endTabSet'); ?>
 | |
|     </div>
 | |
| 
 | |
|     <input type="hidden" name="task" value="">
 | |
|     <?php echo HTMLHelper::_('form.token'); ?>
 | |
| </form>
 |