Added new Logging System for Persons

Added a Wrapper to call CI functions from outside Codeigniter
This commit is contained in:
Andreas Österreicher
2017-11-24 18:45:51 +01:00
parent d3d4e01afc
commit 5b54217733
8 changed files with 213 additions and 36 deletions
+11
View File
@@ -0,0 +1,11 @@
<?php
/**
* This Script is for Loading the Codeigniter Context in Non-Codeigniter Scripts
* Usage:
* $ci = require_once(ci_loader.php');
* $ci->load->library('xxx');
*/
ob_start();
require_once('index.ci.php');
ob_get_clean();
return $CI;