mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 19:02:41 +01:00
689c6f2f30
Summary: Now has policy support (not really) Now uses CountdownQuery Now has handles Now uses common way for remarkup Remarkup still looks terrible Test Plan: Added countdowns, edited countdowns. Did even embed some. Couldn't break it Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin, AnhNhan Maniphest Tasks: T2624 Differential Revision: https://secure.phabricator.com/D6012
47 lines
995 B
PHP
47 lines
995 B
PHP
<?php
|
|
|
|
/**
|
|
* @group countdown
|
|
*/
|
|
final class PhabricatorApplicationCountdown extends PhabricatorApplication {
|
|
|
|
public function getBaseURI() {
|
|
return '/countdown/';
|
|
}
|
|
|
|
public function getIconName() {
|
|
return 'countdown';
|
|
}
|
|
|
|
public function getShortDescription() {
|
|
return pht('Countdown Timers');
|
|
}
|
|
|
|
public function getTitleGlyph() {
|
|
return "\xE2\x9A\xB2";
|
|
}
|
|
|
|
public function getFlavorText() {
|
|
return pht('Utilize the full capabilities of your ALU.');
|
|
}
|
|
|
|
public function getApplicationGroup() {
|
|
return self::GROUP_UTILITIES;
|
|
}
|
|
|
|
public function getRoutes() {
|
|
return array(
|
|
'/countdown/' => array(
|
|
''
|
|
=> 'PhabricatorCountdownListController',
|
|
'(?P<id>[1-9]\d*)/'
|
|
=> 'PhabricatorCountdownViewController',
|
|
'edit/(?:(?P<id>[1-9]\d*)/)?'
|
|
=> 'PhabricatorCountdownEditController',
|
|
'delete/(?P<id>[1-9]\d*)/'
|
|
=> 'PhabricatorCountdownDeleteController'
|
|
),
|
|
);
|
|
}
|
|
|
|
}
|