Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1481597
DifferentialTitleCommitMessageField.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
886 B
Referenced Files
None
Subscribers
None
DifferentialTitleCommitMessageField.php
View Options
<?php
final
class
DifferentialTitleCommitMessageField
extends
DifferentialCommitMessageField
{
const
FIELDKEY
=
'title'
;
public
function
getFieldName
()
{
return
pht
(
'Title'
);
}
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.'
));
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, Jul 12, 3:59 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
346332
Default Alt Text
DifferentialTitleCommitMessageField.php (886 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment