Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F116539660
PhabricatorApplicationFact.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, Jun 7, 11:13
Size
602 B
Mime Type
text/x-php
Expires
Mon, Jun 9, 11:13 (2 d)
Engine
blob
Format
Raw Data
Handle
26621680
Attached To
rPH Phabricator
PhabricatorApplicationFact.php
View Options
<?php
final
class
PhabricatorApplicationFact
extends
PhabricatorApplication
{
public
function
getShortDescription
()
{
return
'Analyze Data'
;
}
public
function
getBaseURI
()
{
return
'/fact/'
;
}
public
function
getIconName
()
{
return
'fact'
;
}
public
function
getApplicationGroup
()
{
return
self
::
GROUP_UTILITIES
;
}
public
function
isBeta
()
{
return
true
;
}
public
function
getRoutes
()
{
return
array
(
'/fact/'
=>
array
(
''
=>
'PhabricatorFactHomeController'
,
'chart/'
=>
'PhabricatorFactChartController'
,
),
);
}
}
Event Timeline
Log In to Comment