我想知道如何在opencart中創建自定義管理面板頁面。如何在opencart中創建自定義管理頁面?
需要使用控制器登錄 - 管理面板似乎沒有使用與正常站點相同的控制器。我知道how to make custom pages with opencart(但這不是爲admin)
一個簡單的Hello World例子將是巨大的
我想知道如何在opencart中創建自定義管理面板頁面。如何在opencart中創建自定義管理頁面?
需要使用控制器登錄 - 管理面板似乎沒有使用與正常站點相同的控制器。我知道how to make custom pages with opencart(但這不是爲admin)
一個簡單的Hello World例子將是巨大的
名稱在Opencart的2改變路徑 - 你會想創建
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使用MVC模式。我建議您閱讀關於How to be an OpenCart Guru?的文章,瞭解系統的工作原理 - 此管理工作流程也應該足以滿足客戶的需求。
1)創建admin/controller/custom/helloworld.php
一個新的文件名你和控制器的名稱應該是倒序相同:
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
Hello.tpl
<?php echo $header; ?>
<div id="content">
<h1>HelloWorld</h1>
<?php
echo 'I can also run PHP too!';
?>
</div>
<?php echo $footer; ?>
3)創建
<?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
選擇並啓用訪問允許。
要訪問你的頁面去
www.yoursite.com/opencart/admin/index.php?route=custom/helloworld
好,repped - 大嘖嘖。我認爲這不是必須的,儘管'$ this-> load-> model('catalog/information');'可能會減慢代碼加載不需要的庫,特別是在擁有多個管理員用戶的繁忙網站上。 – AlphaApp
@AlphaApp謝謝。對於評論和喜歡。 – TheBlackBenzKid
admin/view/custom/hello.tpl應該由admin/view/template/custom/hello.tpl –