Your IP : 216.73.216.240
<?php
/**
* Leo Tran
* @package bootstrapmegamenu Bootstrap Mega Menu for Joomla
* @subpackage mod_bootstrapmegamenu
* @copyright Copyright (C) 2013 T.V.T Marine Automation (aka TVTMA). All rights reserved.
* @license http://www.gnu.org/licenses GNU General Public License version 2 or later; see LICENSE.txt
* @author url: http://ma.tvtmarine.com
* @author TVTMA support@ma.tvtmarine.com
*/
defined('_JEXEC') or die;
$class = '';
if ($item->anchor_css)
{
$class .= $item->anchor_css;
}
if ($item->deeper && $params->get('showAllChildren'))
{
if ($class)
{
$class .= ' dropdown-toggle';
} else
{
$class .= 'dropdown-toggle';
}
}
if ($class)
{
$class = 'class="' . $class . '" ';
}
$dataToggle = ($item->deeper && $params->get('showAllChildren') && $item->level < 2 && !$nav_child) ? 'data-toggle="dropdown" ' : '';
$icon = ($item->parent && $item->level == 1 && $params->get('showAllChildren')) ? ' <b class="caret"></b>' : '';
$title = $item->anchor_title ? 'title="' . $item->anchor_title . '" ' : '';
if ($item->menu_image)
{
if ($item->params->get('menu_text', 1))
{
$linktype = '<img src="' . $item->menu_image . '" alt="' . $item->title . '" /> <span class="image-title">' . $item->title . '</span> ';
} else
{
$linktype = '<img src="' . $item->menu_image . '" alt="' . $item->title . '" />';
}
} else
{
$linktype = $item->title;
}
$subtitle_param = trim($item->params->get('bootstrapmega_subtitle'));
$subtitle = $subtitle_param ? '<div class="small">' . $subtitle_param . '</div>' : '';
/* BEGIN Glyphicons */
$glyphicon_classes = trim($item->params->get('glyphicon'));
if ($glyphicon_classes)
{
$linktype = '<span class="' . $glyphicon_classes . '"></span> ' . $linktype;
}
/* END Glyphicons */
switch ($item->browserNav) :
default:
case 0:
?><a <?php echo $class . $dataToggle; ?>href="<?php echo $item->flink; ?>" <?php echo $title; ?>><?php echo $linktype . $icon . $subtitle; ?></a><?php
break;
case 1:
// _blank
?><a <?php echo $class; ?>href="<?php echo $item->flink; ?>" target="_blank" <?php echo $title; ?>><?php echo $linktype; ?></a><?php
break;
case 2:
// window.open
?><a <?php echo $class; ?>href="<?php echo $item->flink; ?>" onclick="window.open(this.href, 'targetWindow', 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes');
return false;" <?php echo $title; ?>><?php echo $linktype; ?></a>
<?php
break;
endswitch;