给定班级
<?php
class NameSpace_HelloWorld_IndexController extends Mage_Core_Controller_Front_Action
{
public function sayHelloAction()
{
}
}
布局文件的名称应该是什么?
hello_world.xml
helloworld.xml
sayHelloAction 的 xml 动作名称应该是什么?
<hello_world_index_say_hello></hello_world_index_say_hello>
<helloworld_index_sayhello>
一篇关于 magento 命名约定的文章将不胜感激。我发现的示例仅解释了 Namespace_Helloworld_IndexController::sayhello() 编码风格。