mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
28 lines
704 B
PHP
28 lines
704 B
PHP
|
<?php
|
||
|
|
||
|
final class DiffusionPreCommitContentPusherIsCommitterHeraldField
|
||
|
extends DiffusionPreCommitContentHeraldField {
|
||
|
|
||
|
const FIELDCONST = 'diffusion.pre.content.pusher.is-committer';
|
||
|
|
||
|
public function getHeraldFieldName() {
|
||
|
return pht('Pusher is committer');
|
||
|
}
|
||
|
|
||
|
public function getHeraldFieldValue($object) {
|
||
|
$pusher = $this->getAdapter()->getHookEngine()->getViewer()->getPHID();
|
||
|
$committer = $this->getAdapter()->getCommitterPHID();
|
||
|
|
||
|
return ($pusher === $committer);
|
||
|
}
|
||
|
|
||
|
protected function getHeraldFieldStandardConditions() {
|
||
|
return HeraldField::STANDARD_BOOL;
|
||
|
}
|
||
|
|
||
|
public function getHeraldFieldValueType($condition) {
|
||
|
return HeraldAdapter::VALUE_NONE;
|
||
|
}
|
||
|
|
||
|
}
|