mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
26 lines
760 B
PHP
26 lines
760 B
PHP
<?php
|
|
|
|
/**
|
|
* 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/
|
|
* @package framework
|
|
* @subpackage control
|
|
*/
|
|
interface RequestFilter {
|
|
/**
|
|
* Filter executed before a request processes
|
|
*
|
|
* @return boolean (optional)
|
|
* Whether to continue processing other filters
|
|
*/
|
|
public function preRequest(SS_HTTPRequest $request, Session $session, DataModel $model);
|
|
|
|
/**
|
|
* Filter executed AFTER a request
|
|
*/
|
|
public function postRequest(SS_HTTPRequest $request, SS_HTTPResponse $response, DataModel $model);
|
|
} |