Welcome Guest, Not a member yet? Register   Sign In
Loading controllers from within controller
#7

[eluser]NeoArc[/eluser]
Create a base controller in the application/core/ directory:

Code:
<?php
class MY_Controller extends CI_Controller{

    function _head(){
        //...
    }
}


_head() will be available in all descendants of MY_Controller

Code:
class Blog extends MY_Controller{

    function hello(){
        $this->_head();
    }
}


Messages In This Thread
Loading controllers from within controller - by El Forum - 08-04-2012, 09:37 AM
Loading controllers from within controller - by El Forum - 08-04-2012, 09:50 AM
Loading controllers from within controller - by El Forum - 08-04-2012, 10:05 AM
Loading controllers from within controller - by El Forum - 08-04-2012, 10:30 AM
Loading controllers from within controller - by El Forum - 08-04-2012, 11:02 AM
Loading controllers from within controller - by El Forum - 08-05-2012, 10:49 AM
Loading controllers from within controller - by El Forum - 08-05-2012, 11:00 AM



Theme © iAndrew 2016 - Forum software by © MyBB