Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96626313
PHUIFormFreeformDateControl.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Dec 29, 04:27
Size
508 B
Mime Type
text/x-php
Expires
Tue, Dec 31, 04:27 (2 d)
Engine
blob
Format
Raw Data
Handle
23218558
Attached To
rPH Phabricator
PHUIFormFreeformDateControl.php
View Options
<?php
final
class
PHUIFormFreeformDateControl
extends
AphrontFormControl
{
protected
function
getCustomControlClass
()
{
return
'aphront-form-control-text'
;
}
protected
function
renderInput
()
{
return
javelin_tag
(
'input'
,
array
(
'type'
=>
'text'
,
'name'
=>
$this
->
getName
(),
'value'
=>
$this
->
getValue
(),
'disabled'
=>
$this
->
getDisabled
()
?
'disabled'
:
null
,
'id'
=>
$this
->
getID
(),
));
}
}
Event Timeline
Log In to Comment