magento根据url来找文件的总结,以及对Magento请求分分析,这个是看了网上的帖子,自己的一点点理解 这里面用到的是
app/code/local/Alanstormdotcom/Helloworld/etc/config.xml
<config> <modules> <Alanstormdotcom_Helloworld> <version>0.1.0</version> </Alanstormdotcom_Helloworld>
</modules>
创建一个系统配置文件来激活这个模块
app/etc/modules/Alanstormdotcom_Helloworld.xml
<config>
<modules> <Alanstormdotcom_Helloworld> <active>true</active> <codePool>local</codePool> </Alanstormdotcom_Helloworld> </modules> </config>
检查一下模块是不是已经被激活
为路由创建执行控制器app/code/local/Alanstormdotcom/Helloworld/controllers/IndexController.php
class Alanstormdotcom_Helloworld_IndexController extends Mage_Core_Controller_Front_Action { http://example.com/frontName/actionControllerName/actionMethod/ http://exmaple.com/helloworld/index/index 通过这样的访问就可以看到:function indexAction()的内容了....... 命名:magento执行控制器 ....<module>Alanstormdotcom_Helloworld</module>
(责任编辑:最模板) |