Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92296053
PhabricatorCalendarExternalInviteeQuery.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, Nov 19, 04:27
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Nov 21, 04:27 (2 d)
Engine
blob
Format
Raw Data
Handle
22415894
Attached To
rPH Phabricator
PhabricatorCalendarExternalInviteeQuery.php
View Options
<?php
final
class
PhabricatorCalendarExternalInviteeQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$ids
;
private
$phids
;
private
$names
;
public
function
withIDs
(
array
$ids
)
{
$this
->
ids
=
$ids
;
return
$this
;
}
public
function
withPHIDs
(
array
$phids
)
{
$this
->
phids
=
$phids
;
return
$this
;
}
public
function
withNames
(
array
$names
)
{
$this
->
names
=
$names
;
return
$this
;
}
public
function
newResultObject
()
{
return
new
PhabricatorCalendarExternalInvitee
();
}
protected
function
loadPage
()
{
return
$this
->
loadStandardPage
(
$this
->
newResultObject
());
}
protected
function
buildWhereClauseParts
(
AphrontDatabaseConnection
$conn
)
{
$where
=
parent
::
buildWhereClauseParts
(
$conn
);
if
(
$this
->
ids
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'id IN (%Ld)'
,
$this
->
ids
);
}
if
(
$this
->
phids
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'phid IN (%Ls)'
,
$this
->
phids
);
}
if
(
$this
->
names
!==
null
)
{
$name_indexes
=
array
();
foreach
(
$this
->
names
as
$name
)
{
$name_indexes
[]
=
PhabricatorHash
::
digestForIndex
(
$name
);
}
$where
[]
=
qsprintf
(
$conn
,
'nameIndex IN (%Ls)'
,
$name_indexes
);
}
return
$where
;
}
public
function
getQueryApplicationClass
()
{
return
'PhabricatorCalendarApplication'
;
}
}
Event Timeline
Log In to Comment