Skip to content

Commit

Permalink
Added spark
Browse files Browse the repository at this point in the history
  • Loading branch information
limacohen committed Dec 13, 2013
0 parents commit 8080973
Show file tree
Hide file tree
Showing 233 changed files with 107,015 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
==============================
PHPExcel Spark for CodeIgniter
==============================
This spark is just a package for [**PHPExcel**](https://github.com/PHPOffice/PHPExcel), a library for reading and writing spreadsheet files.

Installation
============
Once loaded, just use $this->excel

Like it?
========
[![Endorse on Coderwall](http://api.coderwall.com/lima/endorsecount.png)](http://coderwall.com/lima)

Problems? Comments?
===================
Feel free to tweet me at [@lima](http://twitter.com/lima)
Binary file added config/.DS_Store
Binary file not shown.
3 changes: 3 additions & 0 deletions config/autoload.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<?php

$autoload['libraries'] = array('excel');
9 changes: 9 additions & 0 deletions libraries/Excel.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

require_once SPARKPATH . 'phpexcel/1.8.0/vendor/PHPExcel.php';

class Excel extends PHPExcel {
public function __construct() {
parent::__construct();
}
}
4 changes: 4 additions & 0 deletions spark.info
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
name: phpexcel
version: 1.8.0
compatibility: 2.1.4
tags: ["excel", "phpexcel", "xls", "csv"]

0 comments on commit 8080973

Please sign in to comment.