Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/phid/DifferentialChangesetPHIDType.php
- This file was added.
| <?php | |||||
| final class DifferentialChangesetPHIDType extends PhabricatorPHIDType { | |||||
| const TYPECONST = 'DCNG'; | |||||
| public function getTypeName() { | |||||
| return pht('Differential Changeset'); | |||||
| } | |||||
| public function newObject() { | |||||
| return new DifferentialChangeset(); | |||||
| } | |||||
| public function getPHIDTypeApplicationClass() { | |||||
| return 'PhabricatorDifferentialApplication'; | |||||
| } | |||||
| protected function buildQueryForObjects( | |||||
| PhabricatorObjectQuery $query, | |||||
| array $phids) { | |||||
| return id(new DifferentialChangesetQuery()) | |||||
| ->withPHIDs($phids); | |||||
| } | |||||
| public function loadHandles( | |||||
| PhabricatorHandleQuery $query, | |||||
| array $handles, | |||||
| array $objects) { | |||||
| foreach ($handles as $phid => $handle) { | |||||
| $changeset = $objects[$phid]; | |||||
| $id = $changeset->getID(); | |||||
| $handle->setName(pht('Changeset %d', $id)); | |||||
| } | |||||
| } | |||||
| } | |||||