Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1081048
PhragmentFragmentVersion.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
PhragmentFragmentVersion.php
View Options
<?php
final
class
PhragmentFragmentVersion
extends
PhragmentDAO
implements
PhabricatorPolicyInterface
{
protected
$sequence
;
protected
$fragmentPHID
;
protected
$filePHID
;
private
$fragment
=
self
::
ATTACHABLE
;
private
$file
=
self
::
ATTACHABLE
;
public
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_AUX_PHID
=>
true
,
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'sequence'
=>
'uint32'
,
'filePHID'
=>
'phid?'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_version'
=>
array
(
'columns'
=>
array
(
'fragmentPHID'
,
'sequence'
),
'unique'
=>
true
,
),
),
)
+
parent
::
getConfiguration
();
}
public
function
generatePHID
()
{
return
PhabricatorPHID
::
generateNewPHID
(
PhragmentFragmentVersionPHIDType
::
TYPECONST
);
}
public
function
getURI
()
{
return
'/phragment/version/'
.
$this
->
getID
().
'/'
;
}
public
function
getFragment
()
{
return
$this
->
assertAttached
(
$this
->
fragment
);
}
public
function
attachFragment
(
PhragmentFragment
$fragment
)
{
return
$this
->
fragment
=
$fragment
;
}
public
function
getFile
()
{
return
$this
->
assertAttached
(
$this
->
file
);
}
public
function
attachFile
(
PhabricatorFile
$file
)
{
return
$this
->
file
=
$file
;
}
public
function
getCapabilities
()
{
return
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
);
}
public
function
getPolicy
(
$capability
)
{
return
$this
->
getFragment
()->
getPolicy
(
$capability
);
}
public
function
hasAutomaticCapability
(
$capability
,
PhabricatorUser
$viewer
)
{
return
$this
->
getFragment
()->
hasAutomaticCapability
(
$capability
,
$viewer
);
}
public
function
describeAutomaticCapability
(
$capability
)
{
return
$this
->
getFragment
()->
describeAutomaticCapability
(
$capability
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jun 29, 9:24 PM (1 d, 18 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
264744
Default Alt Text
PhragmentFragmentVersion.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment