创建magento模块
由于我在做我自己的magento项目,我将使用我自己的项目名“app”。 然后,我们要创建以下目录结构
app/code/local/app/shopping/block
app/code/local/app/shopping/controller //controllers基类
app/code/local/app/shopping/controllers
app/code/local/app/shopping/etc
app/code/local/app/shopping/helper
app/code/local/app/shopping/model
app/code/local/app/shopping/sql
class app_shopping_controller_action extends mage_core_controller_front_action{
}
你的插件并不一定需要包含以上所有的目录,但是为了以后开发方便,我们还是在一开始就把目录创建好。接下来我们要创建两个文件,一个是config.xml,放在etc目录下面
app/code/local/app/shopping/etc/config.xml
文件内容如下
<config>
<modules>
<app_shopping>
<version>0.1.0</version>
</app_shopping>
</modules>
</config>
第二个文件需要在如下位置创建
app/etc/modules/app_shopping.xml
第二个文件应该遵循如下命名规则“packagename_modulename.xml”,文件内容如下
<modules>
<app_shopping>
<active>true</active>
<codepool>local</codepool>
</app_shopping>
</modules>
该文件的目的是让magento系统载入该模块。<active>标签为true表示使该模块生效。
也可以是packagename_all.xml,里面配置所有 module。
<?xml version="1.0"?>
<app_catalog>
<active>true</active>
<codepool>local</codepool>
</app_catalog>
</config>
我们先不管这些文件是干什么的,以后会解释。建立好这两个文件以后,你的模块的骨架就已经完成了。magento已经知道你的模块存在,但是现在你的模块不会做任何事情。我们来确认一下magento确实装载了你的模块
清空magento缓存
在后台管理界面,进入 system->configuration->advanced
展开“disable modules output”
确认“app_shopping ”显示出来了
如果你看到“app_ shopping ”,那么恭喜你,你已经成功创建了你第一个magento模块!
2创建的模块不会做任何事情,下面我们来为这个模块加入逻辑
首先在app下创建新的模块,依次创建如下文件:
/app/code/local/app/shopping/controllers/cartcontroller.php
<?php
class app_shopping_cartcontroller extends mage_core_controller_front_action {
public function indexaction() {
echo 'hello magento';
//显示layout中配置的block shopping_cart_index
$this->loadlayout();
$this->renderlayout();
}
编辑/app/code/local/app/shopping/etc/config.xml文件,加入如下代码:
<frontend>
<routers>
<app_shopping>
<use>standard</use>
<args>
<module>app_shopping</module>
<!-- this is used when "catching" the rewrite above -->
<frontname>shopping</frontname>
</args>
</app_shopping>
</routers>
<layout> <!-- 不配置layout标签默认读customer.xml-->
<updates>
<app_shopping>
<file>shopping.xml</file>
</app_shopping>
</updates>
</layout>
</frontend>
frontend/routers/用来设置使该模块从前端显示的入口。frontname稍后将出现在url中 /shopping/cart
修改视图文件app/design/frontend/[myinterface]/[mytheme]/layout/shopping.xml在layout标签中,添加下面内容:
<ticket_index_index><!-- frontname_controller_action -->
<update handle="customer_account"/>
<reference name="my.account.wrapper">
<block type="ticket/ticket" name="ticket" template="ticket/index.phtml"/><!-- 使用block文件 -->
</reference>
</ticket_index_index>
注意,xml的大小写敏感。 后台管理 system->configuration->设计->主题 缺省。 来生效设置
添加后台的layout xml需要在config.xml添加adminhtml节点
<adminhtml>
<layout>
<updates>
<sintax>
<file>sintax.xml</file>
</sintax>
</updates>
</layout>
</adminhtml>
文件: app/design/adminhtml/default/default/layout/sintax.xml
<sintax_adminhtml_myform_index>
<reference name="content">
<block type="adminhtml/template" name="myform" template="sintax/myform.phtml"/>
</reference>
</sintax_adminhtml_myform_index>
form 模板页
文件: app/design/adminhtml/default/default/template/sintax/myform.phtml
<div class="content-header">
<table cellspacing="0" class="grid-header">
<tr>
<td><h3><?php echo $this->__('my form title')?></h3></td>
<td class="a-right">
<button onclick="editform.submit()" class="scalable save" type="button"><span>submit my form</span></button>
</td>
</tr>
</table>
</div>
<div class="entry-edit">
<form id="edit_form" name="edit_form" method="post" action="<?php echo $this->geturl('*/*/post')?>">
<h4 class="icon-head head-edit-form fieldset-legend"><?php echo $this->__('this fieldset name')?></h4>
<fieldset id="my-fieldset">
<table cellspacing="0" class="form-list">
<tr>
<td class="label"><?php echo $this->__('field label')?> <span class="required">*</span></td>
<td class="input-ele"><input class="input-text required-entry" name="myform[myfield]" /></td>
</tr>
</table>
</fieldset>
</form>
<script type="text/javascript">
var editform = new varienform('edit_form');
</script>