Changeset View
Changeset View
Standalone View
Standalone View
src/applications/base/PhabricatorApplication.php
| <?php | <?php | ||||
| /** | /** | ||||
| * @task info Application Information | * @task info Application Information | ||||
| * @task ui UI Integration | * @task ui UI Integration | ||||
| * @task uri URI Routing | * @task uri URI Routing | ||||
| * @task fact Fact Integration | * @task fact Fact Integration | ||||
| * @task meta Application Management | * @task meta Application Management | ||||
| * @group apps | |||||
| */ | */ | ||||
| abstract class PhabricatorApplication | abstract class PhabricatorApplication implements PhabricatorPolicyInterface { | ||||
| implements PhabricatorPolicyInterface { | |||||
| const GROUP_CORE = 'core'; | const GROUP_CORE = 'core'; | ||||
| const GROUP_UTILITIES = 'util'; | const GROUP_UTILITIES = 'util'; | ||||
| const GROUP_ADMIN = 'admin'; | const GROUP_ADMIN = 'admin'; | ||||
| const GROUP_DEVELOPER = 'developer'; | const GROUP_DEVELOPER = 'developer'; | ||||
| public static function getApplicationGroups() { | public static function getApplicationGroups() { | ||||
| return array( | return array( | ||||
| ▲ Show 20 Lines • Show All 482 Lines • Show Last 20 Lines | |||||