2012-08-14 00:28:41 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2012 Facebook, Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
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()) {
|
|
|
|
$class = 'main-menu-item-icon-help';
|
|
|
|
$item = new PhabricatorMainMenuIconView();
|
|
|
|
$item->setName(pht('%s Help', $application->getName()));
|
2012-08-14 23:20:01 +02:00
|
|
|
$item->addClass('autosprite main-menu-item-icon '.$class);
|
2012-08-14 00:28:41 +02:00
|
|
|
$item->setHref($application->getHelpURI());
|
|
|
|
$item->setSortOrder(0.1);
|
|
|
|
$items[] = $item;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $items;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|