如何使用客户网格

时间:2017-05-20 10:00:23

标签: php magento

我想创建一个包含多个标签的管理模块,其中一个标签应该有客户网格。

通过使用以下文章,我可以使用多个标签创建管理模块。

https://www.pierrefay.com/magento-training/admin-grid-magento-tutorial.html

在Tabs.php中添加了以下代码,它开始在我的模块中提供多个选项卡

class Pfay_Films_Block_Adminhtml_Films_Edit_Tabs extends Mage_Adminhtml_Block_Widget_Tabs
  {
     public function __construct()
     {
          parent::__construct();
          $this->setId('films_tabs');
          $this->setDestElementId('edit_form');
          $this->setTitle('Information sur le film');
      }

      protected function _beforeToHtml()
      {
          $this->addTab('form_section', array(
                   'label' => 'About the movie',
                   'title' => 'About the movie',
                   'content' => $this->getLayout()
                                     ->createBlock('pfay_films/adminhtml_films_edit_tab_form')
                                     ->toHtml()
        ));

        $this->addTab('customer_section', array(
                   'label' => 'Customer Information',
                   'title' => 'Customer Information',
                   'content' => $this->getLayout()
                                     ->createBlock('pfay_films/adminhtml_films_edit_tab_customer')
                                     ->toHtml()
        ));

        return parent::_beforeToHtml();
    }
}

我希望我的页面有这样的东西 enter image description here

我如何实现这一点,任何建议?

2 个答案:

答案 0 :(得分:0)

在该标签中,您可以呈现客户的phtml 遵循以下路径

app\design\adminhtml\default\default\template\widget\grid.phtml

你会明白这个想法

答案 1 :(得分:0)