1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<?php class CI_TestConfig { public $config = array(); public $_config_paths = array(APPPATH); public function item($key) { return isset($this->config[$key]) ? $this->config[$key] : FALSE; } public function load($arg1, $arg2, $arg3) { return TRUE; } }