| Current Path : /home/jcjack6/transformptyoga.com/modules/mod_maximenuck/tmpl/ |
| Current File : /home/jcjack6/transformptyoga.com/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 -->