У меня проблема с Prestashop 1.7.x.
Я создаю базовый модуль и впервые зарегистрировался в DisplayLeftColumn, затем в displayHome, а затем вернулся в DisplayLeftColumn.
Я могу установить модуль без ошибок, и позиция в бэк-офисе установлена нормально, но ничего не отображается.
Заранее спасибо!
if(!defined('_PS_VERSION_'))
exit;
class homephoto extends Module{
public function __construct()
{
$this->name = 'homephoto';
$this->tab = 'front_office_features';
$this->version = '1.0';
$this->author = 'PlusPlusDesign';
$this->ps_version_compilancy = array('min'=>'1.5', 'max' => _PS_VERSION_);
$this->need_instance = 0;
$this->bootstrap = true;
$this->displayName = $this->l('home photo');
$this->description = $this->l('This is for the mainpage');
parent::__construct();
}
public function install(){
if(!parent::install() or !$this->registerHook('displayLeftColumn'))
return false;
return true;
}
public function displayLeftColumn($params){
return 'Hello World';
}
}