正如标题所说。我可以从布局 XML 文件中调用单例方法作为参数的值<action>
吗?
例如,我可以在 Magento 的布局文件中将下面的 PHP 代码表示为 XML 吗?
PHP
$this->addColumn('status', array(
'header' => Mage::helper('sales')->__('Status'),
'index' => 'status',
'type' => 'options',
'width' => '70px',
'options' => Mage::getSingleton('sales/order_config')->getStatuses(),
));
布局 XML
<action method="addColumn">
<columnId>status</columnId>
<column translate="header">
<header>Status</header>
<index>status</index>
<type>options</type>
<width>70px</width>
<options>What should I put here?</options>
</column>
</action>