Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96257685
PhabricatorChatLogChannelQuery.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, Dec 24, 05:50
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Dec 26, 05:50 (2 d)
Engine
blob
Format
Raw Data
Handle
23149334
Attached To
rPH Phabricator
PhabricatorChatLogChannelQuery.php
View Options
<?php
final
class
PhabricatorChatLogChannelQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$channels
;
private
$channelIDs
;
public
function
withChannelNames
(
array
$channels
)
{
$this
->
channels
=
$channels
;
return
$this
;
}
public
function
withIDs
(
array
$channel_ids
)
{
$this
->
channelIDs
=
$channel_ids
;
return
$this
;
}
public
function
loadPage
()
{
$table
=
new
PhabricatorChatLogChannel
();
$conn_r
=
$table
->
establishConnection
(
'r'
);
$data
=
queryfx_all
(
$conn_r
,
'SELECT * FROM %T c %Q %Q %Q'
,
$table
->
getTableName
(),
$this
->
buildWhereClause
(
$conn_r
),
$this
->
buildOrderClause
(
$conn_r
),
$this
->
buildLimitClause
(
$conn_r
));
$logs
=
$table
->
loadAllFromArray
(
$data
);
return
$logs
;
}
private
function
buildWhereClause
(
$conn_r
)
{
$where
=
array
();
$where
[]
=
$this
->
buildPagingClause
(
$conn_r
);
if
(
$this
->
channelIDs
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'id IN (%Ld)'
,
$this
->
channelIDs
);
}
if
(
$this
->
channels
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'channelName IN (%Ls)'
,
$this
->
channels
);
}
return
$this
->
formatWhereClause
(
$where
);
}
}
Event Timeline
Log In to Comment