Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97884492
PhabricatorProjectColumnPosition.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, Jan 7, 04:29
Size
2 KB
Mime Type
text/x-php
Expires
Thu, Jan 9, 04:29 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23429476
Attached To
rPH Phabricator
PhabricatorProjectColumnPosition.php
View Options
<?php
final
class
PhabricatorProjectColumnPosition
extends
PhabricatorProjectDAO
implements
PhabricatorPolicyInterface
{
protected
$boardPHID
;
protected
$columnPHID
;
protected
$objectPHID
;
protected
$sequence
;
private
$column
=
self
::
ATTACHABLE
;
private
$viewSequence
=
0
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_TIMESTAMPS
=>
false
,
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'sequence'
=>
'uint32'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'boardPHID'
=>
array
(
'columns'
=>
array
(
'boardPHID'
,
'columnPHID'
,
'objectPHID'
),
'unique'
=>
true
,
),
'objectPHID'
=>
array
(
'columns'
=>
array
(
'objectPHID'
,
'boardPHID'
),
),
'boardPHID_2'
=>
array
(
'columns'
=>
array
(
'boardPHID'
,
'columnPHID'
,
'sequence'
),
),
),
)
+
parent
::
getConfiguration
();
}
public
function
getColumn
()
{
return
$this
->
assertAttached
(
$this
->
column
);
}
public
function
attachColumn
(
PhabricatorProjectColumn
$column
)
{
$this
->
column
=
$column
;
return
$this
;
}
public
function
setViewSequence
(
$view_sequence
)
{
$this
->
viewSequence
=
$view_sequence
;
return
$this
;
}
public
function
getOrderingKey
()
{
// We're ordering both real positions and "virtual" positions which we have
// created but not saved yet.
// Low sequence numbers go above high sequence numbers. Virtual positions
// will have sequence number 0.
// High virtual sequence numbers go above low virtual sequence numbers.
// The layout engine gets objects in ID order, and this puts them in
// reverse ID order.
// High IDs go above low IDs.
// Broadly, this collectively makes newly added stuff float to the top.
return
sprintf
(
'~%012d%012d%012d'
,
$this
->
getSequence
(),
((
1
<<
31
)
-
$this
->
viewSequence
),
((
1
<<
31
)
-
$this
->
getID
()));
}
/* -( PhabricatorPolicyInterface )----------------------------------------- */
public
function
getCapabilities
()
{
return
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
);
}
public
function
getPolicy
(
$capability
)
{
switch
(
$capability
)
{
case
PhabricatorPolicyCapability
::
CAN_VIEW
:
return
PhabricatorPolicies
::
getMostOpenPolicy
();
}
}
public
function
hasAutomaticCapability
(
$capability
,
PhabricatorUser
$viewer
)
{
return
false
;
}
}
Event Timeline
Log In to Comment