Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F118558325
AphrontFormImageControl.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
Fri, Jun 20, 23:00
Size
770 B
Mime Type
text/x-php
Expires
Sun, Jun 22, 23:00 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
26887937
Attached To
rPH Phabricator
AphrontFormImageControl.php
View Options
<?php
final
class
AphrontFormImageControl
extends
AphrontFormControl
{
protected
function
getCustomControlClass
()
{
return
'aphront-form-control-image'
;
}
protected
function
renderInput
()
{
$id
=
celerity_generate_unique_node_id
();
return
phutil_tag
(
'input'
,
array
(
'type'
=>
'file'
,
'name'
=>
$this
->
getName
(),
)).
'<div style="clear: both;">'
.
phutil_tag
(
'input'
,
array
(
'type'
=>
'checkbox'
,
'name'
=>
'default_image'
,
'class'
=>
'default-image'
,
'id'
=>
$id
,
)).
phutil_tag
(
'label'
,
array
(
'for'
=>
$id
,
),
'Use Default Image instead'
).
'</div>'
;
}
}
Event Timeline
Log In to Comment