コード例 #1
0
ファイル: Excel.php プロジェクト: prosenjit-itobuz/Unitee
 public function __construct()
 {
     /***
      * ESTA LIBRERIA DEPENDE DE PHPEXCEL.PHP
      *  ESTA DENTRO DE COMPLEMENT/EXCEL/..
      * ***/
     parent::__construct();
 }
コード例 #2
0
ファイル: PHPExcel.php プロジェクト: nhochong/qlkh-sgu
 public function __construct($config = array())
 {
     PHPExcel_Cell::setValueBinder(new PHPExcel_Cell_AdvancedValueBinder());
     if (isset($config['cacheMethod'])) {
         $this->_cacheMethod = $config['cacheMethod'];
     }
     $this->_setCache();
     parent::__construct();
 }
コード例 #3
0
ファイル: sfPhpExcel.class.php プロジェクト: sensorsix/app
 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);
 }
コード例 #4
0
ファイル: excel.php プロジェクト: kritawit/smm-system
 public function __construct()
 {
     parent::__construct();
 }
コード例 #5
0
ファイル: Phpexcel.php プロジェクト: bimbingan/SkripsiSPK
 function CI_Phpexcel()
 {
     // tcpdf constructor
     parent::__construct();
 }
コード例 #6
0
 public function __construct()
 {
     parent::__construct();
     //Codeigniter : Write Less Do More
 }
コード例 #7
0
ファイル: Excel.php プロジェクト: quochoangvp/quanlythuctap
 public function __construct()
 {
     parent::__construct();
     $this->ci =& get_instance();
 }