Ejemplo n.º 1
0
 public function __construct()
 {
     $this->name = 'dashgoals';
     $this->displayName = 'Dashboard Goals';
     $this->tab = '';
     $this->version = '0.1';
     $this->author = 'PrestaShop';
     parent::__construct();
     Dashgoals::$month_labels = array('01' => $this->l('January'), '02' => $this->l('February'), '03' => $this->l('March'), '04' => $this->l('April'), '05' => $this->l('May'), '06' => $this->l('June'), '07' => $this->l('July'), '08' => $this->l('August'), '09' => $this->l('September'), '10' => $this->l('October'), '11' => $this->l('November'), '12' => $this->l('December'));
 }
Ejemplo n.º 2
0
 public function __construct()
 {
     $this->name = 'dashgoals';
     $this->tab = 'dashboard';
     $this->version = '0.7.0';
     $this->author = 'PrestaShop';
     parent::__construct();
     $this->displayName = $this->l('Dashboard Goals');
     $this->description = $this->l('Adds a block with your store\'s forecast.');
     $this->ps_versions_compliancy = array('min' => '1.6', 'max' => _PS_VERSION_);
     Dashgoals::$month_labels = array('01' => $this->l('January'), '02' => $this->l('February'), '03' => $this->l('March'), '04' => $this->l('April'), '05' => $this->l('May'), '06' => $this->l('June'), '07' => $this->l('July'), '08' => $this->l('August'), '09' => $this->l('September'), '10' => $this->l('October'), '11' => $this->l('November'), '12' => $this->l('December'));
 }