mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 11:22:40 +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
24 lines
542 B
PHP
24 lines
542 B
PHP
<?php
|
|
|
|
final class DifferentialDiffAffectedFilesHeraldField
|
|
extends DifferentialDiffHeraldField {
|
|
|
|
const FIELDCONST = 'differential.diff.affected';
|
|
|
|
public function getHeraldFieldName() {
|
|
return pht('Affected files');
|
|
}
|
|
|
|
public function getFieldGroupKey() {
|
|
return DifferentialChangeHeraldFieldGroup::FIELDGROUPKEY;
|
|
}
|
|
|
|
public function getHeraldFieldValue($object) {
|
|
return $this->getAdapter()->loadAffectedPaths();
|
|
}
|
|
|
|
protected function getHeraldFieldStandardType() {
|
|
return self::STANDARD_TEXT_LIST;
|
|
}
|
|
|
|
}
|