Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F114830717
PhluxVariableQuery.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, May 27, 23:52
Size
1 KB
Mime Type
text/x-php
Expires
Thu, May 29, 23:52 (2 d)
Engine
blob
Format
Raw Data
Handle
26434645
Attached To
rPH Phabricator
PhluxVariableQuery.php
View Options
<?php
final
class
PhluxVariableQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$keys
;
private
$phids
;
public
function
withPHIDs
(
array
$phids
)
{
$this
->
phids
=
$phids
;
return
$this
;
}
public
function
withKeys
(
array
$keys
)
{
$this
->
keys
=
$keys
;
return
$this
;
}
protected
function
loadPage
()
{
$table
=
new
PhluxVariable
();
$conn_r
=
$table
->
establishConnection
(
'r'
);
$rows
=
queryfx_all
(
$conn_r
,
'SELECT * FROM %T %Q %Q %Q'
,
$table
->
getTableName
(),
$this
->
buildWhereClause
(
$conn_r
),
$this
->
buildOrderClause
(
$conn_r
),
$this
->
buildLimitClause
(
$conn_r
));
return
$table
->
loadAllFromArray
(
$rows
);
}
private
function
buildWhereClause
(
AphrontDatabaseConnection
$conn_r
)
{
$where
=
array
();
$where
[]
=
$this
->
buildPagingClause
(
$conn_r
);
if
(
$this
->
keys
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'variableKey IN (%Ls)'
,
$this
->
keys
);
}
if
(
$this
->
phids
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'phid IN (%Ls)'
,
$this
->
phids
);
}
return
$this
->
formatWhereClause
(
$where
);
}
protected
function
getPagingColumn
()
{
return
'variableKey'
;
}
protected
function
getPagingValue
(
$result
)
{
return
$result
->
getVariableKey
();
}
protected
function
getReversePaging
()
{
return
true
;
}
}
Event Timeline
Log In to Comment