Created
September 19, 2013 14:19
-
-
Save marcogrueter/6624199 to your computer and use it in GitHub Desktop.
php excel library
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
require_once SHARED_ADDONPATH."modules/[DEIN MODUL]/libraries/[PFAD UND SO HALT]/PHPExcel.php"; | |
class Excel extends PHPExcel { | |
// $this->load->library('Excel'); | |
// dann: | |
// benutzern mit $this->excel->[PHPExcel Funktionen und so] | |
public function __construct() { | |
parent::__construct(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment