Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93032106
AphrontFormLayoutView.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
Mon, Nov 25, 16:55
Size
938 B
Mime Type
text/x-php
Expires
Wed, Nov 27, 16:55 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22561841
Attached To
rPH Phabricator
AphrontFormLayoutView.php
View Options
<?php
/**
* This provides the layout of an AphrontFormView without actually providing
* the <form /> tag. Useful on its own for creating forms in other forms (like
* dialogs) or forms which aren't submittable.
*/
final
class
AphrontFormLayoutView
extends
AphrontView
{
private
$backgroundShading
;
private
$padded
;
public
function
setBackgroundShading
(
$shading
)
{
$this
->
backgroundShading
=
$shading
;
return
$this
;
}
public
function
setPadded
(
$padded
)
{
$this
->
padded
=
$padded
;
return
$this
;
}
public
function
render
()
{
$classes
=
array
(
'aphront-form-view'
);
if
(
$this
->
backgroundShading
)
{
$classes
[]
=
'aphront-form-view-shaded'
;
}
if
(
$this
->
padded
)
{
$classes
[]
=
'aphront-form-view-padded'
;
}
$classes
=
implode
(
' '
,
$classes
);
return
phutil_tag
(
'div'
,
array
(
'class'
=>
$classes
,
),
$this
->
renderChildren
());
}
}
Event Timeline
Log In to Comment