Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93102320
PhabricatorProjectColumnPositionQuery.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, 05:46
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Nov 28, 05:46 (2 d)
Engine
blob
Format
Raw Data
Handle
22553570
Attached To
rPH Phabricator
PhabricatorProjectColumnPositionQuery.php
View Options
<?php
final
class
PhabricatorProjectColumnPositionQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$ids
;
private
$boardPHIDs
;
private
$objectPHIDs
;
private
$columnPHIDs
;
public
function
withIDs
(
array
$ids
)
{
$this
->
ids
=
$ids
;
return
$this
;
}
public
function
withBoardPHIDs
(
array
$board_phids
)
{
$this
->
boardPHIDs
=
$board_phids
;
return
$this
;
}
public
function
withObjectPHIDs
(
array
$object_phids
)
{
$this
->
objectPHIDs
=
$object_phids
;
return
$this
;
}
public
function
withColumnPHIDs
(
array
$column_phids
)
{
$this
->
columnPHIDs
=
$column_phids
;
return
$this
;
}
public
function
newResultObject
()
{
return
new
PhabricatorProjectColumnPosition
();
}
protected
function
loadPage
()
{
return
$this
->
loadStandardPage
(
$this
->
newResultObject
());
}
protected
function
buildWhereClauseParts
(
AphrontDatabaseConnection
$conn
)
{
$where
=
array
();
if
(
$this
->
ids
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'id IN (%Ld)'
,
$this
->
ids
);
}
if
(
$this
->
boardPHIDs
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'boardPHID IN (%Ls)'
,
$this
->
boardPHIDs
);
}
if
(
$this
->
objectPHIDs
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'objectPHID IN (%Ls)'
,
$this
->
objectPHIDs
);
}
if
(
$this
->
columnPHIDs
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'columnPHID IN (%Ls)'
,
$this
->
columnPHIDs
);
}
return
$where
;
}
public
function
getQueryApplicationClass
()
{
return
'PhabricatorProjectApplication'
;
}
}
Event Timeline
Log In to Comment