| Current Path : /home/g/i/t/giteleslfp/www/plugins/system/tooltipgc/elements/ |
| Current File : /home/g/i/t/giteleslfp/www/plugins/system/tooltipgc/elements/ckmenu.php |
<?php
/**
* @copyright Copyright (C) 2011 Cedric KEIFLIN alias ced1870
* http://www.joomlack.fr
* Module Maximenu CK
* @license GNU/GPL
* */
defined('JPATH_PLATFORM') or die;
jimport('joomla.html.html');
jimport('joomla.form.formfield');
jimport('joomla.form.helper');
JFormHelper::loadFieldClass('cklist');
// Import the com_menus helper.
require_once realpath(JPATH_ADMINISTRATOR.'/components/com_menus/helpers/menus.php');
class JFormFieldCkmenu extends JFormFieldCklist
{
public $type = 'ckmenu';
protected function getOptions()
{
// Merge any additional options in the XML definition.
$options = array_merge(parent::getOptions(), JHtml::_('menu.menus'));
return $options;
}
}