mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-03 04:02:43 +01:00
30dedb2251
Summary: Make `PhabricatorMenuView` more flexible, so callers can add items to the beginning/end/middle. In particular, this allows event handlers to receive a $menu and call `addMenuItemToLabel('activity', ...)` or similar, for D4708. Test Plan: Unit tests. Browsed site. Home page, Conpherence, and other pages with menus look correct. Reviewers: btrahan Reviewed By: btrahan CC: aran Differential Revision: https://secure.phabricator.com/D4792
55 lines
1.1 KiB
PHP
55 lines
1.1 KiB
PHP
<?php
|
|
|
|
final class PhabricatorApplicationDiviner extends PhabricatorApplication {
|
|
|
|
public function getBaseURI() {
|
|
return '/diviner/';
|
|
}
|
|
|
|
public function getIconName() {
|
|
return 'diviner';
|
|
}
|
|
|
|
public function getShortDescription() {
|
|
return 'Documentation';
|
|
}
|
|
|
|
public function getTitleGlyph() {
|
|
return "\xE2\x97\x89";
|
|
}
|
|
|
|
public function getRoutes() {
|
|
return array(
|
|
'/diviner/' => 'DivinerListController',
|
|
);
|
|
}
|
|
|
|
public function getApplicationGroup() {
|
|
return self::GROUP_COMMUNICATION;
|
|
}
|
|
|
|
public function buildMainMenuItems(
|
|
PhabricatorUser $user,
|
|
PhabricatorController $controller = null) {
|
|
|
|
$items = array();
|
|
|
|
$application = null;
|
|
if ($controller) {
|
|
$application = $controller->getCurrentApplication();
|
|
}
|
|
|
|
if ($application && $application->getHelpURI()) {
|
|
$item = new PhabricatorMenuItemView();
|
|
$item->setName(pht('%s Help', $application->getName()));
|
|
$item->setIcon('help');
|
|
$item->setHref($application->getHelpURI());
|
|
$items[] = $item;
|
|
}
|
|
|
|
return $items;
|
|
}
|
|
|
|
|
|
}
|
|
|