Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101178350
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
Thu, Feb 6, 12:25
Size
508 B
Mime Type
text/x-php
Expires
Sat, Feb 8, 12:25 (2 d)
Engine
blob
Format
Raw Data
Handle
24106903
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