70 lines
2.1 KiB
PHP
70 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* @package Joomla.Site
|
|
* @subpackage mod_menu
|
|
*
|
|
* @copyright (C) 2025 Moko Consulting <hello@mokoconsulting.tech>
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
*
|
|
* Main Menu - URL item layout
|
|
*/
|
|
|
|
defined('_JEXEC') or die;
|
|
|
|
use Joomla\CMS\Filter\OutputFilter;
|
|
use Joomla\CMS\HTML\HTMLHelper;
|
|
|
|
$attributes = [];
|
|
|
|
if ($item->anchor_title) {
|
|
$attributes['title'] = $item->anchor_title;
|
|
}
|
|
|
|
if ($item->anchor_css) {
|
|
$attributes['class'] = $item->anchor_css;
|
|
}
|
|
|
|
if ($item->anchor_rel) {
|
|
$attributes['rel'] = $item->anchor_rel;
|
|
}
|
|
|
|
$linktype = $item->title;
|
|
|
|
if ($item->menu_icon) {
|
|
// The link is an icon
|
|
if ($itemParams->get('menu_text', 1)) {
|
|
// If the link text is to be displayed, the icon is added with aria-hidden
|
|
$linktype = '<span class="p-2 ' . $item->menu_icon . '" aria-hidden="true"></span>' . $item->title;
|
|
} else {
|
|
// If the icon itself is the link, it needs a visually hidden text
|
|
$linktype = '<span class="p-2 ' . $item->menu_icon . '" aria-hidden="true"></span><span class="visually-hidden">' . $item->title . '</span>';
|
|
}
|
|
}
|
|
|
|
if ($item->browserNav == 1) {
|
|
$attributes['target'] = '_blank';
|
|
$attributes['rel'] = 'noopener noreferrer';
|
|
} elseif ($item->browserNav == 2) {
|
|
$options = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,' . $params->get('window_open');
|
|
|
|
$attributes['onclick'] = "window.open(this.href, 'targetWindow', '" . $options . "'); return false;";
|
|
}
|
|
|
|
// Add dropdown toggle for items with children
|
|
$linkClass = 'nav-link mod-menu-main__link';
|
|
if ($item->deeper) {
|
|
$linkClass .= ' dropdown-toggle';
|
|
$attributes['data-bs-toggle'] = 'dropdown';
|
|
$attributes['role'] = 'button';
|
|
$attributes['aria-expanded'] = 'false';
|
|
}
|
|
|
|
// Merge existing class with our class
|
|
if (isset($attributes['class'])) {
|
|
$attributes['class'] .= ' ' . $linkClass;
|
|
} else {
|
|
$attributes['class'] = $linkClass;
|
|
}
|
|
|
|
echo HTMLHelper::_('link', OutputFilter::ampReplace(htmlspecialchars($item->flink, ENT_COMPAT, 'UTF-8', false)), $linktype, $attributes);
|