[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/view/form/control/ -> PHUIFormFreeformDateControl.php (source)

   1  <?php
   2  
   3  final class PHUIFormFreeformDateControl extends AphrontFormControl {
   4  
   5    protected function getCustomControlClass() {
   6      return 'aphront-form-control-text';
   7    }
   8  
   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        ));
  19    }
  20  
  21  }


Generated: Sun Nov 30 09:20:46 2014 Cross-referenced by PHPXref 0.7.1