Example #1
0
 public function __construct()
 {
     /***
      * ESTA LIBRERIA DEPENDE DE PHPEXCEL.PHP
      *  ESTA DENTRO DE COMPLEMENT/EXCEL/..
      * ***/
     parent::__construct();
 }
Example #2
0
 public function __construct($config = array())
 {
     PHPExcel_Cell::setValueBinder(new PHPExcel_Cell_AdvancedValueBinder());
     if (isset($config['cacheMethod'])) {
         $this->_cacheMethod = $config['cacheMethod'];
     }
     $this->_setCache();
     parent::__construct();
 }
Example #3
0
 public function __construct()
 {
     parent::__construct();
     $this->getProperties()->setCreator(sfConfig::get('ex_meta_creator'));
     $this->getProperties()->setTitle(sfConfig::get('ex_meta_title'));
     $this->getProperties()->setSubject(sfConfig::get('ex_meta_subject'));
     $this->getProperties()->setDescription(sfConfig::get('ex_meta_description'));
     $this->getProperties()->setKeywords(sfConfig::get('ex_meta_keyword'));
     $this->getProperties()->setCategory(sfConfig::get('ex_meta_category'));
     $this->setActiveSheetIndex(0);
 }
Example #4
0
 public function __construct()
 {
     parent::__construct();
 }
Example #5
0
 function CI_Phpexcel()
 {
     // tcpdf constructor
     parent::__construct();
 }
Example #6
0
 public function __construct()
 {
     parent::__construct();
     //Codeigniter : Write Less Do More
 }
Example #7
0
 public function __construct()
 {
     parent::__construct();
     $this->ci =& get_instance();
 }