Prestashop 1.7.X не срабатывает, когда пользователь регистрируется - PullRequest
2 голосов
/ 16 апреля 2019

Я создаю пользовательский модуль в Prestashop 1.7.X, где я хочу получить все данные о пользователях, когда они регистрируются в магазине.Поэтому для этого я использую ловушку actionCustomerAccountAdd.Но этот крючок не стреляет в Prestashop 1.7.X.Когда я использую тот же хук в prestashop 1.6.X, он работает без проблем.

Вот мой пример кода

if (!defined('_PS_VERSION_')) {
    exit;
}

class Hellouser extends Module
{
    protected $config_form = false;

    public function __construct()
    {
        $this->name = 'hellouser';
        $this->tab = 'other';
        $this->version = '1.0.0';
        $this->author = 'test';
        $this->need_instance = 0;
        $this->module_key = '';

        parent::__construct();
        $this->bootstrap = 'true';
        $this->displayName = $this->l('Hello User');
        $this->description = $this->l('This is the demo module');
        $this->confirmUninstall = $this->l('Are you sure you want to uninstall module?');
        $this->ps_versions_compliancy = array('min' => '1.6', 'max' => _PS_VERSION_);

        $this->js_path = $this->_path.'views/js/';
        $this->css_path = $this->_path.'views/css/';
        $this->img_path = $this->_path.'views/img/';
        $this->logo_path = $this->_path.'logo.png';
        $this->module_path = $this->_path;
    }

    public function install()
    {
        if (!parent::install() || 
            !$this->registerHook(
                array('actionCustomerAccountAdd')))
            return false;
    }

    public function uninstall()
    {
        return parent::uninstall();
    }


    public function hookActionCustomerAccountAdd($params) {
        print_r($params);
        exit;
    }
}

1 Ответ

0 голосов
/ 16 апреля 2019

попробуйте с этим Отредактировано

public function install()
{
    if (!parent::install() || 
        !$this->registerHook('actionCustomerAccountAdd'))
        return false;
    return true;
}
...