コード例 #1
0
ファイル: welcome.php プロジェクト: viva-yasu/fuelenv
 /**
  * The 404 action for the application.
  *
  * @access  public
  * @return  Response
  */
 public function action_404()
 {
     return Response::forge(Presenter::forge('welcome/404'), 404);
 }
コード例 #2
0
ファイル: welcome.php プロジェクト: skul169/personal_blog
 /**
  * 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'));
 }