Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F452625
FuelGridRowView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
524 B
Referenced Files
None
Subscribers
None
FuelGridRowView.php
View Options
<?php
final
class
FuelGridRowView
extends
FuelView
{
private
$cells
=
array
();
public
function
newCell
()
{
$cell
=
new
FuelGridCellView
();
$this
->
cells
[]
=
$cell
;
return
$cell
;
}
public
function
render
()
{
$cells
=
$this
->
cells
;
$classes
=
array
();
$classes
[]
=
'fuel-grid-row'
;
$classes
[]
=
sprintf
(
'fuel-grid-cell-count-%d'
,
count
(
$cells
));
return
phutil_tag
(
'div'
,
array
(
'class'
=>
implode
(
' '
,
$classes
),
),
$cells
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 5, 12:52 AM (1 d, 10 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
68785
Default Alt Text
FuelGridRowView.php (524 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment