我需要在PHP(Joomla 1.5)中生成一些简单的UL标记,并使用SPAN标记包装每个锚标记的文本内容。传入的HTML如下所示:
<ul>
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#">Watch UNC-TV</a>
</li>
<li>
<a href="#" >Contact</a>
</li>
</ul>
输出需要如下所示:
<ul id="top-nav" class="flatList">
<li class="selected">
<a href="#"><span class="embed embed-top-nav">Home</span>
<p >news, highlights</p></a>
</li>
<li>
<a href="#"><span class="embed embed-top-nav">Watch UNC-TV</span>
<p>schedule, local programs</p></a>
</li>
<li id="nav-last">
<a href="#"><span class="embed embed-top-nav">Contact</span>
<p>feedback, connect, share</p></a>
</li>
</ul>
另请注意,该类添加到活动LI标记(“selected”),并且该类添加到列表中的最后一个(“nav-last”)。这是在Joomla 1.5中,我将覆盖主菜单使用的mod_mainmenu模块。该代码使用SimpleXML库在modMainMenuXMLCallback(&$node, $args)
:
<?php
defined('_JEXEC') or die('Restricted access');
if ( ! defined('fancyMenuPatch') )
{
function fancyMenuPatch($result,$tag){
// Replace UL tag with ours.
// Replace LI tag with ours.
// Add to the start of the UL tag.
$begin_ul = "<ul id=\"top-nav\" class=\"flatList\">";
$begin_li = "<li>"; //not sure what to do with this.
// do the replacement
$result = str_replace("<ul>",$begin_ul, $result);
$result = str_replace("<li>", $begin_li, $result);
return $result;
}
define('fancyMenuPatch', true);
}
if ( ! defined('modMainMenuXMLCallbackDefined') )
{
function modMainMenuXMLCallback(&$node, $args)
{
$user = &JFactory::getUser();
$menu = &JSite::getMenu();
$active = $menu->getActive();
$path = isset($active) ? array_reverse($active->tree) : null;
if (($args['end']) && ($node->attributes('level') >= $args['end']))
{
$children = $node->children();
foreach ($node->children() as $child)
{
if ($child->name() == 'ul') {
$node->removeChild($child);
}
}
}
if ($node->name() == 'ul') {
foreach ($node->children() as $child)
{
if ($child->attributes('access') > $user->get('aid', 0)) {
$node->removeChild($child);
}
}
}
if (($node->name() == 'li') && isset($node->ul)) {
$node->addAttribute('class', 'parent');
}
if (isset($path) && (in_array($node->attributes('id'), $path) || in_array($node->attributes('rel'), $path)))
{
if ($node->attributes('class')) {
$node->addAttribute('class', $node->attributes('class').' active');
} else {
$node->addAttribute('class', 'active');
}
}
else
{
if (isset($args['children']) && !$args['children'])
{
$children = $node->children();
foreach ($node->children() as $child)
{
if ($child->name() == 'ul') {
$node->removeChild($child);
}
}
}
}
if (($node->name() == 'li') && ($id = $node->attributes('id'))) {
if ($node->attributes('class')) {
$node->addAttribute('class', $node->attributes('class').' item'.$id);
} else {
$node->addAttribute('class', 'item'.$id);
}
}
if (isset($path) && $node->attributes('id') == $path[0]) {
$node->addAttribute('id', 'current');
} else {
$node->removeAttribute('id');
}
$node->removeAttribute('rel');
$node->removeAttribute('level');
$node->removeAttribute('access');
}
define('modMainMenuXMLCallbackDefined', true);
}
ob_start();
modMainMenuHelper::render($params, 'modMyMainMenuXMLCallback');
$menu_html = ob_get_contents();
ob_end_clean();
if($params->get('menutype')=="primarynav"){
$tag = $params->get('tag_id');
}
//output the menu!
echo fancyMenuPatch($menu_html,$tag);
?>
谢谢。
答案 0 :(得分:1)
好的,这就是你想要的方式。跳出上面发布的default.php脚本。作为Joomla!将核心mainmenu模块用于所有菜单和树,您将需要编辑帮助程序脚本。无论您使用的是任何第三方菜单扩展,都应该坚持使用。
rootdirectory/modules/mod_mainmenu/helper.php
现在跳到第358行的switch语句。具体来说我们要编辑363行。它看起来像这样:
$data = '<a href="'.$tmp->url.'">'.$image.$tmp->name.'</a>';
现在将其编辑为:
$data = '<span class="embed embed-top-nav"><a href="'.$tmp->url.'">'.$image.$tmp->name.'</a></span>';
你去,现在Joomla使用的菜单! getMenu类将在链接周围添加此span标记。
请注意,对于将在新窗口和cetra中打开的链接,您可能还需要对第375行执行此操作。还要注意路易斯的“有趣的评论”// hrm ......这有点像“。
欢呼声