2011-01-24 13:18:41 -08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
abstract class DifferentialController extends PhabricatorController {
|
|
|
|
|
2011-10-24 12:27:16 -07:00
|
|
|
protected function allowsAnonymousAccess() {
|
|
|
|
return PhabricatorEnv::getEnvConfig('differential.anonymous-access');
|
|
|
|
}
|
|
|
|
|
2011-01-24 13:18:41 -08:00
|
|
|
public function buildStandardPageResponse($view, array $data) {
|
2011-01-25 15:19:06 -08:00
|
|
|
|
|
|
|
require_celerity_resource('differential-core-view-css');
|
|
|
|
|
2011-10-24 12:27:16 -07:00
|
|
|
$viewer_is_anonymous = !$this->getRequest()->getUser()->isLoggedIn();
|
|
|
|
|
2011-01-26 13:21:12 -08:00
|
|
|
$page = $this->buildStandardPageView();
|
2011-01-24 13:18:41 -08:00
|
|
|
$page->setApplicationName('Differential');
|
|
|
|
$page->setBaseURI('/differential/');
|
|
|
|
$page->setTitle(idx($data, 'title'));
|
|
|
|
$page->setGlyph("\xE2\x9A\x99");
|
|
|
|
$page->appendChild($view);
|
2012-02-14 17:00:12 -08:00
|
|
|
$page->setSearchDefaultScope(PhabricatorSearchScope::SCOPE_OPEN_REVISIONS);
|
2011-01-24 13:18:41 -08:00
|
|
|
|
|
|
|
$response = new AphrontWebpageResponse();
|
|
|
|
return $response->setContent($page->render());
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|