Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F987643
DifferentialTitleFieldSpecification.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
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
());
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jun 18, 6:39 PM (1 d, 17 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
238243
Default Alt Text
DifferentialTitleFieldSpecification.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment