Changeset View
Changeset View
Standalone View
Standalone View
src/applications/nuance/application/PhabricatorNuanceApplication.php
| <?php | <?php | ||||
| final class PhabricatorNuanceApplication extends PhabricatorApplication { | final class PhabricatorNuanceApplication extends PhabricatorApplication { | ||||
| public function getName() { | public function getName() { | ||||
| return pht('Nuance'); | return pht('Nuance'); | ||||
| } | } | ||||
| public function getIconName() { | public function getIconName() { | ||||
| return 'nuance'; | return 'nuance'; | ||||
| } | } | ||||
| public function getTitleGlyph() { | public function getTitleGlyph() { | ||||
| return "\xE2\x98\x8E"; | return "\xE2\x98\x8E"; | ||||
| } | } | ||||
| public function isBeta() { | public function isPrototype() { | ||||
| return true; | return true; | ||||
| } | } | ||||
| public function isLaunchable() { | public function isLaunchable() { | ||||
| // Try to hide this even more for now. | // Try to hide this even more for now. | ||||
| return false; | return false; | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 52 Lines • Show Last 20 Lines | |||||