| Server IP : 54.36.91.62 / Your IP : 216.73.217.94 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/c/o/o/coopiak/newsite/administrator/templates/hathor/html/com_menus/menutypes/ |
Upload File : |
<?php
/**
* @package Joomla.Administrator
* @subpackage Template.hathor
*
* @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
$input = JFactory::getApplication()->input;
// Checking if loaded via index.php or component.php
$tmpl = ($input->getCmd('tmpl') != '') ? '1' : '';
JFactory::getDocument()->addScriptDeclaration(
'
setmenutype = function(type) {
var tmpl = ' . json_encode($tmpl) . ';
if (tmpl)
{
window.parent.Joomla.submitbutton("item.setType", type);
window.parent.jQuery("#menuTypeModal").modal("hide");
}
else
{
window.location="index.php?option=com_menus&view=item&task=item.setType&layout=edit&type=" + type;
}
};
'
);
?>
<h2 class="modal-title"><?php echo JText::_('COM_MENUS_TYPE_CHOOSE'); ?></h2>
<ul class="menu_types">
<?php foreach ($this->types as $name => $list): ?>
<li><dl class="menu_type">
<dt><?php echo JText::_($name); ?></dt>
<dd><ul>
<?php foreach ($list as $item): ?>
<li><a class="choose_type" href="#" title="<?php echo JText::_($item->description); ?>"
onclick="javascript:setmenutype('<?php echo base64_encode(json_encode(array('id' => $this->recordId, 'title' => $item->title, 'request' => $item->request))); ?>')">
<?php echo JText::_($item->title);?>
</a>
</li>
<?php endforeach; ?>
</ul>
</dd>
</dl>
</li>
<?php endforeach; ?>
<li><dl class="menu_type">
<dt><?php echo JText::_('COM_MENUS_TYPE_SYSTEM'); ?></dt>
<dd>
<ul>
<li><a class="choose_type" href="#" title="<?php echo JText::_('COM_MENUS_TYPE_EXTERNAL_URL_DESC'); ?>"
onclick="javascript:setmenutype('<?php echo base64_encode(json_encode(array('id' => $this->recordId, 'title' => 'url'))); ?>')">
<?php echo JText::_('COM_MENUS_TYPE_EXTERNAL_URL'); ?>
</a>
</li>
<li><a class="choose_type" href="#" title="<?php echo JText::_('COM_MENUS_TYPE_ALIAS_DESC'); ?>"
onclick="javascript:setmenutype('<?php echo base64_encode(json_encode(array('id' => $this->recordId, 'title' => 'alias'))); ?>')">
<?php echo JText::_('COM_MENUS_TYPE_ALIAS'); ?>
</a>
</li>
<li><a class="choose_type" href="#" title="<?php echo JText::_('COM_MENUS_TYPE_SEPARATOR_DESC'); ?>"
onclick="javascript:setmenutype('<?php echo base64_encode(json_encode(array('id' => $this->recordId, 'title' => 'separator'))); ?>')">
<?php echo JText::_('COM_MENUS_TYPE_SEPARATOR'); ?>
</a>
</li>
<li><a class="choose_type" href="#" title="<?php echo JText::_('COM_MENUS_TYPE_HEADING_DESC'); ?>"
onclick="javascript:setmenutype('<?php echo base64_encode(json_encode(array('id' => $this->recordId, 'title' => 'heading'))); ?>')">
<?php echo JText::_('COM_MENUS_TYPE_HEADING'); ?>
</a>
</li>
</ul>
</dd>
</dl>
</li>
</ul>