我按照手冊瞭解誰可以爲Prestashop創建模塊(這是鏈接prestashop developer)。 所有作品(我可以配置我的模塊,並移動到左列),但我有一個問題,當我點擊我的href總是看到「錯誤404:頁面不存在」。我在Prestashop中看不到我測試模塊的頁面
我閱讀了文檔,在代碼中沒有發現一些錯誤:我將文件display.php和display.tpl放在模塊根文件夾中。
我對代碼Display.php的是:
class mymoduledisplayModuleFrontController extends ModuleFrontController{
public function initContent(){
parent::initContent();
$this->setTemplate('display.tpl');
}
}
而對於display.tpl代碼:
<h4>Hi!!!!!</h4>
什麼可以做我的錯誤呢?我沒有找到!
感謝這麼多的幫助