Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F453251
DifferentialGitSVNIDField.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
940 B
Referenced Files
None
Subscribers
None
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
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 5, 2:41 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
69385
Default Alt Text
DifferentialGitSVNIDField.php (940 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment