Skip to content

Commit

Permalink
Adding ForwardingForbiddenResponse
Browse files Browse the repository at this point in the history
Signed-off-by: Recess PHP Framework <kris@recessframework.org>
  • Loading branch information
kevburnsjr authored and KrisJordan committed Apr 1, 2009
1 parent fcd8be0 commit 1477210
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php
Library::import('recess.http.ForwardingResponse');
Library::import('recess.http.ResponseCodes');

class ForwardingForbiddenResponse extends ForwardingResponse {
public $context;

public function __construct(Request $request, $contentUri, $context = '') {
parent::__construct($request, ResponseCodes::HTTP_FORBIDDEN, $contentUri);
$this->context = $context;
}
}
?>

0 comments on commit 1477210

Please sign in to comment.