Skip to content

Commit 8080973

Browse files
committed
Added spark
0 parents  commit 8080973

File tree

233 files changed

+107015
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

233 files changed

+107015
-0
lines changed

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
==============================
2+
PHPExcel Spark for CodeIgniter
3+
==============================
4+
This spark is just a package for [**PHPExcel**](https://github.com/PHPOffice/PHPExcel), a library for reading and writing spreadsheet files.
5+
6+
Installation
7+
============
8+
Once loaded, just use $this->excel
9+
10+
Like it?
11+
========
12+
[![Endorse on Coderwall](http://api.coderwall.com/lima/endorsecount.png)](http://coderwall.com/lima)
13+
14+
Problems? Comments?
15+
===================
16+
Feel free to tweet me at [@lima](http://twitter.com/lima)

config/.DS_Store

6 KB
Binary file not shown.

config/autoload.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?php
2+
3+
$autoload['libraries'] = array('excel');

libraries/Excel.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
2+
3+
require_once SPARKPATH . 'phpexcel/1.8.0/vendor/PHPExcel.php';
4+
5+
class Excel extends PHPExcel {
6+
public function __construct() {
7+
parent::__construct();
8+
}
9+
}

spark.info

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
name: phpexcel
2+
version: 1.8.0
3+
compatibility: 2.1.4
4+
tags: ["excel", "phpexcel", "xls", "csv"]

0 commit comments

Comments
 (0)