Magento控制器URL重定向到仪表板

时间:2016-03-04 16:39:21

标签: magento redirect controller dashboard

基本上是在尝试创建一个收件箱信息,其中包含"读取详细信息"应该将用户重定向到自定义控制器,但是我可以在浏览器中看到所需的URL一秒钟,然后重定向到仪表板;这就是目前我试图实现的目标:

    $myId = $myJson['id'];
    $title = "Title of my notice";
    $description = $myJson['text'];
    $url= Mage::helper("adminhtml")->getUrl('My_Module/Controller/index', array('id' => $myId));

    $sendingMessage = Mage::getModel('adminnotification/inbox')->addNotice($title,$description,$url);

上面的代码成功地将消息添加到收件箱,但正如我之前所说,我可以在浏览器中看到所需的URL,然后再将其重定向到仪表板。

我从另一个控制器访问同一个控制器并按预期执行,实际工作的控制器是Grid,它看起来像这样:

$this->addColumn('action',
array(
          'header' => __('Answer'),
          'width' => '100',
          'type' => 'action',
          'getter' => 'getId',
          'actions' => array(
                 array(
                      'caption' => __('Answer'),
                      'url' => array('base'=> '*/Controller'),
                      'field' => 'id'
                    )),
          'filter' => false,
          'sortable' => false,
          'index' => 'stores',
          'is_system' => true,
));

所以,我在这里错过了一些东西吗?

顺便说一句,有什么方法可以让#34;阅读细节"链接在同一页面打开而不是新标签?

=============================================== ===================

更新

禁用"为网址添加密钥"在安全选项允许我让它工作,但我想使用密钥。

我在第一个代码块中生成的网址实际上在网址中有一个键/值,它们看起来像这样:

https://example.com/index.php/mymodule/Controller/index/id/3963566814/key/f84701848a22d2ef36022accdb2a6a69/

1 个答案:

答案 0 :(得分:2)

看起来您正在尝试生成管理员网址。在Magento的现代版本中,管理员网址必须使用{em> Magento正面名称共享技术(this article中所述)使用adminhtml正面名称。这是必须,如果你不这样做,URL将无法正常工作。 Magento删除了在后端创建非adminhtml URL的功能。

其次,这是Magento生成密钥的地方

#File: app/code/core/Mage/Adminhtml/Model/Url.php
public function getSecretKey($controller = null, $action = null)
{
    $salt = Mage::getSingleton('core/session')->getFormKey();

    $p = explode('/', trim($this->getRequest()->getOriginalPathInfo(), '/'));
    if (!$controller) {
        $controller = !empty($p[1]) ? $p[1] : $this->getRequest()->getControllerName();
    }
    if (!$action) {
        $action = !empty($p[2]) ? $p[2] : $this->getRequest()->getActionName();
    }

    $secret = $controller . $action . $salt;
    return Mage::helper('core')->getHash($secret);
}

这里是验证密钥的地方

#File: app/code/core/Mage/Adminhtml/Controller/Action.php
protected function _validateSecretKey()
{
    if (is_array($this->_publicActions) && in_array($this->getRequest()->getActionName(), $this->_publicActions)) {
        return true;
    }

    if (!($secretKey = $this->getRequest()->getParam(Mage_Adminhtml_Model_Url::SECRET_KEY_PARAM_NAME, null))
        || $secretKey != Mage::getSingleton('adminhtml/url')->getSecretKey()) {
        return false;
    }
    return true;
}

比较$secret的前/后哈希值,了解为什么Magento会在您的网页上生成错误的密钥。