1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-01 11:12:42 +01:00
phorge-phorge/src/applications/diffusion/herald/DiffusionCommitAffectedFilesHeraldField.php

25 lines
536 B
PHP
Raw Normal View History

<?php
final class DiffusionCommitAffectedFilesHeraldField
extends DiffusionCommitHeraldField {
const FIELDCONST = 'diffusion.commit.affected';
public function getHeraldFieldName() {
return pht('Affected files');
}
public function getFieldGroupKey() {
return DiffusionChangeHeraldFieldGroup::FIELDGROUPKEY;
}
public function getHeraldFieldValue($object) {
return $this->getAdapter()->loadAffectedPaths();
}
protected function getHeraldFieldStandardType() {
return self::STANDARD_TEXT_LIST;
}
}