mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 00:02:41 +01:00
c2ac63e9ad
Summary: Ref T6822. This method needs to be `public` because it is called from `PhabricatorApplicationSearchController::buildApplicationMenu()`. Test Plan: I wouldn't expect //increasing// method visibility to break anything. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T6822 Differential Revision: https://secure.phabricator.com/D11416
52 lines
1.3 KiB
PHP
52 lines
1.3 KiB
PHP
<?php
|
|
|
|
abstract class PhabricatorPeopleController extends PhabricatorController {
|
|
|
|
public function shouldRequireAdmin() {
|
|
return true;
|
|
}
|
|
|
|
public function buildSideNavView() {
|
|
$nav = new AphrontSideNavFilterView();
|
|
$nav->setBaseURI(new PhutilURI($this->getApplicationURI()));
|
|
|
|
$viewer = $this->getRequest()->getUser();
|
|
|
|
id(new PhabricatorPeopleSearchEngine())
|
|
->setViewer($viewer)
|
|
->addNavigationItems($nav->getMenu());
|
|
|
|
if ($viewer->getIsAdmin()) {
|
|
$nav->addLabel(pht('User Administration'));
|
|
if (PhabricatorLDAPAuthProvider::getLDAPProvider()) {
|
|
$nav->addFilter('ldap', pht('Import from LDAP'));
|
|
}
|
|
|
|
$nav->addFilter('logs', pht('Activity Logs'));
|
|
}
|
|
|
|
return $nav;
|
|
}
|
|
|
|
public function buildApplicationMenu() {
|
|
return $this->buildSideNavView()->getMenu();
|
|
}
|
|
|
|
protected function buildApplicationCrumbs() {
|
|
$crumbs = parent::buildApplicationCrumbs();
|
|
|
|
$viewer = $this->getRequest()->getUser();
|
|
|
|
$can_create = $this->hasApplicationCapability(
|
|
PeopleCreateUsersCapability::CAPABILITY);
|
|
$crumbs->addAction(
|
|
id(new PHUIListItemView())
|
|
->setName(pht('Create New User'))
|
|
->setHref($this->getApplicationURI('create/'))
|
|
->setDisabled(!$can_create)
|
|
->setIcon('fa-plus-square'));
|
|
|
|
return $crumbs;
|
|
}
|
|
|
|
}
|