Changeset View
Changeset View
Standalone View
Standalone View
src/applications/phame/application/PhabricatorPhameApplication.php
| Show All 20 Lines | final class PhabricatorPhameApplication extends PhabricatorApplication { | ||||
| public function getTitleGlyph() { | public function getTitleGlyph() { | ||||
| return "\xe2\x9c\xa9"; | return "\xe2\x9c\xa9"; | ||||
| } | } | ||||
| public function getHelpURI() { | public function getHelpURI() { | ||||
| return PhabricatorEnv::getDoclink('Phame User Guide'); | return PhabricatorEnv::getDoclink('Phame User Guide'); | ||||
| } | } | ||||
| public function isBeta() { | public function isPrototype() { | ||||
| return true; | return true; | ||||
| } | } | ||||
| public function getRoutes() { | public function getRoutes() { | ||||
| return array( | return array( | ||||
| '/phame/' => array( | '/phame/' => array( | ||||
| '' => 'PhamePostListController', | '' => 'PhamePostListController', | ||||
| 'r/(?P<id>\d+)/(?P<hash>[^/]+)/(?P<name>.*)' | 'r/(?P<id>\d+)/(?P<hash>[^/]+)/(?P<name>.*)' | ||||
| Show All 30 Lines | |||||