1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-21 17:58:47 +02:00
phorge-phorge/src/applications/diffusion/herald/DiffusionCommitMessageHeraldField.php

21 lines
425 B
PHP
Raw Normal View History

<?php
final class DiffusionCommitMessageHeraldField
extends DiffusionCommitHeraldField {
const FIELDCONST = 'diffusion.commit.message';
public function getHeraldFieldName() {
return pht('Commit message');
}
public function getHeraldFieldValue($object) {
return $object->getCommitData()->getCommitMessage();
}
protected function getHeraldFieldStandardType() {
return self::STANDARD_TEXT;
}
}