Differential D19399 Diff 46416 src/applications/metamta/query/PhabricatorMetaMTAMailPropertiesQuery.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/metamta/query/PhabricatorMetaMTAMailPropertiesQuery.php
- This file was added.
| <?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 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->objectPHIDs !== null) { | |||||
| $where[] = qsprintf( | |||||
| $conn, | |||||
| 'objectPHID IN (%Ls)', | |||||
| $this->objectPHIDs); | |||||
| } | |||||
| return $where; | |||||
| } | |||||
| public function getQueryApplicationClass() { | |||||
| return 'PhabricatorMetaMTAApplication'; | |||||
| } | |||||
| } | |||||