2016-01-26 06:38:42 +01:00
|
|
|
<?php
|
|
|
|
|
2016-07-22 01:32:32 +02:00
|
|
|
namespace SilverStripe\CMS\Controllers;
|
|
|
|
|
2016-06-16 06:57:19 +02:00
|
|
|
use SilverStripe\ORM\DataExtension;
|
|
|
|
use SilverStripe\ORM\DataObject;
|
2016-07-22 01:32:32 +02:00
|
|
|
use SilverStripe\CMS\Model\ErrorPage;
|
|
|
|
|
2016-01-26 06:38:42 +01:00
|
|
|
/**
|
|
|
|
* Decorates {@see File} with ErrorPage support
|
|
|
|
*/
|
|
|
|
class ErrorPageFileExtension extends DataExtension {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Used by {@see File::handle_shortcode}
|
|
|
|
*
|
|
|
|
* @param int $statusCode HTTP Error code
|
|
|
|
* @return DataObject Substitute object suitable for handling the given error code
|
|
|
|
*/
|
|
|
|
public function getErrorRecordFor($statusCode) {
|
|
|
|
return ErrorPage::get()->filter("ErrorCode", $statusCode)->first();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|