mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-03 12:12:43 +01:00
0306eb70ed
Summary: Ref T8726. Some adapters now have a large number of fields, and we lost the sort-of-human-readable implicit ordering when fields were modularized. Instead, group and sort fields. Test Plan: {F603066} Reviewers: btrahan, chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T8726 Differential Revision: https://secure.phabricator.com/D13619
35 lines
810 B
PHP
35 lines
810 B
PHP
<?php
|
|
|
|
final class DiffusionCommitPackageOwnerHeraldField
|
|
extends DiffusionCommitHeraldField {
|
|
|
|
const FIELDCONST = 'diffusion.commit.package.owners';
|
|
|
|
public function getHeraldFieldName() {
|
|
return pht('Affected package owners');
|
|
}
|
|
|
|
public function getFieldGroupKey() {
|
|
return HeraldRelatedFieldGroup::FIELDGROUPKEY;
|
|
}
|
|
|
|
public function getHeraldFieldValue($object) {
|
|
$packages = $this->getAdapter()->loadAffectedPackages();
|
|
if (!$packages) {
|
|
return array();
|
|
}
|
|
|
|
$owners = PhabricatorOwnersOwner::loadAllForPackages($packages);
|
|
|
|
return mpull($owners, 'getUserPHID');
|
|
}
|
|
|
|
protected function getHeraldFieldStandardType() {
|
|
return self::STANDARD_PHID_LIST;
|
|
}
|
|
|
|
protected function getDatasource() {
|
|
return new PhabricatorProjectOrUserDatasource();
|
|
}
|
|
|
|
}
|