Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F94127044
PhabricatorFactApplication.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, Dec 4, 03:10
Size
691 B
Mime Type
text/x-php
Expires
Fri, Dec 6, 03:10 (1 d, 11 h)
Engine
blob
Format
Raw Data
Handle
22741206
Attached To
rPH Phabricator
PhabricatorFactApplication.php
View Options
<?php
final
class
PhabricatorFactApplication
extends
PhabricatorApplication
{
public
function
getShortDescription
()
{
return
pht
(
'Chart and Analyze Data'
);
}
public
function
getName
()
{
return
pht
(
'Facts'
);
}
public
function
getBaseURI
()
{
return
'/fact/'
;
}
public
function
getFontIcon
()
{
return
'fa-line-chart'
;
}
public
function
getApplicationGroup
()
{
return
self
::
GROUP_UTILITIES
;
}
public
function
isPrototype
()
{
return
true
;
}
public
function
getRoutes
()
{
return
array
(
'/fact/'
=>
array
(
''
=>
'PhabricatorFactHomeController'
,
'chart/'
=>
'PhabricatorFactChartController'
,
),
);
}
}
Event Timeline
Log In to Comment