mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 03:12:41 +01:00
42 lines
893 B
PHP
42 lines
893 B
PHP
|
<?php
|
||
|
|
||
|
final class DifferentialRevisionIDField
|
||
|
extends DifferentialCustomField {
|
||
|
|
||
|
public function getFieldKey() {
|
||
|
return 'revisionID';
|
||
|
}
|
||
|
|
||
|
public function getFieldName() {
|
||
|
return pht('Differential Revision');
|
||
|
}
|
||
|
|
||
|
public function getFieldDescription() {
|
||
|
return pht(
|
||
|
'Ties commits to revisions and provides a permananent link between '.
|
||
|
'them.');
|
||
|
}
|
||
|
|
||
|
public function canDisableField() {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public function shouldAppearInCommitMessage() {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
public function shouldAllowEditInCommitMessage() {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public function parseValueFromCommitMessage($value) {
|
||
|
return DifferentialRevisionIDFieldSpecification::parseRevisionIDFromURI(
|
||
|
$value);
|
||
|
}
|
||
|
|
||
|
public function renderCommitMessageValue(array $handles) {
|
||
|
return PhabricatorEnv::getProductionURI('/D'.$this->getObject()->getID());
|
||
|
}
|
||
|
|
||
|
}
|