mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 00:02:41 +01:00
0c8f487b0f
Summary: Provide an implementation for the `getName` method rather than automagically determining the application name. Test Plan: Saw reasonable application names in the launcher. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D10027
68 lines
1.7 KiB
PHP
68 lines
1.7 KiB
PHP
<?php
|
|
|
|
final class PhabricatorCalendarApplication extends PhabricatorApplication {
|
|
|
|
public function getName() {
|
|
return pht('Calendar');
|
|
}
|
|
|
|
public function getShortDescription() {
|
|
return pht('Upcoming Events');
|
|
}
|
|
|
|
public function getFlavorText() {
|
|
return pht('Never miss an episode ever again.');
|
|
}
|
|
|
|
public function getBaseURI() {
|
|
return '/calendar/';
|
|
}
|
|
|
|
public function getIconName() {
|
|
return 'calendar';
|
|
}
|
|
|
|
public function getTitleGlyph() {
|
|
// Unicode has a calendar character but it's in some distant code plane,
|
|
// use "keyboard" since it looks vaguely similar.
|
|
return "\xE2\x8C\xA8";
|
|
}
|
|
|
|
public function isBeta() {
|
|
return true;
|
|
}
|
|
|
|
public function getRoutes() {
|
|
return array(
|
|
'/calendar/' => array(
|
|
'' => 'PhabricatorCalendarViewController',
|
|
'all/' => 'PhabricatorCalendarBrowseController',
|
|
'event/' => array(
|
|
'(?:query/(?P<queryKey>[^/]+)/)?'
|
|
=> 'PhabricatorCalendarEventListController',
|
|
'create/'
|
|
=> 'PhabricatorCalendarEventEditController',
|
|
'edit/(?P<id>[1-9]\d*)/'
|
|
=> 'PhabricatorCalendarEventEditController',
|
|
'delete/(?P<id>[1-9]\d*)/'
|
|
=> 'PhabricatorCalendarEventDeleteController',
|
|
'view/(?P<id>[1-9]\d*)/'
|
|
=> 'PhabricatorCalendarEventViewController',
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
public function getQuickCreateItems(PhabricatorUser $viewer) {
|
|
$items = array();
|
|
|
|
$item = id(new PHUIListItemView())
|
|
->setName(pht('Calendar Event'))
|
|
->setIcon('fa-calendar')
|
|
->setHref($this->getBaseURI().'event/create/');
|
|
$items[] = $item;
|
|
|
|
return $items;
|
|
}
|
|
|
|
}
|