我的工作,我已经在Magento管理使用创建了一个菜单模块上adminhtml.xml
。
现在,我要链接的菜单的一个外部URL,并设置target="blank"
。 但我不知道怎么做,在adminhtml.xml
。 这里是我的代码。
<?xml version="1.0"?>
<config>
<menu>
<system>
<children>
<convert translate="title">
<children>
<importmagmi translate="title" module="importexport">
<title>MagMi Importer</title>
<action><url helper="https://externalurl.com"/></action>
<sort_order>100</sort_order>
</importmagmi>
</children>
</convert>
</children>
</system>
</menu>
</config>
外部URL前,当我检查其添加当前域名。 例如: http://mydomainname.com/https://externalurl.com
我想知道如何设置唯一的外部网址是什么?
里面<action>
标签,你可以把module/controller/action
的模块。
然后创建这个动作,并把这样的事情:
public function locationAction()
{
$this->_redirectUrl('http://www.example.com/');
}
见Mage_Core_Controller_Varien_Action::_redirectUrl
在Magento的控制器操作的标准重定向执行。
不幸的是,这是不可能的开箱。 对于这个工作,你不得不重写Mage_Adminhtml_Block_Page_Menu
类。
我建议修改_buildMenuArray
方法,以支持“external_url”配置选项中adminhtml.xml像这样
if( $child->external_url ) {
$menuArr['url'] = (string)$child->external_url;
$menuArr['is_external'] = true;
}
elseif ($child->action) {
$menuArr['url'] = $this->_url->getUrl((string)$child->action, array('_cache_secret_key' => true));
} else {
$menuArr['url'] = '#';
$menuArr['click'] = 'return false';
}
和getMenuLevel
方法分别
$html .= '<li ' . (!empty($item['children']) ? 'onmouseover="Element.addClassName(this,\'over\')" '
. 'onmouseout="Element.removeClassName(this,\'over\')"' : '') . ' class="'
. (!$level && !empty($item['active']) ? ' active' : '') . ' '
. (!empty($item['children']) ? ' parent' : '')
. (!empty($level) && !empty($item['last']) ? ' last' : '')
. ' level' . $level . '"> <a ' . ($item['is_external'] ? 'target="_blank" ' : '') . 'href="' . $item['url'] . '" '
. (!empty($item['title']) ? 'title="' . $item['title'] . '"' : '') . ' '
. (!empty($item['click']) ? 'onclick="' . $item['click'] . '"' : '') . ' class="'
. ($level === 0 && !empty($item['active']) ? 'active' : '') . '"><span>'
. $this->escapeHtml($item['label']) . '</span></a>' . PHP_EOL;
然后,你可以添加到您的配置
<?xml version="1.0"?>
<config>
<menu>
<system>
<children>
<convert translate="title">
<children>
<importmagmi translate="title" module="importexport">
<title>MagMi Importer</title>
<external_url>https://externalurl.com</external_url> <sort_order>100</sort_order>
</importmagmi>
</children>
</convert>
</children>
</system>
</menu>
</config>
记住改写上课不修改核心类。
<?php
$url = 'http://example.com';
$this->_redirectUrl('http://example.com');
Mage::app()->getResponse()->setRedirect($url)->sendResponse();
Mage::app()->getFrontController()->getResponse()->setRedirect($url)->sendResponse();
?>