Всем привет! Прошу помощи..
Задача добавить атрибуты data-toggle и data-target для ссылки в стандартном модуле меню.
С помощью Google, они у меня добавляются, но не для всех типов пункта меню.
Не получается добавить для псевдонима пункта меню. В других типах (разделитель или ссылка на компонент) добавляется.
Вот код файла default_component.php , который я изменил
<?php
/**
* @package Joomla.Site
* @subpackage mod_menu
*
* [member=126442]copyright[/member] Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
$attributes = array();
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;
}
$attributes['data-toggle'] = 'collapse';
$attributes['data-target'] = '#ocSub-' . $item->id;
$linktype = $item->title;
if ($item->menu_image)
{
/*$linktype = JHtml::_('image', $item->menu_image, $item->title);*/
if ($item->params->get('menu_text', 1))
{
$linktype = $item->title;
}
}
if ($item->browserNav == 1)
{
$attributes['target'] = '_blank';
}
elseif ($item->browserNav == 2)
{
$options = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes';
$attributes['onclick'] = "window.open(this.href, 'targetWindow', '" . $options . "'); return false;";
}
echo JHtml::_('link', JFilterOutput::ampReplace(htmlspecialchars($item->flink)), $linktype, $attributes);
В ссылку псевдонима пункта меню не попадают
$attributes['data-toggle'] = 'collapse';
$attributes['data-target'] = '#ocSub-' . $item->id;
Подскажите, как мне их передать в ссылку? В php не силен, все делаю с помощью Google.