实施例
mylayoutfile.xml
<layout>
<default>
<reference name="header">
<block type="mynamespace_mymodule/view" name="mynamespace_mymodule" output="toHtml" template="mymodule/html/view.phtml">
<action method="setTest"><param1>myparam1</param1><param2>myparam2</param2></action>
</block>
</reference>
</default>
</layout>
应用程序/代码/本地/ myNameSpace对象/ Mymodule中/砌块/ View.php
class Mynamespace_Mymodule_Block_View extends Mage_Core_Block_Template{
public $test = "before any params";
public function setTest($passedparam1,$passedparam2){
$this->test = $passedparam1 ." ". $passedparam2;
}
}
应用程序/设计/.../.../ MyModule的/ HTML / view.phtml
<?php
echo "<pre>";
print_r($this->test); //myparam1 myparam2
echo"</pre>";
die();
解释
mylayoutfile是通过模块config.xml
在更新中编译的mynamespace_module的块类前缀也在模块config.xml中定义
mynamespace_module / view设置为块类型并实例化,并设置view.phtml的输出文件
发生一个动作,调用父节点块的方法setTest传递两个参数,其值为myparam1和myparam2。
在setTest函数内部,类参数“test”设置为等于“myparam1 myparam2”
模板文件app / design /.../.../ mymodule / html / view.phtml已加载,我们回显$ this-&gt; test的值($ this指的是早期实例化的块类Mynamespace_mymodule_Block_View )
答案 0 :(得分:14)
setTitle
的使用情况。 任何事情都可以通过。可以在布局XML中定义数组:
<action method="setFoo">
<arbitrary>
<key1>val1</key1>
<key2>val1</key2>
</arbitrary>
</action>
此外,参数节点可以执行辅助方法,其返回值将作为值传递:
<action method="setFoo">
<arbitrary helper="foo/bar" />
</action>
这将实例化帮助者&amp;运行方法:Mage::helper('foo')->bar()
。因此,返回值可以是您想要的任何值。另外,args可以传递给子节点中的帮助器!
Varien_Object
,所以是的,虽然设置者是唯一合理使用的。ifconfig
属性,它将使用提供的参数调用Mage::getStoreConfigFlag()
,并在配置值为真时处理操作。