Page MenuHomec4science

ReleephSummaryFieldSpecification.php
No OneTemporary

File Metadata

Created
Sat, Jan 11, 18:32

ReleephSummaryFieldSpecification.php

<?php
final class ReleephSummaryFieldSpecification
extends ReleephFieldSpecification {
const MAX_SUMMARY_LENGTH = 60;
public function getName() {
return 'Summary';
}
public function getStorageKey() {
return 'summary';
}
private $error = false;
public function renderEditControl(AphrontRequest $request) {
$summary = $request->getStr('summary', $this->getValue());
return id(new AphrontFormTextControl())
->setLabel('Summary')
->setName('summary')
->setError($this->error)
->setValue($summary)
->setCaption(
'Leave this blank to use the original commit title');
}
public function renderHelpForArcanist() {
$text =
"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 = 'Too long!';
throw new ReleephFieldParseException(
$this, sprintf(
'Please keep your summary to under %d characters.',
self::MAX_SUMMARY_LENGTH));
}
}
}

Event Timeline