CTConfiguration::__construct PHP Method

__construct() public method

CTConfiguration constructor.
public __construct ( )
    public function __construct()
    {
        $this->name = 'ctconfiguration';
        $this->tab = 'front_office_features';
        $this->version = '1.0.0';
        $this->author = 'PrestaShop Community';
        parent::__construct();
        $this->displayName = $this->l('Community Theme Configuration');
        $this->description = $this->l('Configuration for community theme blocks and content.');
        $this->ps_versions_compliancy = array('min' => '1.6.0.3', 'max' => _PS_VERSION_);
        $this->bootstrap = true;
    }