mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
041d12129a
Update template locations Add permission codes to cms sections Code, phpdoc, and typehint cleanup Split batch actions into files
25 lines
575 B
PHP
25 lines
575 B
PHP
<?php
|
|
|
|
namespace SilverStripe\CMS\Controllers;
|
|
|
|
use SilverStripe\ORM\DataExtension;
|
|
use SilverStripe\ORM\DataObject;
|
|
use SilverStripe\CMS\Model\ErrorPage;
|
|
|
|
/**
|
|
* 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();
|
|
}
|
|
|
|
}
|