diff options
author | Greg Aker <greg@gregaker.net> | 2011-08-20 18:58:58 +0200 |
---|---|---|
committer | Greg Aker <greg@gregaker.net> | 2011-08-20 18:58:58 +0200 |
commit | abbad9ea53e81c6e3211029711ac5b2ab4f1978d (patch) | |
tree | 9a4d5a8587da1dd3a365251afa37be2f835a53c2 /application/config/autoload.php | |
parent | 71644d683d0a15a6f7e04fabd0f51a4200d620b4 (diff) | |
parent | d56be70257696d0bbf2dcc880888d8dc17cba21c (diff) |
Merge branch 'develop' into feature/unit-tests
Conflicts:
.hgignore
Diffstat (limited to 'application/config/autoload.php')
-rw-r--r-- | application/config/autoload.php | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/application/config/autoload.php b/application/config/autoload.php index 1c492a20d..53129c9c6 100644 --- a/application/config/autoload.php +++ b/application/config/autoload.php @@ -1,4 +1,4 @@ -<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); +<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); /* | ------------------------------------------------------------------- | AUTO-LOADER @@ -8,7 +8,7 @@ | In order to keep the framework as light-weight as possible only the | absolute minimal resources are loaded by default. For example, | the database is not connected to automatically since no assumption -| is made regarding whether you intend to use it. This file lets +| is made regarding whether you intend to use it. This file lets | you globally define which systems you would like loaded with every | request. | @@ -29,11 +29,11 @@ /* | ------------------------------------------------------------------- -| Auto-load Packges +| Auto-load Packges | ------------------------------------------------------------------- | Prototype: | -| $autoload['packages'] = array(APPPATH.'third_party', '/usr/local/shared'); +| $autoload['packages'] = array(APPPATH.'third_party', '/usr/local/shared'); | */ @@ -42,7 +42,7 @@ $autoload['packages'] = array(); /* | ------------------------------------------------------------------- -| Auto-load Libraries +| Auto-load Libraries | ------------------------------------------------------------------- | These are the classes located in the system/libraries folder | or in your application/libraries folder. @@ -57,7 +57,7 @@ $autoload['libraries'] = array(); /* | ------------------------------------------------------------------- -| Auto-load Helper Files +| Auto-load Helper Files | ------------------------------------------------------------------- | Prototype: | @@ -69,14 +69,14 @@ $autoload['helper'] = array(); /* | ------------------------------------------------------------------- -| Auto-load Config files +| 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. +| config files. Otherwise, leave it blank. | */ @@ -85,13 +85,13 @@ $autoload['config'] = array(); /* | ------------------------------------------------------------------- -| Auto-load Language files +| Auto-load Language files | ------------------------------------------------------------------- | Prototype: | | $autoload['language'] = array('lang1', 'lang2'); | -| NOTE: Do not include the "_lang" part of your file. For example +| NOTE: Do not include the "_lang" part of your file. For example | "codeigniter_lang.php" would be referenced as array('codeigniter'); | */ @@ -101,7 +101,7 @@ $autoload['language'] = array(); /* | ------------------------------------------------------------------- -| Auto-load Models +| Auto-load Models | ------------------------------------------------------------------- | Prototype: | |