2012-08-14 00:28:41 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhabricatorApplicationDiviner extends PhabricatorApplication {
|
|
|
|
|
2012-10-01 21:56:51 +02:00
|
|
|
public function getBaseURI() {
|
|
|
|
return '/diviner/';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getAutospriteName() {
|
|
|
|
return 'diviner';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getShortDescription() {
|
|
|
|
return 'Documentation';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getTitleGlyph() {
|
|
|
|
return "\xE2\x97\x89";
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getRoutes() {
|
|
|
|
return array(
|
|
|
|
'/diviner/' => 'DivinerListController',
|
|
|
|
);
|
2012-08-14 00:28:41 +02:00
|
|
|
}
|
|
|
|
|
2012-10-04 00:46:19 +02:00
|
|
|
public function getApplicationGroup() {
|
|
|
|
return self::GROUP_COMMUNICATION;
|
|
|
|
}
|
|
|
|
|
2012-08-14 00:28:41 +02:00
|
|
|
public function buildMainMenuItems(
|
|
|
|
PhabricatorUser $user,
|
|
|
|
PhabricatorController $controller = null) {
|
|
|
|
|
|
|
|
$items = array();
|
2012-08-14 15:04:19 +02:00
|
|
|
|
|
|
|
$application = null;
|
|
|
|
if ($controller) {
|
|
|
|
$application = $controller->getCurrentApplication();
|
|
|
|
}
|
|
|
|
|
2012-08-14 00:28:41 +02:00
|
|
|
if ($application && $application->getHelpURI()) {
|
2012-12-07 22:33:03 +01:00
|
|
|
$item = new PhabricatorMenuItemView();
|
2012-08-14 00:28:41 +02:00
|
|
|
$item->setName(pht('%s Help', $application->getName()));
|
2012-12-07 22:33:03 +01:00
|
|
|
$item->setIcon('help');
|
2012-08-14 00:28:41 +02:00
|
|
|
$item->setHref($application->getHelpURI());
|
|
|
|
$item->setSortOrder(0.1);
|
|
|
|
$items[] = $item;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $items;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|