Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F451644
PhabricatorApplicationsApplication.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorApplicationsApplication.php
View Options
<?php
final
class
PhabricatorApplicationsApplication
extends
PhabricatorApplication
{
public
function
canUninstall
()
{
return
false
;
}
public
function
isLaunchable
()
{
// This application is launchable in the traditional sense, but showing it
// on the application launch list is confusing.
return
false
;
}
public
function
getBaseURI
()
{
return
'/applications/'
;
}
public
function
getShortDescription
()
{
return
pht
(
'Explore More Applications'
);
}
public
function
getIconName
()
{
return
'application'
;
}
public
function
getTitleGlyph
()
{
return
"
\x
E0
\x
BC
\x
84"
;
}
public
function
getRoutes
()
{
return
array
(
'/applications/'
=>
array
(
'(?:query/(?P<queryKey>[^/]+)/)?'
=>
'PhabricatorApplicationsListController'
,
'view/(?P<application>
\w
+)/'
=>
'PhabricatorApplicationDetailViewController'
,
'edit/(?P<application>
\w
+)/'
=>
'PhabricatorApplicationEditController'
,
'(?P<application>
\w
+)/(?P<action>install|uninstall)/'
=>
'PhabricatorApplicationUninstallController'
,
),
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, May 4, 10:35 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
68313
Default Alt Text
PhabricatorApplicationsApplication.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment