我是prestashop模块开发的新手,我似乎无法使其发挥作用。我一步一步地按照教程进行操作,但是当我安装模块时,我总是得到这个" Mymodule(在/modules/Mymodule/test-module.php中缺少类)"。
我在网上查了一下,当php文件没有用UT编写的UTF-8时,似乎发生了这个错误,但即使这样做也不行。
这是我的代码,希望有人找到问题:
<?php
if (!defined('_PS_VERSION_'))
exit;
class CookiesPresta extends Module {
public function __construct() {
$this->name = 'CookiesPresta';
$this->tab = 'front_office_features';
$this->version = '1.0';
$this->author = 'me myself';
$this->need_instance = 0;
$this->ps_versions_compliancy = array('min' => '1.5');
$this->dependencies = array();
parent::__construct();
$this->displayName = $this->l('Bandeau Cookies');
$this->description = $this->l('Créez et personnalisez votre bandeau d\'information sur les cookies');
$this->confirmUninstall = $this->l('Voulez vous désinstaller le module Bandeau Cookies');
if (!Configuration::get('cookiespresta'))
$this->warning = $this->l('No name provided');
}
public function install() {
if (!parent::install()
|| !$this->registerHook('displayHeader')
|| !$this->registerHook('displayFooter')
)
return false;
return true;
}
public function uninstall() {
if(parent::uninstall())
return false;
return true;
}
}
?>
答案 0 :(得分:2)
我建议您使用Prestashop的generator来创建标准模块
答案 1 :(得分:2)
如果您的模块与类名CookiesPresta
类似,则应将目录命名为/cookiespresta
,并将类文件命名为/cookiespresta/cookiespresta.php