2015-07-08 21:26:57 +02:00
|
|
|
<?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);
|
|
|
|
}
|
|
|
|
|
2015-07-16 23:11:44 +02:00
|
|
|
protected function getHeraldFieldStandardType() {
|
2015-07-08 21:26:57 +02:00
|
|
|
return HeraldField::STANDARD_BOOL;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|