Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93096322
PhabricatorApplicationPhragment.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
Tue, Nov 26, 04:43
Size
835 B
Mime Type
text/x-php
Expires
Thu, Nov 28, 04:43 (2 d)
Engine
blob
Format
Raw Data
Handle
22566542
Attached To
rPH Phabricator
PhabricatorApplicationPhragment.php
View Options
<?php
final
class
PhabricatorApplicationPhragment
extends
PhabricatorApplication
{
public
function
getBaseURI
()
{
return
'/phragment/'
;
}
public
function
getShortDescription
()
{
return
pht
(
'Versioned Artifact Storage'
);
}
public
function
getIconName
()
{
return
'phragment'
;
}
public
function
getTitleGlyph
()
{
return
"
\x
E2
\x
26
\x
B6"
;
}
public
function
getApplicationGroup
()
{
return
self
::
GROUP_UTILITIES
;
}
public
function
isBeta
()
{
return
true
;
}
public
function
canUninstall
()
{
return
true
;
}
public
function
getRoutes
()
{
return
array
(
'/phragment/'
=>
array
(
''
=>
'PhragmentBrowseController'
,
'browse/(?P<dblob>.*)'
=>
'PhragmentBrowseController'
,
'create/(?P<dblob>.*)'
=>
'PhragmentCreateController'
,
),
);
}
}
Event Timeline
Log In to Comment