Current Path :
/
home
/
develito
/
public_html
/
modules
/
mod_jbmenu
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/develito/public_html/modules/mod_jbmenu/mod_jbmenu.php
<?php /** * @package Extly.Modules * @subpackage JBDropDownMenu - Menu based on Twitter's Bootstrap, Subnav, Nav Nav-pills, with Dropdown Menu * * @author Prieco S.A. <support@extly.com> * @copyright Copyright (C) 2007 - 2012 Prieco, S.A. All rights reserved. * @license http://www.gnu.org/licenses/gpl-3.0.html GNU/GPL * @link http://www.extly.com http://support.extly.com */ // No direct access defined('_JEXEC') or die('Restricted access'); // Include the syndicate functions only once require_once dirname(__FILE__) . '/helper.php'; $list = modJbMenuHelper::getList($params); $app = JFactory::getApplication(); $menu = $app->getMenu(); $active = $menu->getActive(); $active_id = isset($active) ? $active->id : $menu->getDefault()->id; $path = isset($active) ? $active->tree : array(); $showAll = $params->get('showAllChildren'); $class_sfx = htmlspecialchars($params->get('class_sfx')); if (count($list)) { require JModuleHelper::getLayoutPath('mod_jbmenu', $params->get('layout', 'default')); }