mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
25 lines
560 B
PHP
25 lines
560 B
PHP
<?php
|
|
/**
|
|
* Triggers a call to flush() on all implementors of Flushable.
|
|
*
|
|
* @package framework
|
|
* @subpackage control
|
|
*/
|
|
class FlushRequestFilter implements RequestFilter {
|
|
|
|
public function preRequest(SS_HTTPRequest $request, Session $session, DataModel $model) {
|
|
if(array_key_exists('flush', $request->getVars())) {
|
|
foreach(ClassInfo::implementorsOf('Flushable') as $class) {
|
|
$class::flush();
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
public function postRequest(SS_HTTPRequest $request, SS_HTTPResponse $response, DataModel $model) {
|
|
return true;
|
|
}
|
|
|
|
}
|