Current Path :
/
home
/
develito
/
public_html
/
modules
/
mod_maximenuck
/
tmpl
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/develito/public_html/modules/mod_maximenuck/tmpl/dropselect.php
<?php /** * @copyright Copyright (C) 2012-2020 Cedric KEIFLIN alias ced1870 * https://www.joomlack.fr * Module Maximenu CK * @license GNU/GPL * */ // no direct access defined('_JEXEC') or die('Restricted access'); ?> <!-- debut maximenu CK --> <select name="maximenuckdropselect" id="<?php echo $params->get('menuid', 'maximenuck'); ?>" style="width: auto" onchange="top.location.href=this.options[this.selectedIndex].value" class="<?php echo $params->get('class_sfx'); ?>"> <?php foreach ($items as $i => &$item) { $selected = ($item->current) ? ' selected="selected"' : ''; echo "<option " . $selected . "value=\"" . $item->flink . "\">" . str_repeat("- ", $item->level - 1) . $item->ftitle . "</option>"; } ?> </select> <!-- fin maximenuCK -->