mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 10:22:42 +01:00
c34de83619
Summary: Ref T5655. Rename `PhabricatorPolicyCapability` subclasses for consistency. Test Plan: Browsed a few applications, nothing seemed broken. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley, Korvin, hach-que Maniphest Tasks: T5655 Differential Revision: https://secure.phabricator.com/D10037
59 lines
1.3 KiB
PHP
59 lines
1.3 KiB
PHP
<?php
|
|
|
|
final class PhabricatorCountdownApplication extends PhabricatorApplication {
|
|
|
|
public function getBaseURI() {
|
|
return '/countdown/';
|
|
}
|
|
|
|
public function getIconName() {
|
|
return 'countdown';
|
|
}
|
|
|
|
public function getName() {
|
|
return pht('Countdown');
|
|
}
|
|
|
|
public function getShortDescription() {
|
|
return pht('Countdown to Events');
|
|
}
|
|
|
|
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 getRemarkupRules() {
|
|
return array(
|
|
new PhabricatorCountdownRemarkupRule(),
|
|
);
|
|
}
|
|
|
|
public function getRoutes() {
|
|
return array(
|
|
'/countdown/' => array(
|
|
'(?:query/(?P<queryKey>[^/]+)/)?'
|
|
=> 'PhabricatorCountdownListController',
|
|
'(?P<id>[1-9]\d*)/' => 'PhabricatorCountdownViewController',
|
|
'edit/(?:(?P<id>[1-9]\d*)/)?' => 'PhabricatorCountdownEditController',
|
|
'delete/(?P<id>[1-9]\d*)/' => 'PhabricatorCountdownDeleteController'
|
|
),
|
|
);
|
|
}
|
|
|
|
public function getCustomCapabilities() {
|
|
return array(
|
|
PhabricatorCountdownDefaultViewCapability::CAPABILITY => array(
|
|
'caption' => pht('Default view policy for new countdowns.'),
|
|
),
|
|
);
|
|
}
|
|
|
|
}
|