1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-04 04:32:43 +01:00
phorge-phorge/src/applications/diffusion/herald/DiffusionPreCommitContentBranchesHeraldField.php

21 lines
440 B
PHP
Raw Normal View History

<?php
final class DiffusionPreCommitContentBranchesHeraldField
extends DiffusionPreCommitContentHeraldField {
const FIELDCONST = 'diffusion.pre.commit.branches';
public function getHeraldFieldName() {
return pht('Branches');
}
public function getHeraldFieldValue($object) {
return $this->getAdapter()->getBranches();
}
protected function getHeraldFieldStandardType() {
return self::STANDARD_TEXT_LIST;
}
}