2015-07-07 20:53:17 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class DiffusionCommitAutocloseHeraldField
|
|
|
|
extends DiffusionCommitHeraldField {
|
|
|
|
|
|
|
|
const FIELDCONST = 'diffusion.commit.autoclose';
|
|
|
|
|
|
|
|
public function getHeraldFieldName() {
|
|
|
|
return pht('Commit is on autoclose branch');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getHeraldFieldValue($object) {
|
|
|
|
return $object->getRepository()->shouldAutocloseCommit($object);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getHeraldFieldConditions() {
|
|
|
|
return array(
|
|
|
|
HeraldAdapter::CONDITION_UNCONDITIONALLY,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getHeraldFieldValueType($condition) {
|
2015-07-16 23:12:44 +02:00
|
|
|
return new HeraldEmptyFieldValue();
|
2015-07-07 20:53:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|