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