1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-28 17:52:43 +01:00
phorge-phorge/src/applications/differential/controller/DifferentialController.php

41 lines
1.2 KiB
PHP
Raw Normal View History

2011-01-24 22:18:41 +01:00
<?php
abstract class DifferentialController extends PhabricatorController {
protected function allowsAnonymousAccess() {
return PhabricatorEnv::getEnvConfig('differential.anonymous-access');
}
2011-01-24 22:18:41 +01:00
public function buildStandardPageResponse($view, array $data) {
2011-01-26 00:19:06 +01:00
require_celerity_resource('differential-core-view-css');
$viewer_is_anonymous = !$this->getRequest()->getUser()->isLoggedIn();
2011-01-26 22:21:12 +01:00
$page = $this->buildStandardPageView();
$page->setApplicationName(pht('Differential'));
2011-01-24 22:18:41 +01:00
$page->setBaseURI('/differential/');
$page->setTitle(idx($data, 'title'));
$page->setGlyph("\xE2\x9A\x99");
$page->appendChild($view);
$page->setSearchDefaultScope(PhabricatorSearchScope::SCOPE_OPEN_REVISIONS);
2011-01-24 22:18:41 +01:00
$response = new AphrontWebpageResponse();
return $response->setContent($page->render());
}
public function buildApplicationCrumbs() {
$crumbs = parent::buildApplicationCrumbs();
$create_uri = new PhutilURI('/differential/diff/create/');
$crumbs->addAction(
id(new PhabricatorMenuItemView())
->setHref($this->getApplicationURI('/diff/create/'))
->setName(pht('Create Diff'))
->setIcon('create'));
return $crumbs;
}
2011-01-24 22:18:41 +01:00
}