CodeIgniter LibraryWhat is a LibraryCodeIgniter provide a rich set of libraries. It is an essential part of CodeIgniter as it increases the developing speed of an application. It is located in the system/library. Loading LibraryCodeIgniter library can be loaded as following, Here, class name should be replaced by the name of the library. To load multiple libraries, use following code, Creating LibrariesAll the CodeIgniter libraries are placed in system folder. But in case if you want to use any other library in your application you can create it. There is no limitation for libraries. But your created libraries will be stored in the application/libraries folder. This is done to separate your local and global framework resources. There are three methods to create a library,
Creating an entire new libraryIt should be placed in application/libraries folder. Naming Conventions
Basic syntax: Suppose your file name is Mylib.php, then syntax will be as follows, Loading Mylib.php It can be loaded with the following line, Note: You can write library name in any one of the upper or lower case letter. Accessing mylib.php Once it is loaded, you can access your class using the lower case letter because object instances are always in lower case. Extending Native LibrariesYou can also add some extended functionality to a native library by adding one or two methods. It will replace the entire library with your version. So it is better to extend the class. Extending and replacing is almost identical with only following exceptions.
For example, to extend it to native Calendar, create a file MY_Calendar.php in application/libraries folder. Your class will be declared as,class MY_Calendar extends CI_Calendar} Replacing Native LibrariesNaming the new file and class name same as the native one will cause the CodeIgniter new one instead of native one. File and class declaration should be exactly same as the native library. For example, to replace native Calendar library, you'll create a file Calendar.php in application/libraries. And your class will be,
Next TopicCodeIgniter URL Routing
|