Page MenuHomec4science

PhabricatorStringListEditField.php
No OneTemporary

File Metadata

Created
Tue, Jun 18, 20:52

PhabricatorStringListEditField.php

<?php
final class PhabricatorStringListEditField
extends PhabricatorEditField {
protected function newControl() {
return new AphrontFormTextControl();
}
protected function getValueForControl() {
$value = $this->getValue();
return implode(', ', $value);
}
protected function newConduitParameterType() {
return new ConduitStringListParameterType();
}
protected function newHTTPParameterType() {
return new AphrontStringListHTTPParameterType();
}
}

Event Timeline