Page MenuHomePhorge

DiffusionPathQuery.php
No OneTemporary

DiffusionPathQuery.php

<?php
final class DiffusionPathQuery extends Phobject {
private $pathIDs;
public function withPathIDs(array $path_ids) {
$this->pathIDs = $path_ids;
return $this;
}
public function execute() {
$conn = id(new PhabricatorRepository())->establishConnection('r');
$where = $this->buildWhereClause($conn);
$results = queryfx_all(
$conn,
'SELECT * FROM %T %Q',
PhabricatorRepository::TABLE_PATH,
$where);
return ipull($results, null, 'id');
}
protected function buildWhereClause(AphrontDatabaseConnection $conn) {
$where = array();
if ($this->pathIDs) {
$where[] = qsprintf(
$conn,
'id IN (%Ld)',
$this->pathIDs);
}
if ($where) {
return qsprintf($conn, 'WHERE %LA', $where);
} else {
return qsprintf($conn, '');
}
}
}

File Metadata

Mime Type
text/x-php
Expires
Thu, Mar 27, 01:08 (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1132621
Default Alt Text
DiffusionPathQuery.php (851 B)

Event Timeline