Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/view/form/control/PHUIFormFreeformDateControl.php
12256 views
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
}
22
23