Differential D10493 Diff 25253 src/applications/phrequent/application/PhabricatorPhrequentApplication.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/phrequent/application/PhabricatorPhrequentApplication.php
| <?php | <?php | ||||
| final class PhabricatorPhrequentApplication extends PhabricatorApplication { | final class PhabricatorPhrequentApplication extends PhabricatorApplication { | ||||
| public function getName() { | public function getName() { | ||||
| return pht('Phrequent'); | return pht('Phrequent'); | ||||
| } | } | ||||
| public function getShortDescription() { | public function getShortDescription() { | ||||
| return pht('Track Time Spent'); | return pht('Track Time Spent'); | ||||
| } | } | ||||
| public function getBaseURI() { | public function getBaseURI() { | ||||
| return '/phrequent/'; | return '/phrequent/'; | ||||
| } | } | ||||
| public function isBeta() { | public function isPrototype() { | ||||
| return true; | return true; | ||||
| } | } | ||||
| public function getIconName() { | public function getIconName() { | ||||
| return 'phrequent'; | return 'phrequent'; | ||||
| } | } | ||||
| public function getApplicationGroup() { | public function getApplicationGroup() { | ||||
| Show All 40 Lines | |||||