Welcome Guest, Not a member yet? Register   Sign In
Call get_instance() in Hook Class
#3

To see what's available at what hook points, just open /system/CodeIgniter.php and look for the name of your hook. It will be using _call_hook(name-of-hook);
Like:
$EXT->_call_hook('pre_system');

To know what's available, it would be anything loaded BEFORE that hook is called. You can see that the controller is loaded way after that hook, so it's not available at that point.

The first available hook after a controller is instantiated is "post_controller_constructor"
Reply


Messages In This Thread
Call get_instance() in Hook Class - by yllumi - 03-12-2015, 02:38 AM
RE: Call get_instance() in Hook Class - by Narf - 03-12-2015, 03:55 AM
RE: Call get_instance() in Hook Class - by CroNiX - 03-12-2015, 03:03 PM



Theme © iAndrew 2016 - Forum software by © MyBB