Page MenuHomePhorge

FuelGridRowView.php
No OneTemporary

FuelGridRowView.php

<?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

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)

Event Timeline