Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102586767
PhabricatorSystemApplication.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 22, 06:42
Size
821 B
Mime Type
text/x-php
Expires
Mon, Feb 24, 06:42 (2 d)
Engine
blob
Format
Raw Data
Handle
24371265
Attached To
rPH Phabricator
PhabricatorSystemApplication.php
View Options
<?php
final
class
PhabricatorSystemApplication
extends
PhabricatorApplication
{
public
function
getName
()
{
return
pht
(
'System'
);
}
public
function
canUninstall
()
{
return
false
;
}
public
function
isUnlisted
()
{
return
true
;
}
public
function
getRoutes
()
{
return
array
(
'/status/'
=>
'PhabricatorStatusController'
,
'/debug/'
=>
'PhabricatorDebugController'
,
'/robots.txt'
=>
'PhabricatorRobotsController'
,
'/services/'
=>
array
(
'encoding/'
=>
'PhabricatorSystemSelectEncodingController'
,
'highlight/'
=>
'PhabricatorSystemSelectHighlightController'
,
),
'/readonly/'
=>
array
(
'(?P<reason>[^/]+)/'
=>
'PhabricatorSystemReadOnlyController'
,
),
'/favicon.ico'
=>
'PhabricatorSystemFaviconController'
,
);
}
}
Event Timeline
Log In to Comment