Magento块类型

时间:2011-12-26 15:34:58

标签: magento block

在magento块中,块类型的含义如下面的块?

<block type="core/template" template="example/view.phtml" />

请帮助我学习magento模块开发。

有一些好的资源吗?

2 个答案:

答案 0 :(得分:7)

块“type”是一个PHP类。在正常系统中,

core/template

块类型将成为Mage_ Core _Block_ 模板类。

资源方面,start here(自我链接)

答案 1 :(得分:0)

这是我学到的东西 -

type指的是将为此phtml提供方法的PHP文件。 Examaple:

/app/code/local/modstorm/Block/Filename.php,此块的所有方法都驻留在这里。因此,例如,如果你的.phtml中有$ this-&gt; getMethodName(),你必须在/app/code/local/modstorm/block/Filename.php中声明getMethodName()函数。 p>

希望这也有助于其他人。