Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F109745554
PhabricatorApplicationConfig.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
Wed, Apr 23, 05:51
Size
966 B
Mime Type
text/x-php
Expires
Fri, Apr 25, 05:51 (2 d)
Engine
blob
Format
Raw Data
Handle
25712859
Attached To
rPH Phabricator
PhabricatorApplicationConfig.php
View Options
<?php
final
class
PhabricatorApplicationConfig
extends
PhabricatorApplication
{
public
function
getBaseURI
()
{
return
'/config/'
;
}
public
function
getIconName
()
{
return
'setup'
;
}
public
function
getTitleGlyph
()
{
return
"
\x
E2
\x
98
\x
BA"
;
}
public
function
getApplicationGroup
()
{
return
self
::
GROUP_ADMIN
;
}
public
function
canUninstall
()
{
return
false
;
}
public
function
getRoutes
()
{
return
array
(
'/config/'
=>
array
(
''
=>
'PhabricatorConfigListController'
,
'all/'
=>
'PhabricatorConfigAllController'
,
'edit/(?P<key>[
\w\.\-
]+)/'
=>
'PhabricatorConfigEditController'
,
'group/(?P<key>[^/]+)/'
=>
'PhabricatorConfigGroupController'
,
'issue/'
=>
array
(
''
=>
'PhabricatorConfigIssueListController'
,
'(?P<key>[^/]+)/'
=>
'PhabricatorConfigIssueViewController'
,
),
),
);
}
}
Event Timeline
Log In to Comment