Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97797164
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
Mon, Jan 6, 11:55
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Jan 8, 11:55 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23452749
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
;
}
public
function
getQueryApplicationClass
()
{
return
'PhabricatorPhluxApplication'
;
}
}
Event Timeline
Log In to Comment