mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-11 08:06:13 +01:00
44 lines
863 B
PHP
44 lines
863 B
PHP
|
<?php
|
||
|
|
||
|
final class Phame404Response extends AphrontHTMLResponse {
|
||
|
|
||
|
private $page;
|
||
|
|
||
|
public function setPage(AphrontPageView $page) {
|
||
|
$this->page = $page;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function getPage() {
|
||
|
return $this->page;
|
||
|
}
|
||
|
|
||
|
public function getHTTPResponseCode() {
|
||
|
return 404;
|
||
|
}
|
||
|
|
||
|
public function buildResponseString() {
|
||
|
require_celerity_resource('phame-css');
|
||
|
|
||
|
$not_found = phutil_tag(
|
||
|
'div',
|
||
|
array(
|
||
|
'class' => 'phame-404',
|
||
|
),
|
||
|
array(
|
||
|
phutil_tag('strong', array(), pht('404 Not Found')),
|
||
|
phutil_tag('br'),
|
||
|
pht('Wherever you go, there you are.'),
|
||
|
phutil_tag('br'),
|
||
|
pht('But the page you seek is elsewhere.'),
|
||
|
));
|
||
|
|
||
|
$page = $this->getPage()
|
||
|
->setTitle(pht('404 Not Found'))
|
||
|
->appendChild($not_found);
|
||
|
|
||
|
return $page->render();
|
||
|
}
|
||
|
|
||
|
}
|