Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107179717
ReleephSummaryFieldSpecification.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
Sat, Apr 5, 17:12
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Apr 7, 17:12 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25367119
Attached To
rPH Phabricator
ReleephSummaryFieldSpecification.php
View Options
<?php
final
class
ReleephSummaryFieldSpecification
extends
ReleephFieldSpecification
{
const
MAX_SUMMARY_LENGTH
=
60
;
public
function
shouldAppearInPropertyView
()
{
return
false
;
}
public
function
getFieldKey
()
{
return
'summary'
;
}
public
function
getName
()
{
return
'Summary'
;
}
public
function
getStorageKey
()
{
return
'summary'
;
}
private
$error
=
false
;
public
function
renderEditControl
(
array
$handles
)
{
return
id
(
new
AphrontFormTextControl
())
->
setLabel
(
'Summary'
)
->
setName
(
'summary'
)
->
setError
(
$this
->
error
)
->
setValue
(
$this
->
getValue
())
->
setCaption
(
pht
(
'Leave this blank to use the original commit title'
));
}
public
function
renderHelpForArcanist
()
{
$text
=
pht
(
"A one-line title summarizing this request. "
.
'Leave blank to use the original commit title.'
).
"
\n
"
;
return
phutil_console_wrap
(
$text
,
8
);
}
public
function
validate
(
$summary
)
{
if
(
$summary
&&
strlen
(
$summary
)
>
self
::
MAX_SUMMARY_LENGTH
)
{
$this
->
error
=
pht
(
'Too long!'
);
throw
new
ReleephFieldParseException
(
$this
,
pht
(
'Please keep your summary to under %d characters.'
,
self
::
MAX_SUMMARY_LENGTH
));
}
}
}
Event Timeline
Log In to Comment