Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97430232
PhabricatorPhluxApplication.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, Jan 4, 10:07
Size
751 B
Mime Type
text/x-php
Expires
Mon, Jan 6, 10:07 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23407101
Attached To
rPH Phabricator
PhabricatorPhluxApplication.php
View Options
<?php
final
class
PhabricatorPhluxApplication
extends
PhabricatorApplication
{
public
function
getBaseURI
()
{
return
'/phlux/'
;
}
public
function
getShortDescription
()
{
return
pht
(
'Key/Value Configuration Store'
);
}
public
function
getIconName
()
{
return
'phlux'
;
}
public
function
getTitleGlyph
()
{
return
"
\x
E2
\x
98
\x
BD"
;
}
public
function
getApplicationGroup
()
{
return
self
::
GROUP_UTILITIES
;
}
public
function
isBeta
()
{
return
true
;
}
public
function
getRoutes
()
{
return
array
(
'/phlux/'
=>
array
(
''
=>
'PhluxListController'
,
'view/(?P<key>[^/]+)/'
=>
'PhluxViewController'
,
'edit/(?:(?P<key>[^/]+)/)?'
=>
'PhluxEditController'
,
),
);
}
}
Event Timeline
Log In to Comment