mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
37 lines
1.2 KiB
PHP
37 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace SilverStripe\Control;
|
|
|
|
use SilverStripe\ORM\DataModel;
|
|
|
|
/**
|
|
* A request filter is an object that's executed before and after a
|
|
* request occurs. By returning 'false' from the preRequest method,
|
|
* request execution will be stopped from continuing
|
|
*
|
|
* @author marcus@silverstripe.com.au
|
|
* @license BSD License http://silverstripe.org/bsd-license/
|
|
*/
|
|
interface RequestFilter {
|
|
|
|
/**
|
|
* Filter executed before a request processes
|
|
*
|
|
* @param HTTPRequest $request Request container object
|
|
* @param Session $session Request session
|
|
* @param DataModel $model Current DataModel
|
|
* @return boolean Whether to continue processing other filters. Null or true will continue processing (optional)
|
|
*/
|
|
public function preRequest(HTTPRequest $request, Session $session, DataModel $model);
|
|
|
|
/**
|
|
* Filter executed AFTER a request
|
|
*
|
|
* @param HTTPRequest $request Request container object
|
|
* @param HTTPResponse $response Response output object
|
|
* @param DataModel $model Current DataModel
|
|
* @return boolean Whether to continue processing other filters. Null or true will continue processing (optional)
|
|
*/
|
|
public function postRequest(HTTPRequest $request, HTTPResponse $response, DataModel $model);
|
|
}
|