I've enable hooks in config.php
$config['enable_hooks'] = TRUE;
here is the hook.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------------
| Hooks
| -------------------------------------------------------------------------
| This file lets you define "hooks" to extend CI without hacking the core
| files. Please see the user guide for info:
|
| http://codeigniter.com/user_guide/general/hooks.html
|
*/
$hook['post_controller_constructor'] = array(
'class' => 'Authorization',
'function' => 'authorize',
'filename' => 'authorization.php',
'file_path' => 'hooks'
);
/* End of file hooks.php */
/* Location: ./application/config/hooks.php */
and here is the authorization.php file under application/hooks/
<?php
class Authorization {
private $ci;
function __construct()
{
parent::__construct();
$this->ci = get_instance();
}
function authorize()
{
echo 'This should be outputed';
}
}
?>
but it doesn't work. doesn't anybody know why?
post_systemit doesn't work for a POST form submission because I do a redirect within a controller and invoke another controller, so only for the last controller the hook was invoked. I solved the problem using the hook pointpost_controller_constructor, so when a request was handle by a controller and this redirect the request to another controller the hook was invoked in both controllers. – sanrodari Jun 21 '12 at 21:58