Page MenuHomec4science

AphrontFormFileControl.php
No OneTemporary

File Metadata

Created
Sun, Aug 11, 16:27

AphrontFormFileControl.php

<?php
final class AphrontFormFileControl extends AphrontFormControl {
protected function getCustomControlClass() {
return 'aphront-form-file-text';
}
protected function renderInput() {
return phutil_tag(
'input',
array(
'type' => 'file',
'name' => $this->getName(),
'disabled' => $this->getDisabled() ? 'disabled' : null,
));
}
}

Event Timeline