Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101092863
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
Wed, Feb 5, 16:32
Size
983 B
Mime Type
text/x-php
Expires
Fri, Feb 7, 16:32 (2 d)
Engine
blob
Format
Raw Data
Handle
24076111
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
PhabricatorObjectQuery
())
->
setViewer
(
$this
->
getViewer
())
->
withPHIDs
(
$phids
)
->
execute
();
// Reorder the objects in the input order.
$objects
=
array_select_keys
(
$objects
,
$phids
);
return
$objects
;
}
public
function
getTokenCounts
()
{
return
$this
->
tokenCounts
;
}
public
function
getQueryApplicationClass
()
{
return
'PhabricatorTokensApplication'
;
}
}
Event Timeline
Log In to Comment