mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-16 03:42:41 +01:00
46 lines
938 B
PHP
46 lines
938 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* This field doesn't do anything, it just parses the "git-svn-id" field which
|
||
|
* `git svn` inserts into commit messages so that we don't end up mangling
|
||
|
* some other field.
|
||
|
*/
|
||
|
final class DifferentialGitSVNIDField
|
||
|
extends DifferentialCustomField {
|
||
|
|
||
|
public function getFieldKey() {
|
||
|
return 'differential:git-svn-id';
|
||
|
}
|
||
|
|
||
|
public function getFieldKeyForConduit() {
|
||
|
return 'gitSVNID';
|
||
|
}
|
||
|
|
||
|
public function getFieldName() {
|
||
|
return pht('git-svn-id');
|
||
|
}
|
||
|
|
||
|
public function getFieldDescription() {
|
||
|
return pht(
|
||
|
'Parses the "git-svn-id" field which Git/SVN can inject into commit '.
|
||
|
'messages.');
|
||
|
}
|
||
|
|
||
|
public function canDisableField() {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public function shouldAppearInCommitMessage() {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
public function shouldAllowEditInCommitMessage() {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public function renderCommitMessageValue(array $handles) {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
}
|