Magento addColumn()在每个产品记录的末尾添加“查看”链接

时间:2012-09-11 04:59:05

标签: magento

我想在目录 - >的产品列表中的每个产品记录的末尾添加一个产品显示页面的链接。管理产品。

到目前为止,我发现我应该编辑Grid.php并提出以下代码:

$this->addColumn('view',
            array(
                'header'    => Mage::helper('catalog')->__('View'),
                'width'     => '50px',
                'type'      => 'action',
                'getter'     => 'getId',
                'actions'   => array(
                    array(
                        'caption' => Mage::helper('catalog')->__('View'),
                        'url'     => array(
                            'base'=>'*/*/view',
                            'params'=>array()
                        ),
                        'field'   => 'id'
                    )
                ),
                'filter'    => false,
                'sortable'  => false,
                'index'     => 'stores',
        ));

现在我不知道如何获取当前产品(行)的产品页面网址。

知道如何更改上面的代码以获得我想要的内容吗?只需链接到当前产品系列的产品页面....就像一个带有View Post链接的wordpress帖子打开前端帖子。

1 个答案:

答案 0 :(得分:1)