Page MenuHomestyx hydra

FuelGridCellView.php
No OneTemporary

FuelGridCellView.php

<?php
final class FuelGridCellView
extends FuelComponentView {
private $content;
public function setContent($content) {
$this->content = $content;
return $this;
}
public function getContent() {
return $this->content;
}
public function render() {
$content = $this->getContent();
return $this->newComponentTag(
'div',
array(
'class' => 'fuel-grid-cell',
),
$content);
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, May 21, 1:30 PM (1 d, 18 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
124679
Default Alt Text
FuelGridCellView.php (445 B)

Event Timeline