'ua'); */ /** * 기본적으로 autoload 되고 있는 라이브러리는 지우시면 안됩니다 * 그러나 필요한 경우 새로운 라이브러리를 추가히시는 건 괜찮습니다 */ $autoload['libraries'] = array('session', 'layoutlib', 'userlib', 'configlib', 'user_agent', 'accesslevel'); /* | ------------------------------------------------------------------- | Auto-load Drivers | ------------------------------------------------------------------- | These classes are located in system/libraries/ or in your | application/libraries/ directory, but are also placed inside their | own subdirectory and they extend the CI_Driver_Library class. They | offer multiple interchangeable driver options. | | Prototype: | | $autoload['drivers'] = array('cache'); | | You can also supply an alternative property name to be assigned in | the controller: | | $autoload['drivers'] = array('cache' => 'cch'); | */ $autoload['drivers'] = array(); /* | ------------------------------------------------------------------- | Auto-load Helper Files | ------------------------------------------------------------------- | Prototype: | | $autoload['helper'] = array('url', 'file'); */ /** * 기본적으로 autoload 되고 있는 헬퍼는 지우시면 안됩니다 * 그러나 필요한 경우 새로운 헬퍼를 추가히시는 건 괜찮습니다 */ $autoload['helper'] = array('url', 'basic', 'thumbnail', 'cookie', 'comm'); /* | ------------------------------------------------------------------- | Auto-load Config files | ------------------------------------------------------------------- | Prototype: | | $autoload['config'] = array('config1', 'config2'); | | NOTE: This item is intended for use ONLY if you have created custom | config files. Otherwise, leave it blank. | */ /** * 기본적으로 autoload 되고 있는 config 파일은 지우시면 안됩니다 * 그러나 필요한 경우 새로운 config 파일을 추가히시는 건 괜찮습니다 */ $autoload['config'] = array('ci_config'); /* | ------------------------------------------------------------------- | Auto-load Language files | ------------------------------------------------------------------- | Prototype: | | $autoload['language'] = array('lang1', 'lang2'); | | NOTE: Do not include the "_lang" part of your file. For example | "codeigniter_lang.php" would be referenced as array('codeigniter'); | */ $autoload['language'] = array(); /* | ------------------------------------------------------------------- | Auto-load Models | ------------------------------------------------------------------- | Prototype: | | $autoload['model'] = array('first_model', 'second_model'); | | You can also supply an alternative model name to be assigned | in the controller: | | $autoload['model'] = array('first_model' => 'first'); */ $autoload['model'] = array();