Engine hooks
// description of your code here
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); $hook['post_controller_constructor'][] = array('class' => 'ACL', 'function' => 'run', 'filename' => 'ACL.php', 'filepath' => 'hooks' ); $hook['post_controller_constructor'][] = array('class' => 'Init', 'function' => 'post_controller_constructor', 'filename' => 'Init.php', 'filepath' => 'hooks' ); $hook['post_controller'][] = array('class' => 'Misc', 'function' => 'track_visit', 'filename' => 'Misc.php', 'filepath' => 'libraries' ); $hook['post_controller'][] = array('class' => 'halt', 'function' => 'halt_myself', 'filename' => 'Halt.php', 'filepath' => 'hooks' ); ?>