mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 03:12:41 +01:00
22 lines
444 B
PHP
22 lines
444 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorColumnsEditField
|
||
|
extends PhabricatorPHIDListEditField {
|
||
|
|
||
|
protected function newControl() {
|
||
|
$control = id(new AphrontFormHandlesControl());
|
||
|
$control->setIsInvisible(true);
|
||
|
|
||
|
return $control;
|
||
|
}
|
||
|
|
||
|
protected function newHTTPParameterType() {
|
||
|
return new AphrontPHIDListHTTPParameterType();
|
||
|
}
|
||
|
|
||
|
protected function newConduitParameterType() {
|
||
|
return new ConduitColumnsParameterType();
|
||
|
}
|
||
|
|
||
|
}
|