Magento使用网格创建管理(后端)模块

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Magento使用网格创建管理(后端)模块相关的知识,希望对你有一定的参考价值。

If you are creating an admin module for Magento (learn creating admin module in Magento) then you would surely be asked to create grids (eg. for order listing). Creating grids can be somewhat difficult for the novice Magento programmers, but in this tutorial we will create a grid in the admin module in the simplest possible way. It is assumed that you are familiar with creating admin module in Magento.
  1. <?php
  2. class Company_Web_Block_Adminhtml_Web extends Mage_Adminhtml_Block_Widget_Grid_Container
  3. {
  4. public function __construct()
  5. {
  6. $this->_controller = 'adminhtml_web';
  7. $this->_blockGroup = 'web';
  8. $this->_headerText = Mage::helper('web')->__('Item Manager');
  9. $this->_addButtonLabel = Mage::helper('web')->__('Add Item');
  10. parent::__construct();
  11. }
  12. }
  13.  
  14. ...
  15. etc

以上是关于Magento使用网格创建管理(后端)模块的主要内容,如果未能解决你的问题,请参考以下文章

Magento:如何检查管理员是不是在模块控制器中登录?

Magento 自定义支付网关

Magento 1.9启用从管理面板禁用模块

从贝宝重定向到 magento 管理模块

自定义 Magento 模块

在 Magento 中为模块创建数据库函数