Skip to content

Instantly share code, notes, and snippets.

@caironoleto
Created October 21, 2008 17:33
Show Gist options
  • Save caironoleto/18359 to your computer and use it in GitHub Desktop.
Save caironoleto/18359 to your computer and use it in GitHub Desktop.
<?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