使用模块创建管理页面

时间:2015-03-09 17:28:08

标签: php module prestashop-1.6

我正在创建模块以在管理级别创建页面。

使用的控制器如下所示 /mymodule/controllers/admin/AdminPendingorderController.php

class AdminPendingorderController extends ModuleAdminController {

public $asso_type = 'shop';
public function __construct() {
    $this->module = 'pendingorder';
    $this->lang = true;
    $this->context = Context::getContext();
    $this->bootstrap = true;

    parent::__construct();
}

public function initContent()
{
    $this->renderView();
}


public function renderView()
{
     ppp($this->getTemplatePath());     

     $this->base_tpl_view = 'content.tpl';      

    return parent::renderView();
}

content.tpl文件也正确定位(\prestashop\modules\pendingorder\views\templates\admin\pendingorder\helpers\view)。

创建菜单'测试'来自管理 - > menues

但是当我选择'测试'空白页面显示没有错误,如下所示enter image description here

请更正步骤和代码。

这是以管理员标签或其他方式创建内容页面的正确方法吗?

0 个答案:

没有答案