Generate file attachment transactions for explicit Remarkup attachments on common...
[phabricator.git] / src / view / form / control / PHUIFormFreeformDateControl.php
blob74a32d2e0aa0692d30022bfa1059e530dd52ef62
1 <?php
3 final class PHUIFormFreeformDateControl extends AphrontFormControl {
5 protected function getCustomControlClass() {
6 return 'aphront-form-control-text';
9 protected function renderInput() {
10 return javelin_tag(
11 'input',
12 array(
13 'type' => 'text',
14 'name' => $this->getName(),
15 'value' => $this->getValue(),
16 'disabled' => $this->getDisabled() ? 'disabled' : null,
17 'id' => $this->getID(),
18 ));