Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F109726342
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
Wed, Apr 23, 03:59
Size
942 B
Mime Type
text/x-php
Expires
Fri, Apr 25, 03:59 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25728294
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
->
renderHTMLChildren
());
}
}
Event Timeline
Log In to Comment