mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-16 11:52:40 +01:00
17 lines
320 B
PHP
17 lines
320 B
PHP
|
<?php
|
||
|
|
||
|
final class DifferentialRevertPlanCommitMessageField
|
||
|
extends DifferentialCommitMessageField {
|
||
|
|
||
|
const FIELDKEY = 'revertPlan';
|
||
|
|
||
|
public function getFieldName() {
|
||
|
return pht('Revert Plan');
|
||
|
}
|
||
|
|
||
|
public function isFieldEnabled() {
|
||
|
return $this->isCustomFieldEnabled('phabricator:revert-plan');
|
||
|
}
|
||
|
|
||
|
}
|