Changeset View
Changeset View
Standalone View
Standalone View
src/applications/phlux/application/PhabricatorPhluxApplication.php
| Show All 20 Lines | final class PhabricatorPhluxApplication extends PhabricatorApplication { | ||||
| public function getTitleGlyph() { | public function getTitleGlyph() { | ||||
| return "\xE2\x98\xBD"; | return "\xE2\x98\xBD"; | ||||
| } | } | ||||
| public function getApplicationGroup() { | public function getApplicationGroup() { | ||||
| return self::GROUP_UTILITIES; | return self::GROUP_UTILITIES; | ||||
| } | } | ||||
| public function isBeta() { | public function isPrototype() { | ||||
| return true; | return true; | ||||
| } | } | ||||
| public function getRoutes() { | public function getRoutes() { | ||||
| return array( | return array( | ||||
| '/phlux/' => array( | '/phlux/' => array( | ||||
| '' => 'PhluxListController', | '' => 'PhluxListController', | ||||
| 'view/(?P<key>[^/]+)/' => 'PhluxViewController', | 'view/(?P<key>[^/]+)/' => 'PhluxViewController', | ||||
| 'edit/(?:(?P<key>[^/]+)/)?' => 'PhluxEditController', | 'edit/(?:(?P<key>[^/]+)/)?' => 'PhluxEditController', | ||||
| ), | ), | ||||
| ); | ); | ||||
| } | } | ||||
| } | } | ||||