Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98086071
DifferentialTitleFieldSpecification.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
Thu, Jan 9, 15:28
Size
2 KB
Mime Type
text/x-php
Expires
Sat, Jan 11, 15:28 (2 d)
Engine
blob
Format
Raw Data
Handle
23501648
Attached To
rPH Phabricator
DifferentialTitleFieldSpecification.php
View Options
<?php
final
class
DifferentialTitleFieldSpecification
extends
DifferentialFreeformFieldSpecification
{
private
$title
;
private
$error
=
true
;
public
function
shouldAppearOnEdit
()
{
return
true
;
}
protected
function
didSetRevision
()
{
$this
->
title
=
$this
->
getRevision
()->
getTitle
();
}
public
function
setValueFromRequest
(
AphrontRequest
$request
)
{
$this
->
title
=
$request
->
getStr
(
'title'
);
$this
->
error
=
null
;
return
$this
;
}
public
function
renderEditControl
()
{
return
id
(
new
AphrontFormTextAreaControl
())
->
setLabel
(
'Title'
)
->
setName
(
'title'
)
->
setHeight
(
AphrontFormTextAreaControl
::
HEIGHT_VERY_SHORT
)
->
setError
(
$this
->
error
)
->
setValue
(
$this
->
title
);
}
public
function
shouldExtractMentions
()
{
return
true
;
}
public
function
willWriteRevision
(
DifferentialRevisionEditor
$editor
)
{
$this
->
getRevision
()->
setTitle
(
$this
->
title
);
}
public
function
validateField
()
{
if
(!
strlen
(
$this
->
title
))
{
$this
->
error
=
'Required'
;
throw
new
DifferentialFieldValidationException
(
"You must provide a title."
);
}
}
public
function
shouldAppearOnCommitMessage
()
{
return
true
;
}
public
function
getCommitMessageKey
()
{
return
'title'
;
}
public
function
setValueFromParsedCommitMessage
(
$value
)
{
$this
->
title
=
$value
;
return
$this
;
}
public
function
shouldOverwriteWhenCommitMessageIsEdited
()
{
return
true
;
}
public
function
renderLabelForCommitMessage
()
{
return
'Title'
;
}
public
function
renderValueForCommitMessage
(
$is_edit
)
{
return
$this
->
title
;
}
public
function
parseValueFromCommitMessage
(
$value
)
{
return
preg_replace
(
'/
\s
*
\n\s
*/'
,
' '
,
$value
);
}
public
function
shouldAppearOnRevisionList
()
{
return
true
;
}
public
function
renderHeaderForRevisionList
()
{
return
'Revision'
;
}
public
function
getColumnClassForRevisionList
()
{
return
'wide pri'
;
}
public
function
renderValueForRevisionList
(
DifferentialRevision
$revision
)
{
return
phutil_tag
(
'a'
,
array
(
'href'
=>
'/D'
.
$revision
->
getID
(),
),
$revision
->
getTitle
());
}
}
Event Timeline
Log In to Comment