From 8ede1a2ecbb62577afd32996956c5feaf7ddf9b6 Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Wed, 5 Oct 2011 13:34:52 -0500 Subject: replacing the old HTML user guide with a Sphinx-managed user guide --- user_guide/general/libraries.html | 98 --------------------------------------- 1 file changed, 98 deletions(-) delete mode 100644 user_guide/general/libraries.html (limited to 'user_guide/general/libraries.html') diff --git a/user_guide/general/libraries.html b/user_guide/general/libraries.html deleted file mode 100644 index 40533e124..000000000 --- a/user_guide/general/libraries.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Using CodeIgniter Libraries : CodeIgniter User Guide - - - - - - - - - - - - - - - - - - - - - -
- - - - - -

CodeIgniter User Guide Version 2.0.3

-
- - - - - - - - - -
- - -
- - - -
- -

Using CodeIgniter Libraries

- - -

All of the available libraries are located in your system/libraries folder. -In most cases, to use one of these classes involves initializing it within a controller using the following initialization function:

- -$this->load->library('class name'); - -

Where class name is the name of the class you want to invoke. For example, to load the form validation class you would do this:

- -$this->load->library('form_validation'); - -

Once initialized you can use it as indicated in the user guide page corresponding to that class.

- -

Additionally, multiple libraries can be loaded at the same time by passing an array of libraries to the load function.

- -$this->load->library(array('email', 'table')); - -

Creating Your Own Libraries

- -

Please read the section of the user guide that discusses how to create your own libraries

- - - -
- - - - - - - \ No newline at end of file -- cgit v1.2.3-24-g4f1b