Created
October 21, 2008 17:33
-
-
Save caironoleto/18359 to your computer and use it in GitHub Desktop.
This file contains hidden or 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("Lumine.php"); | |
/** | |
* Generates object of the configuration of lumine | |
* @author Cairo Noleto | |
* @link http://caironoleto.wordpress.com | |
* | |
*/ | |
class LumineClass { | |
function LumineClass() { | |
require_once(APPPATH .'config/database.php'); | |
$obj =& get_instance(); | |
$obj->lumine = new Lumine_Configuration( $lumineConfig ); | |
$obj->ci_is_loaded[] = 'lumine'; | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment