Ejemplo n.º 1
0
 /**
  * The 404 action for the application.
  *
  * @access  public
  * @return  Response
  */
 public function action_404()
 {
     return Response::forge(Presenter::forge('welcome/404'), 404);
 }
Ejemplo n.º 2
0
 /**
  * A typical "Hello, Bob!" type example.  This uses a Presenter to
  * show how to use them.
  *
  * @access  public
  * @return  Response
  */
 public function action_hello()
 {
     return Response::forge(Presenter::forge('welcome/hello'));
 }