silverstripe-framework/admin/code/LeftAndMain_HTTPResponse.php
2016-09-09 18:43:05 +12:00

26 lines
396 B
PHP

<?php
namespace SilverStripe\Admin;
use SilverStripe\Control\HTTPResponse;
/**
* Allow overriding finished state for faux redirects.
*/
class LeftAndMain_HTTPResponse extends HTTPResponse
{
protected $isFinished = false;
public function isFinished()
{
return (parent::isFinished() || $this->isFinished);
}
public function setIsFinished($bool)
{
$this->isFinished = $bool;
}
}