1
我正在嘗試prestashop 1.7,並且創建自定義模塊時遇到問題。 我創建了一個文件夾「MyModule的」「模塊」文件夾內,並且,因爲它是在文檔中表示,我創建了一個簡單mymodule.php文件吧:Prestashop 1.7無法顯示自定義模塊
<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
if (!defined('_PS_VERSION_'))
exit;
class MyModule extends Module
{
public function __construct()
{
$this->name = 'mymodule';
$this->tab = 'front_office_features';
$this->version = '1.0.0';
$this->author = 'Firstname Lastname';
$this->need_instance = 0;
$this->ps_versions_compliancy = array('min' => '1.6', 'max' => _PS_VERSION_);
$this->bootstrap = true;
parent::__construct();
$this->displayName = $this->l('My module');
$this->description = $this->l('Description of my module.');
$this->confirmUninstall = $this->l('Are you sure you want to uninstall?');
if (!Configuration::get('MYMODULE_NAME'))
$this->warning = $this->l('No name provided');
}
}
?>
然後我去了管理頁面下的「模塊」 - >「模塊&服務」在「已安裝的模塊」選項卡上,但我找不到我的模塊...
我在做什麼錯誤?
感謝
澤維爾
如果您尚未安裝該模塊,它將不會顯示在已安裝的模塊選項卡中。你應該在第一個標籤中找到它。另外,不要忘記添加安裝和卸載功能。 – sadlyblue