Welcome Guest, Not a member yet? Register   Sign In
A little help understanding the controller
#11

[eluser]wiredesignz[/eluser]
I use _remap() extensively with a base controller, _remap() is there for good reason and it is a very flexible feature of CI.

Routes and (xwero's favourite) Hooks are ok, but _remap() in a base controller can give you much finer control over your application.

EDIT: Try this base controller template to begin with, set up for a Blog application, but can be modified easily.
Code:
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
/**
* Blog Controller
*/
class Blog_Controller extends Controller
{
    function Blog_Controller() {
        parent::Controller();
    }
    
    function _remap($action) {

    }
}
/* End of file MY_Controller.php */
/* Location: ./application/libraries/MY_Controller.php */


Messages In This Thread
A little help understanding the controller - by El Forum - 04-27-2009, 11:32 PM
A little help understanding the controller - by El Forum - 04-28-2009, 03:33 AM
A little help understanding the controller - by El Forum - 04-28-2009, 06:31 AM
A little help understanding the controller - by El Forum - 04-28-2009, 06:53 AM
A little help understanding the controller - by El Forum - 04-28-2009, 07:05 AM
A little help understanding the controller - by El Forum - 04-28-2009, 07:21 AM
A little help understanding the controller - by El Forum - 04-28-2009, 07:25 AM
A little help understanding the controller - by El Forum - 04-28-2009, 07:43 AM
A little help understanding the controller - by El Forum - 04-28-2009, 07:46 AM
A little help understanding the controller - by El Forum - 04-28-2009, 07:49 AM
A little help understanding the controller - by El Forum - 04-28-2009, 07:56 AM
A little help understanding the controller - by El Forum - 04-28-2009, 07:59 AM
A little help understanding the controller - by El Forum - 04-28-2009, 08:14 AM
A little help understanding the controller - by El Forum - 04-28-2009, 08:57 AM
A little help understanding the controller - by El Forum - 04-28-2009, 09:07 AM
A little help understanding the controller - by El Forum - 04-28-2009, 09:35 AM
A little help understanding the controller - by El Forum - 04-28-2009, 09:50 AM
A little help understanding the controller - by El Forum - 04-28-2009, 09:56 AM



Theme © iAndrew 2016 - Forum software by © MyBB