Page MenuHomec4science

PhabricatorFileEditField.php
No OneTemporary

File Metadata

Created
Sun, Sep 1, 15:35

PhabricatorFileEditField.php

<?php
final class PhabricatorFileEditField
extends PhabricatorEditField {
protected function newControl() {
return new PHUIFormFileControl();
}
protected function newHTTPParameterType() {
return new AphrontFileHTTPParameterType();
}
protected function newConduitParameterType() {
return new ConduitPHIDParameterType();
}
public function appendToForm(AphrontFormView $form) {
$form->setEncType('multipart/form-data');
return parent::appendToForm($form);
}
}

Event Timeline