Page Menu
Home
Xreate
Search
Configure Global Search
Log In
Docs
Questions
Repository
Issues
Patches
Internal API
Files
F4000830
XreateFrontendApplication.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Jul 9, 4:56 AM
Size
824 B
Mime Type
text/x-php
Expires
Sat, Jul 11, 4:56 AM (1 d, 4 h)
Engine
blob
Format
Raw Data
Handle
272558
Attached To
rXR Xreate
XreateFrontendApplication.php
View Options
<?php
final
class
XreateFrontendApplication
extends
PhabricatorApplication
{
public
function
getIcon
(
)
{
return
'fa-magnet'
;
}
public
function
getTitleGlyph
(
)
{
return
"\xE2\x8F\x9A"
;
}
public
function
getFlavorText
(
)
{
return
pht
(
'Xreate frontend'
)
;
}
public
function
getApplicationGroup
(
)
{
return
self
::
GROUP_DEVELOPER
;
}
public
function
isPrototype
(
)
{
return
false
;
}
public
function
getApplicationOrder
(
)
{
return
0.110
;
}
public
function
getName
(
)
{
return
'Xreate Frontend'
;
}
public
function
getShortDescription
(
)
{
return
'Executes xreate scripts'
;
}
public
function
getBaseURI
(
)
{
return
'/xreate/'
;
}
public
function
getRoutes
(
)
{
return
array
(
'/xreate/'
=>
'XreateFrontendController'
)
;
}
}
Event Timeline
Log In to Comment