Page Menu
Home
GnuPG
Search
Configure Global Search
Log In
Files
F35337083
PhabricatorApplicationPhragment.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Size
1 KB
Subscribers
None
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'
,
'update/(?P<dblob>.*)'
=>
'PhragmentUpdateController'
,
'history/(?P<dblob>.*)'
=>
'PhragmentHistoryController'
,
'zip/(?P<dblob>.*)'
=>
'PhragmentZIPController'
,
'zip@(?P<snapshot>[^/]+)/(?P<dblob>.*)'
=>
'PhragmentZIPController'
,
'version/(?P<id>[0-9]*)/'
=>
'PhragmentVersionController'
,
'patch/(?P<aid>[0-9x]*)/(?P<bid>[0-9]*)/'
=>
'PhragmentPatchController'
,
'revert/(?P<id>[0-9]*)/(?P<dblob>.*)'
=>
'PhragmentRevertController'
,
'snapshot/'
=>
array
(
'create/(?P<dblob>.*)'
=>
'PhragmentSnapshotCreateController'
,
'view/(?P<id>[0-9]*)/'
=>
'PhragmentSnapshotViewController'
,
'delete/(?P<id>[0-9]*)/'
=>
'PhragmentSnapshotDeleteController'
,
'promote/'
=>
array
(
'latest/(?P<dblob>.*)'
=>
'PhragmentSnapshotPromoteController'
,
'(?P<id>[0-9]*)/'
=>
'PhragmentSnapshotPromoteController'
,
),
),
),
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Feb 6, 8:13 AM (11 h, 31 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
a7/ae/f74df3495969067e2c2c881392b7
Attached To
rPHAB Phabricator
Event Timeline
Log In to Comment