Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2889323
FuelGridRowView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
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
Jan 19 2025, 12:00 (4 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1124329
Default Alt Text
FuelGridRowView.php (524 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment