这是将搜索模块加载到菜单中的一种替代方法。它需要几个简单的步骤:
1.覆盖您的mod_menu
模块
- 在您的模板文件夹中创建替代
\templates\YOURTEMPLATE\html\mod_menu\default_url.php
。
- 将以下内容复制到文件中:
default_url.php
<?php
/**
* @package Joomla.Site
* @subpackage mod_menu
*
* @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
// Note. It is important to remove spaces between elements.
$class = $item->anchor_css ? 'class="' . $item->anchor_css . '" ' : '';
$title = $item->anchor_title ? 'title="' . $item->anchor_title . '" ' : '';
if ($item->menu_image)
{
$item->params->get('menu_text', 1) ?
$linktype = '<img src="' . $item->menu_image . '" alt="' . $item->title . '" /><span class="image-title">' . $item->title . '</span> ' :
$linktype = '<img src="' . $item->menu_image . '" alt="' . $item->title . '" />';
}
else
{
$linktype = $item->title;
}
$flink = $item->flink;
$flink = JFilterOutput::ampReplace(htmlspecialchars($flink));
if ($linktype == "CustomSearchBox"){
$document = &JFactory::getDocument();
$renderer = $document->loadRenderer('modules');
$options = array('style' => 'xhtml');
$position = 'CustomSearchBox';
echo $renderer->render($position, $options, null);
}
else {
switch ($item->browserNav) :
default:
case 0:
?><a <?php echo $class; ?>href="<?php echo $flink; ?>" <?php echo $title; ?>><?php echo $linktype; ?></a><?php
break;
case 1:
// _blank
?><a <?php echo $class; ?>href="<?php echo $flink; ?>" target="_blank" <?php echo $title; ?>><?php echo $linktype; ?></a><?php
break;
case 2:
// window.open
$options = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,'.$params->get('window_open');
?><a <?php echo $class; ?>href="<?php echo $flink; ?>" onclick="window.open(this.href,'targetWindow','<?php echo $options;?>');return false;" <?php echo $title; ?>><?php echo $linktype; ?></a><?php
break;
endswitch;
}
我if-else
从第29行开始添加了一条语句,该语句检查菜单项标题是否为“ CustomSearchBox”。在这种情况下,将加载模块位置“ CustomSearchBox”。如果不是,则返回普通菜单项。您可以将“ CustomSearchBox”更改为所需的任何值,但是如果您确实记得在以下步骤中使用相同的值。
2.创建一个新的搜索模块
创建搜索模块并根据需要设置参数(我建议隐藏模块标题)。
将模块发布到自定义位置“ CustomSearchBox”
3.创建一个新的菜单项
菜单项可以是任何类型,我建议使用“外部URL”,并且名称必须为“ CustomSearchBox”。
保存菜单项,整个菜单项将被搜索框替换!
让我知道是否有不清楚的地方。
jQuery
使用类似的功能,append()
或者prepend()
在禁用JavaScript的浏览器上无法使用的功能。