mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-16 03:42:41 +01:00
41 lines
951 B
PHP
41 lines
951 B
PHP
|
<?php
|
||
|
|
||
|
abstract class PassphraseController extends PhabricatorController {
|
||
|
|
||
|
public function buildSideNavView($for_app = false) {
|
||
|
$user = $this->getRequest()->getUser();
|
||
|
|
||
|
$nav = new AphrontSideNavFilterView();
|
||
|
$nav->setBaseURI(new PhutilURI($this->getApplicationURI()));
|
||
|
|
||
|
if ($for_app) {
|
||
|
$nav->addFilter('create', pht('Create Credential'));
|
||
|
}
|
||
|
|
||
|
id(new PassphraseCredentialSearchEngine())
|
||
|
->setViewer($user)
|
||
|
->addNavigationItems($nav->getMenu());
|
||
|
|
||
|
$nav->selectFilter(null);
|
||
|
|
||
|
return $nav;
|
||
|
}
|
||
|
|
||
|
public function buildApplicationMenu() {
|
||
|
return $this->buildSideNavView(true)->getMenu();
|
||
|
}
|
||
|
|
||
|
public function buildApplicationCrumbs() {
|
||
|
$crumbs = parent::buildApplicationCrumbs();
|
||
|
|
||
|
$crumbs->addAction(
|
||
|
id(new PHUIListItemView())
|
||
|
->setName(pht('Create Credential'))
|
||
|
->setHref($this->getApplicationURI('create/'))
|
||
|
->setIcon('create'));
|
||
|
|
||
|
return $crumbs;
|
||
|
}
|
||
|
|
||
|
}
|