Jump to content

Edit History

prestashop_newuser

prestashop_newuser

Hello,

I am creating a custom module where I want the user details when they make register on the store. So to achieve that I am using actionCustomerAccountAdd hook. This hook is firing on Prestashop 1.6 but not firing in Prestashop 1.7

Here is my sample code for the custom plugin

<?php

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('Sample Plugin');
        $this->confirmUninstall = $this->l('Are you sure you want to uninstall this?');
        $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;
    }
}

So can someone please tell me whats the issue here?
 

prestashop_newuser

prestashop_newuser

Hello,

I am creating a custom module where I want the user details when they make register on the store. So to achieve that I am using actionCustomerAccountAdd hook. But this hook is firing on Prestashop 1.6 but not firing in Prestashop 1.7

Here is my sample code for the custom plugin

<?php

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('Sample Plugin');
        $this->confirmUninstall = $this->l('Are you sure you want to uninstall this?');
        $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;
    }
}

So can someone please tell me whats the issue here?
 

×
×
  • Create New...