14 lines
		
	
	
		
			244 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			244 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
if (!defined('BASEPATH')) exit('No direct script access allowed');
 | 
						|
 | 
						|
require_once APPPATH.'libraries/PHPExcel/IOFactory.php';
 | 
						|
 | 
						|
class IOFactory extends PHPExcel_IOFactory
 | 
						|
{
 | 
						|
	public function __construct()
 | 
						|
	{
 | 
						|
		parent::__construct();
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
?>
 |