Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92733799
PhabricatorTokenReceiverQuery.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
Sat, Nov 23, 06:21
Size
877 B
Mime Type
text/x-php
Expires
Mon, Nov 25, 06:21 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22500445
Attached To
rPH Phabricator
PhabricatorTokenReceiverQuery.php
View Options
<?php
final
class
PhabricatorTokenReceiverQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$tokenCounts
;
protected
function
loadPage
()
{
$table
=
new
PhabricatorTokenCount
();
$conn_r
=
$table
->
establishConnection
(
'r'
);
$rows
=
queryfx_all
(
$conn_r
,
'SELECT objectPHID, tokenCount FROM %T ORDER BY tokenCount DESC'
,
$table
->
getTableName
());
$this
->
tokenCounts
=
ipull
(
$rows
,
'tokenCount'
,
'objectPHID'
);
return
ipull
(
$rows
,
'objectPHID'
);
}
public
function
willFilterPage
(
array
$phids
)
{
$objects
=
id
(
new
PhabricatorObjectHandleData
(
$phids
))
->
setViewer
(
$this
->
getViewer
())
->
loadObjects
();
// Reorder the objects in the input order.
$objects
=
array_select_keys
(
$objects
,
$phids
);
return
$objects
;
}
public
function
getTokenCounts
()
{
return
$this
->
tokenCounts
;
}
}
Event Timeline
Log In to Comment