?
Path : /home/admin/public_html/old/happy2/administrator/templates/hathor/html/com_menus/item/ |
Current File : /home/admin/public_html/old/happy2/administrator/templates/hathor/html/com_menus/item/edit.php |
<?php /** * @package Joomla.Administrator * @subpackage Templates.hathor * @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt * @since 1.6 */ defined('_JEXEC') or die; // Include the component HTML helpers. JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html'); // Load the tooltip behavior. JHtml::_('behavior.framework'); JHtml::_('behavior.tooltip'); JHtml::_('behavior.formvalidation'); JHtml::_('behavior.modal'); $canDo = MenusHelper::getActions(); ?> <script type="text/javascript"> Joomla.submitbutton = function(task, type) { if (task == 'item.setType' || task == 'item.setMenuType') { if(task == 'item.setType') { document.id('item-form').elements['jform[type]'].value = type; document.id('fieldtype').value = 'type'; } else { document.id('item-form').elements['jform[menutype]'].value = type; } Joomla.submitform('item.setType', document.id('item-form')); } else if (task == 'item.cancel' || document.formvalidator.isValid(document.id('item-form'))) { Joomla.submitform(task, document.id('item-form')); } else { // special case for modal popups validation response $$('#item-form .modal-value.invalid').each(function(field){ var idReversed = field.id.split("").reverse().join(""); var separatorLocation = idReversed.indexOf('_'); var name = idReversed.substr(separatorLocation).split("").reverse().join("")+'name'; document.id(name).addClass('invalid'); }); } } </script> <div class="menuitem-edit"> <form action="<?php echo JRoute::_('index.php?option=com_menus&layout=edit&id='.(int) $this->item->id); ?>" method="post" name="adminForm" id="item-form" class="form-validate"> <div class="col main-section"> <fieldset class="adminform"> <legend><?php echo JText::_('COM_MENUS_ITEM_DETAILS');?></legend> <ul class="adminformlist"> <li><?php echo $this->form->getLabel('type'); ?> <?php echo $this->form->getInput('type'); ?></li> <li><?php echo $this->form->getLabel('title'); ?> <?php echo $this->form->getInput('title'); ?></li> <?php if ($this->item->type =='url'): ?> <?php $this->form->setFieldAttribute('link', 'readonly', 'false');?> <li><?php echo $this->form->getLabel('link'); ?> <?php echo $this->form->getInput('link'); ?></li> <?php endif; ?> <?php if ($this->item->type == 'alias'): ?> <li> <?php echo $this->form->getLabel('aliastip'); ?></li> <?php endif; ?> <?php if ($this->item->type !='url'): ?> <li><?php echo $this->form->getLabel('alias'); ?> <?php echo $this->form->getInput('alias'); ?></li> <?php endif; ?> <li><?php echo $this->form->getLabel('note'); ?> <?php echo $this->form->getInput('note'); ?></li> <?php if ($this->item->type !=='url'): ?> <li><?php echo $this->form->getLabel('link'); ?> <?php echo $this->form->getInput('link'); ?></li> <?php endif ?> <?php if ($canDo->get('core.edit.state')) : ?> <li><?php echo $this->form->getLabel('published'); ?> <?php echo $this->form->getInput('published'); ?></li> <?php endif ?> <li><?php echo $this->form->getLabel('access'); ?> <?php echo $this->form->getInput('access'); ?></li> <li><?php echo $this->form->getLabel('menutype'); ?> <?php echo $this->form->getInput('menutype'); ?></li> <li><?php echo $this->form->getLabel('parent_id'); ?> <?php echo $this->form->getInput('parent_id'); ?></li> <li><?php echo $this->form->getLabel('menuordering'); ?> <?php echo $this->form->getInput('menuordering'); ?></li> <li><?php echo $this->form->getLabel('browserNav'); ?> <?php echo $this->form->getInput('browserNav'); ?></li> <?php if ($canDo->get('core.edit.state')) : ?> <?php if ($this->item->type == 'component') : ?> <li><?php echo $this->form->getLabel('home'); ?> <?php echo $this->form->getInput('home'); ?></li> <?php endif; ?> <?php endif; ?> <li><?php echo $this->form->getLabel('language'); ?> <?php echo $this->form->getInput('language'); ?></li> <li><?php echo $this->form->getLabel('template_style_id'); ?> <?php echo $this->form->getInput('template_style_id'); ?></li> <li><?php echo $this->form->getLabel('id'); ?> <?php echo $this->form->getInput('id'); ?></li> </ul> </fieldset> </div> <div class="col options-section"> <?php echo JHtml::_('sliders.start', 'menu-sliders-'.$this->item->id); ?> <?php //Load parameters. echo $this->loadTemplate('options'); ?> <div class="clr"></div> <?php if (!empty($this->modules)) : ?> <?php echo JHtml::_('sliders.panel', JText::_('COM_MENUS_ITEM_MODULE_ASSIGNMENT'), 'module-options'); ?> <fieldset> <?php echo $this->loadTemplate('modules'); ?> </fieldset> <?php endif; ?> <?php echo JHtml::_('sliders.end'); ?> <input type="hidden" name="task" value="" /> <?php echo $this->form->getInput('component_id'); ?> <?php echo JHtml::_('form.token'); ?> <input type="hidden" id="fieldtype" name="fieldtype" value="" /> </div> </form> <div class="clr"></div> </div>