Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100703802
DifferentialGitSVNIDField.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Feb 2, 01:06
Size
940 B
Mime Type
text/x-php
Expires
Tue, Feb 4, 01:06 (2 d)
Engine
blob
Format
Raw Data
Handle
24002199
Attached To
rPH Phabricator
DifferentialGitSVNIDField.php
View Options
<?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 "%s" field which Git/SVN can inject into commit messages.'
,
'git-svn-id'
);
}
public
function
canDisableField
()
{
return
false
;
}
public
function
shouldAppearInCommitMessage
()
{
return
true
;
}
public
function
shouldAllowEditInCommitMessage
()
{
return
false
;
}
public
function
renderCommitMessageValue
(
array
$handles
)
{
return
null
;
}
}
Event Timeline
Log In to Comment