CTDev::__construct PHP Method

__construct() public method

CTDev constructor.
public __construct ( )
    public function __construct()
    {
        $this->name = 'ctdev';
        $this->tab = 'others';
        $this->version = '1.0.0';
        $this->author = 'PrestaShop Community';
        parent::__construct();
        $this->displayName = $this->l('Community Theme Development Package');
        $this->description = $this->l('Provides test pages where developers can view customized theme styles.');
        $this->ps_versions_compliancy = array('min' => '1.6.0.3', 'max' => _PS_VERSION_);
        $this->bootstrap = true;
    }