How can I call a hook for only a few controllers instead of all controllers in CodeIgniter?
E.g.: I want to run the hook for only the admin section. How can I achiev
You can simply do it by checking url of your application in your hook:
$hook = false; if(strpos($_SERVER['REQUEST_URI'],"admin/")) $hook = true; if($hook) { // do some hook stuff }