Current Path :
/
home
/
develito
/
httpdocs
/
modules
/
mod_maximenuck
/
elements
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/develito/httpdocs/modules/mod_maximenuck/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; } }