Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91519032
PhabricatorPHPASTApplication.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, Nov 11, 20:54
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Nov 13, 20:54 (2 d)
Engine
blob
Format
Raw Data
Handle
22277285
Attached To
rPH Phabricator
PhabricatorPHPASTApplication.php
View Options
<?php
final
class
PhabricatorPHPASTApplication
extends
PhabricatorApplication
{
public
function
getName
()
{
return
pht
(
'PHPAST'
);
}
public
function
getBaseURI
()
{
return
'/xhpast/'
;
}
public
function
getFontIcon
()
{
return
'fa-ambulance'
;
}
public
function
getShortDescription
()
{
return
'Visual PHP Parser'
;
}
public
function
getTitleGlyph
()
{
return
"
\x
E2
\x
96
\x
A0"
;
}
public
function
getApplicationGroup
()
{
return
self
::
GROUP_DEVELOPER
;
}
public
function
getRoutes
()
{
return
array
(
'/xhpast/'
=>
array
(
''
=>
'PhabricatorXHPASTViewRunController'
,
'view/(?P<id>[1-9]
\d
*)/'
=>
'PhabricatorXHPASTViewFrameController'
,
'frameset/(?P<id>[1-9]
\d
*)/'
=>
'PhabricatorXHPASTViewFramesetController'
,
'input/(?P<id>[1-9]
\d
*)/'
=>
'PhabricatorXHPASTViewInputController'
,
'tree/(?P<id>[1-9]
\d
*)/'
=>
'PhabricatorXHPASTViewTreeController'
,
'stream/(?P<id>[1-9]
\d
*)/'
=>
'PhabricatorXHPASTViewStreamController'
,
),
);
}
}
Event Timeline
Log In to Comment