Welcome Guest, Not a member yet? Register   Sign In
Help in include files
#17

[eluser]Colin Williams[/eluser]
The best way to do this and stick to the MVC principle is to use a base controller. Most of the time in application development, you don't need more than one controller. What you are typically doing is loading and nesting views into one main view. The Controller (singular) contains all the functions required by the app.

This breaks down a bit when you start organizing your app into multiple controllers, because you then must concoct a way to continue nesting these globally-important views without repeating code for every controller. Or, of course, you could have a single controller and just use routes to make your URIs appear to map to different controllers.

In CI, Controllers are sub-classes of a Controller class, which is just a CI library. This means you can extend it with your own classes. Typically it's best to put the extra classes in a MY_Controller.php library file, then have your controllers extend MY_Controller (or other classes that extend Controller). This location isn't necessary because CI instantiates YOUR controller class (as determined by the Router class), so the additional controller class or classes just need to be included somehow. Going with the previously explained way is favored just because it follows CI conventions already. If CI sees that there is a MY_Controller.php library, it's going to automatically load it. Might as well piggy-back that process.


Messages In This Thread
Help in include files - by El Forum - 11-14-2008, 10:22 AM
Help in include files - by El Forum - 11-14-2008, 01:10 PM
Help in include files - by El Forum - 11-14-2008, 01:18 PM
Help in include files - by El Forum - 11-14-2008, 01:25 PM
Help in include files - by El Forum - 11-14-2008, 01:26 PM
Help in include files - by El Forum - 11-14-2008, 01:29 PM
Help in include files - by El Forum - 11-14-2008, 01:33 PM
Help in include files - by El Forum - 11-14-2008, 01:36 PM
Help in include files - by El Forum - 11-14-2008, 01:37 PM
Help in include files - by El Forum - 11-14-2008, 02:07 PM
Help in include files - by El Forum - 11-14-2008, 02:10 PM
Help in include files - by El Forum - 11-17-2008, 04:52 AM
Help in include files - by El Forum - 11-17-2008, 10:00 AM
Help in include files - by El Forum - 11-17-2008, 11:22 AM
Help in include files - by El Forum - 11-17-2008, 11:26 AM
Help in include files - by El Forum - 11-17-2008, 04:16 PM
Help in include files - by El Forum - 11-17-2008, 05:44 PM



Theme © iAndrew 2016 - Forum software by © MyBB