Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100671531
PhabricatorHelpApplication.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Feb 1, 17:50
Size
599 B
Mime Type
text/x-php
Expires
Mon, Feb 3, 17:50 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
24010243
Attached To
rPH Phabricator
PhabricatorHelpApplication.php
View Options
<?php
final
class
PhabricatorHelpApplication
extends
PhabricatorApplication
{
public
function
getName
()
{
return
pht
(
'Help'
);
}
public
function
canUninstall
()
{
return
false
;
}
public
function
isUnlisted
()
{
return
true
;
}
public
function
getRoutes
()
{
return
array
(
'/help/'
=>
array
(
'keyboardshortcut/'
=>
'PhabricatorHelpKeyboardShortcutController'
,
'editorprotocol/'
=>
'PhabricatorHelpEditorProtocolController'
,
'documentation/(?P<application>
\w
+)/'
=>
'PhabricatorHelpDocumentationController'
,
),
);
}
}
Event Timeline
Log In to Comment