diff options
author | Greg Aker <greg.aker@ellislab.com> | 2010-10-12 16:29:35 +0200 |
---|---|---|
committer | Greg Aker <greg.aker@ellislab.com> | 2010-10-12 16:29:35 +0200 |
commit | ce43396cb7beb49558cd78cf7ef51956a74b8185 (patch) | |
tree | e93e0e7d0f5814b086acd34fef88cfe5d2c75755 /user_guide/general/libraries.html | |
parent | c288ea957dd5b01abba96c9644f309a2714482e7 (diff) |
Fix #83 where multiple libraries could not be loaded at once by passing an array to the load->library() function.
Diffstat (limited to 'user_guide/general/libraries.html')
-rw-r--r-- | user_guide/general/libraries.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/user_guide/general/libraries.html b/user_guide/general/libraries.html index cd83da741..4d6064fa9 100644 --- a/user_guide/general/libraries.html +++ b/user_guide/general/libraries.html @@ -69,6 +69,10 @@ In most cases, to use one of these classes involves initializing it within a <a <p>Once initialized you can use it as indicated in the user guide page corresponding to that class.</p> +<p>Additionally, multiple libraries can be loaded at the same time by passing an array of libraries to the load function.</p> + +<code>$this->load->library(array('<var>email</var>', '<var>table</var>'));</code> + <h2>Creating Your Own Libraries</h2> <p>Please read the section of the user guide that discusses how to <a href="creating_libraries.html">create your own libraries</a></p> |