Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F452681
FuelGridView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
656 B
Referenced Files
None
Subscribers
None
FuelGridView.php
View Options
<?php
final
class
FuelGridView
extends
FuelComponentView
{
private
$rows
=
array
();
public
function
newRow
()
{
$row
=
new
FuelGridRowView
();
$this
->
rows
[]
=
$row
;
return
$row
;
}
public
function
render
()
{
require_celerity_resource
(
'fuel-grid-css'
);
$rows
=
$this
->
rows
;
$body
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'fuel-grid-body'
,
),
$rows
);
$grid
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'fuel-grid'
,
),
$body
);
return
$this
->
newComponentTag
(
'div'
,
array
(
'class'
=>
'fuel-grid-component'
,
),
$grid
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 5, 1:00 AM (1 d, 10 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
68812
Default Alt Text
FuelGridView.php (656 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment