Page MenuHomec4science

PHUIFormNumberControl.php
No OneTemporary

File Metadata

Created
Sun, Sep 15, 10:16

PHUIFormNumberControl.php

<?php
final class PHUIFormNumberControl extends AphrontFormControl {
protected function getCustomControlClass() {
return 'phui-form-number';
}
protected function renderInput() {
return javelin_tag(
'input',
array(
'type' => 'text',
'pattern' => '\d*',
'name' => $this->getName(),
'value' => $this->getValue(),
'disabled' => $this->getDisabled() ? 'disabled' : null,
'id' => $this->getID(),
));
}
}

Event Timeline