24 lines
509 B
PHP
24 lines
509 B
PHP
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
/**
|
|
* Smartie Class
|
|
*
|
|
* @package CodeIgniter
|
|
* @subpackage Libraries
|
|
* @category Smarty
|
|
* @author Kepler Gelotte
|
|
* @link http://www.coolphptools.com/codeigniter-smarty
|
|
*/
|
|
require_once( APPPATH.'/third_party/PHPExcel/Classes/PHPExcel.php');
|
|
|
|
class excel extends PHPExcel {
|
|
|
|
var $debug = false;
|
|
|
|
function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
}
|
|
// END Smartie Class
|