Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98146973
DifferentialTitleCommitMessageField.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
Fri, Jan 10, 07:14
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Jan 12, 07:14 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23499970
Attached To
rPH Phabricator
DifferentialTitleCommitMessageField.php
View Options
<?php
final
class
DifferentialTitleCommitMessageField
extends
DifferentialCommitMessageField
{
const
FIELDKEY
=
'title'
;
public
function
getFieldName
()
{
return
pht
(
'Title'
);
}
public
function
getFieldOrder
()
{
return
1000
;
}
public
static
function
getDefaultTitle
()
{
return
pht
(
'<<Replace this line with your revision title>'
);
}
public
function
parseFieldValue
(
$value
)
{
if
(
$value
===
self
::
getDefaultTitle
())
{
$this
->
raiseParseException
(
pht
(
'Replace the default title line with a human-readable revision '
.
'title which describes the changes you are making.'
));
}
return
parent
::
parseFieldValue
(
$value
);
}
public
function
validateFieldValue
(
$value
)
{
if
(!
strlen
(
$value
))
{
$this
->
raiseValidationException
(
pht
(
'You must provide a revision title in the first line '
.
'of your commit message.'
));
}
}
public
function
readFieldValueFromObject
(
DifferentialRevision
$revision
)
{
$value
=
$revision
->
getTitle
();
if
(!
strlen
(
$value
))
{
return
self
::
getDefaultTitle
();
}
return
$value
;
}
}
Event Timeline
Log In to Comment