Make view with response status and headers

Add functionality to make view with response status and headers
 - view_with_status
This commit is contained in:
dr.dimitru 2013-04-16 03:28:55 +04:00
parent 23464cac25
commit 036a0bab0b
1 changed files with 22 additions and 0 deletions

View File

@ -58,6 +58,28 @@ public static function make($content, $status = 200, $headers = array())
return new static($content, $status, $headers);
}
/**
* Create a new response instance with status code.
*
* <code>
* // Create a response instance with a view
* return Response::view('home.no_such_page', 404);
*
* // Create a response instance with a view and data
* return Response::view('item.no_such_page', 404, array('message' => 'Nothing found'), array('header' => 'value'));
* </code>
*
* @param string $view
* @param int $status
* @param array $data
* @param array $headers
* @return Response
*/
public static function view_with_status($view, $status, $data = array(), $headers = array())
{
return new static(View::make($view, $data), $status, $headers);
}
/**
* Create a new response instance containing a view.
*