diff options
author | Andrey Andreev <narf@devilix.net> | 2014-01-17 14:38:30 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-01-17 14:38:30 +0100 |
commit | 88cf55bd294e74c71e70406e3a48e722db224f7f (patch) | |
tree | a030733fc092d2cb45ebcf20d50c6830d28a8aae /application/config | |
parent | a9938a09e8214b778b8ab11f60501661bb2ac623 (diff) |
Add autoloading library aliasing support (supersedes PR #2824)
Diffstat (limited to 'application/config')
-rw-r--r-- | application/config/autoload.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/application/config/autoload.php b/application/config/autoload.php index 5a20c943a..43d53155b 100644 --- a/application/config/autoload.php +++ b/application/config/autoload.php @@ -77,6 +77,11 @@ $autoload['packages'] = array(); | Prototype: | | $autoload['libraries'] = array('database', 'email', 'xmlrpc'); +| +| You can also supply an alternative library name to be assigned +| in the controller: +| +| $autoload['libraries'] = array('user_agent' => 'ua'); */ $autoload['libraries'] = array(); |