Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F119423444
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
Thu, Jun 26, 17:39
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Jun 28, 17:39 (2 d)
Engine
blob
Format
Raw Data
Handle
27014900
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'
,
'(?P<verb>ignore|unignore)/(?P<key>[^/]+)/'
=>
'PhabricatorConfigIgnoreController'
,
'issue/'
=>
array
(
''
=>
'PhabricatorConfigIssueListController'
,
'(?P<key>[^/]+)/'
=>
'PhabricatorConfigIssueViewController'
,
),
),
);
}
}
Event Timeline
Log In to Comment