Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98046838
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
Thu, Jan 9, 01:23
Size
807 B
Mime Type
text/x-php
Expires
Sat, Jan 11, 01:23 (2 d)
Engine
blob
Format
Raw Data
Handle
23502082
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
(),
'class'
=>
'image'
,
)).
'<div style="clear: both;">'
.
phutil_tag
(
'input'
,
array
(
'type'
=>
'checkbox'
,
'name'
=>
'default_image'
,
'class'
=>
'default-image'
,
'id'
=>
$id
,
)).
phutil_render_tag
(
'label'
,
array
(
'for'
=>
$id
,
),
'Use Default Image instead'
).
'</div>'
;
}
}
Event Timeline
Log In to Comment