如何在opencart中创build自定义pipe理页面?

我想知道如何在opencart中创build自定义pipe理面板页面。

需要使用控制器login – pipe理面板似乎没有使用与正常站点相同的控制器。 我知道如何使用opencart自定义页面 (但这不是pipe理员)

一个简单的Hello World例子会很棒

OpenCart 2.x

OpenCart 2中的path名已经更改 – 您将需要创build

admin/controller/extension/module/hello.php admin/language/en-gb/extension/module/hello.php admin/view/template/extension/module/hello.tpl然后路由变成

admin/index.php?route=extension/module/hello

OpenCart 1.x

  • 包含完整的MVCstream程。

我发现如何做到这一点。 OpenCart使用MVC模式。 我推荐阅读关于如何成为OpenCart Guru? 发布关于学习系统如何工作的信息 – 此pipe理工作stream程也应该足以满足客户的需求。

1)在admin/controller/custom/helloworld.php创build一个新文件

您的文件名和控制器名称应该按照desc顺序相同:

helloworld.php

 <? class ControllerCustomHelloWorld extends Controller{ public function index(){ // VARS $template="custom/hello.tpl"; // .tpl location and file $this->load->model('custom/hello'); $this->template = ''.$template.''; $this->children = array( 'common/header', 'common/footer' ); $this->response->setOutput($this->render()); } } ?> 

2)在admin/view/template/custom/hello.tpl创build一个新文件

Hello.tpl

 <?php echo $header; ?> <div id="content"> <h1>HelloWorld</h1> <?php echo 'I can also run PHP too!'; ?> </div> <?php echo $footer; ?> 

3)在admin/model/custom/hello.php创build一个新文件

 <?php class ModelCustomHello extends Model { public function HellWorld() { $sql = "SELECT x FROM `" . DB_PREFIX . "y`)"; $implode = array(); $query = $this->db->query($sql); return $query->row['total']; } } ?> 

4)然后你需要启用插件来避免权限被拒绝的错误:

 Opencart > Admin > Users > User Groups > Admin > Edit 

select并启用访问权限。

访问你的网页去

http://www.yoursite.com/opencart/admin/index.php?route=custom/helloworld