2012-05-22 105 views

回答

62

Opencart的2.x的

名稱在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 1.x

  • 包含完整的MVC流程。

我發現如何做到這一點。 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

+2

好,repped - 大嘖嘖。我認爲這不是必須的,儘管'$ this-> load-> model('catalog/information');'可能會減慢代碼加載不需要的庫,特別是在擁有多個管理員用戶的繁忙網站上。 – AlphaApp

+1

@AlphaApp謝謝。對於評論和喜歡。 – TheBlackBenzKid

+1

admin/view/custom/hello.tpl應該由admin/view/template/custom/hello.tpl –

相關問題