Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F547669
PhabricatorMetaMTAMailPropertiesQuery.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
979 B
Referenced Files
None
Subscribers
None
PhabricatorMetaMTAMailPropertiesQuery.php
View Options
<?php
final
class
PhabricatorMetaMTAMailPropertiesQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$ids
;
private
$objectPHIDs
;
public
function
withIDs
(
array
$ids
)
{
$this
->
ids
=
$ids
;
return
$this
;
}
public
function
withObjectPHIDs
(
array
$object_phids
)
{
$this
->
objectPHIDs
=
$object_phids
;
return
$this
;
}
public
function
newResultObject
()
{
return
new
PhabricatorMetaMTAMailProperties
();
}
protected
function
buildWhereClauseParts
(
AphrontDatabaseConnection
$conn
)
{
$where
=
parent
::
buildWhereClauseParts
(
$conn
);
if
(
$this
->
ids
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'id IN (%Ld)'
,
$this
->
ids
);
}
if
(
$this
->
objectPHIDs
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'objectPHID IN (%Ls)'
,
$this
->
objectPHIDs
);
}
return
$where
;
}
public
function
getQueryApplicationClass
()
{
return
PhabricatorMetaMTAApplication
::
class
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 1:36 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
120868
Default Alt Text
PhabricatorMetaMTAMailPropertiesQuery.php (979 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment