Viewing File: /home/ubuntu/code_review/phabricator/src/view/fuel/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);
  }

}
Back to Directory File Manager