[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
tracer
/
application
/
libraries
/
[
Home
]
File: Zend.php
<?php if( ! defined('BASEPATH')) exit('No direct script access allowed'); class Zend { public function __construct($class = NULL) { ini_set('include_path', ini_get('include_path'). PATH_SEPARATOR. APPPATH. 'libraries'); if($class) { require_once(string) $class.'.php'; //fixed CI 3 issue by lilsammy log_message('debug', "Zend Class $class Loaded"); }else { log_message('debug', "Zend Class Initialized"); } } public function load($class) { require_once(string) $class.'.php'; //fixed CI 3 issue by lilsammy log_message('debug', "Zend Class $class Loaded"); } }