mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-24 07:42:40 +01:00
6bfaf31c0a
Summary: I can't believe I've been staring at this page for so long without noticing this typo Test Plan: doitlive Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley Differential Revision: https://secure.phabricator.com/D17791
72 lines
2 KiB
PHP
72 lines
2 KiB
PHP
<?php
|
|
|
|
final class PhabricatorBadgesApplication extends PhabricatorApplication {
|
|
|
|
public function getName() {
|
|
return pht('Badges');
|
|
}
|
|
|
|
public function getBaseURI() {
|
|
return '/badges/';
|
|
}
|
|
|
|
public function getShortDescription() {
|
|
return pht('Achievements and Notoriety');
|
|
}
|
|
|
|
public function getIcon() {
|
|
return 'fa-trophy';
|
|
}
|
|
|
|
public function getFlavorText() {
|
|
return pht('Build self esteem through gamification.');
|
|
}
|
|
|
|
public function getApplicationGroup() {
|
|
return self::GROUP_UTILITIES;
|
|
}
|
|
|
|
public function getRoutes() {
|
|
return array(
|
|
'/badges/' => array(
|
|
'(?:query/(?P<queryKey>[^/]+)/)?'
|
|
=> 'PhabricatorBadgesListController',
|
|
'award/(?:(?P<id>\d+)/)?'
|
|
=> 'PhabricatorBadgesAwardController',
|
|
'create/'
|
|
=> 'PhabricatorBadgesEditController',
|
|
'comment/(?P<id>[1-9]\d*)/'
|
|
=> 'PhabricatorBadgesCommentController',
|
|
$this->getEditRoutePattern('edit/')
|
|
=> 'PhabricatorBadgesEditController',
|
|
'archive/(?:(?P<id>\d+)/)?'
|
|
=> 'PhabricatorBadgesArchiveController',
|
|
'view/(?:(?P<id>\d+)/)?'
|
|
=> 'PhabricatorBadgesViewController',
|
|
'recipients/' => array(
|
|
'(?P<id>[1-9]\d*)/'
|
|
=> 'PhabricatorBadgesRecipientsController',
|
|
'(?P<id>[1-9]\d*)/add/'
|
|
=> 'PhabricatorBadgesEditRecipientsController',
|
|
'(?P<id>[1-9]\d*)/remove/'
|
|
=> 'PhabricatorBadgesRemoveRecipientsController',
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
protected function getCustomCapabilities() {
|
|
return array(
|
|
PhabricatorBadgesCreateCapability::CAPABILITY => array(
|
|
'default' => PhabricatorPolicies::POLICY_ADMIN,
|
|
'caption' => pht('Default create policy for badges.'),
|
|
),
|
|
PhabricatorBadgesDefaultEditCapability::CAPABILITY => array(
|
|
'default' => PhabricatorPolicies::POLICY_ADMIN,
|
|
'caption' => pht('Default edit policy for badges.'),
|
|
'template' => PhabricatorBadgesPHIDType::TYPECONST,
|
|
),
|
|
);
|
|
}
|
|
|
|
}
|