/**
  * Automatically executed after the controller action. 
  *
  * @return  void
  */
 public function after()
 {
     Hook::do_action($this->hook . '_after', $this->request->param());
 }
Example #2
0
function do_action($hook)
{
    return Hook::do_action($hook);
}