Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F108092190
PhabricatorXHProfApplication.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
Mon, Apr 14, 04:59
Size
870 B
Mime Type
text/x-php
Expires
Wed, Apr 16, 04:59 (2 d)
Engine
blob
Format
Raw Data
Handle
25539857
Attached To
rPH Phabricator
PhabricatorXHProfApplication.php
View Options
<?php
final
class
PhabricatorXHProfApplication
extends
PhabricatorApplication
{
public
function
getBaseURI
()
{
return
'/xhprof/'
;
}
public
function
getName
()
{
return
pht
(
'XHProf'
);
}
public
function
getShortDescription
()
{
return
pht
(
'PHP Profiling Tool'
);
}
public
function
getIcon
()
{
return
'fa-stethoscope'
;
}
public
function
getTitleGlyph
()
{
return
"
\x
E2
\x
98
\x
84"
;
}
public
function
getApplicationGroup
()
{
return
self
::
GROUP_DEVELOPER
;
}
public
function
getRoutes
()
{
return
array
(
'/xhprof/'
=>
array
(
''
=>
'PhabricatorXHProfSampleListController'
,
'list/(?P<view>[^/]+)/'
=>
'PhabricatorXHProfSampleListController'
,
'profile/(?P<phid>[^/]+)/'
=>
'PhabricatorXHProfProfileController'
,
'import/drop/'
=>
'PhabricatorXHProfDropController'
,
),
);
}
}
Event Timeline
Log In to Comment