Your IP : 216.73.217.13


Current Path : /home/poneycluc/www/plugins/system/t4/themes/base/html/layouts/t4/element/
Upload File :
Current File : /home/poneycluc/www/plugins/system/t4/themes/base/html/layouts/t4/element/megamenu-toggle.php

<?php

use Joomla\CMS\Factory;

$paramsTpl = Factory::getApplication()->getTemplate(true)->params;

$navigation_settings = $paramsTpl->get('navigation-settings');

if (!filter_var($navigation_settings->get('mega_showsm'), FILTER_VALIDATE_BOOLEAN)) return;

$menuType = $navigation_settings->get('menu_type', 'mainmenu');
$navid = 't4-megamenu-' . $menuType;
?>
<nav class="navbar-expand-<?php echo $navigation_settings->get('option_breakpoint', 'lg') ?>">
    <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#<?php echo $navid ?>" aria-controls="<?php echo $navid ?>" aria-expanded="false" aria-label="Toggle navigation">
        <i class="fa fa-bars toggle-bars"></i>
    </button>
</nav>