You are here

FrxTable.inc in Forena Reports 7.2

Same filename and directory in other branches
  1. 6.2 templates/FrxTable.inc
  2. 7.3 templates/FrxTable.inc

File

templates/FrxTable.inc
View source
<?php

require_once 'FrxTemplate.inc';
class FrxTable extends FrxTemplate {
  public function generate($xml, $config) {
    $block = $config['block'];
    $id = $this
      ->idFromBlock($block);
    $config['id'] = $id . '_block';
    $config['class'] = 'FrxTable';
    $div = $this
      ->blockDiv($config);
    $columns = $this
      ->columns($xml);
    $table = $this
      ->addNode($div, 4, 'table');
    $thead = $this
      ->addNode($table, 6, 'thead');
    $throw = $this
      ->addNode($thead, 8, 'tr');
    $tbody = $this
      ->addNode($table, 6, 'tbody');
    $tdrow = $this
      ->addNode($tbody, 8, 'tr', null, array(
      'id' => $id,
    ), array(
      'foreach' => '*',
    ));
    if ($columns) {
      foreach ($columns as $col) {
        $this
          ->addNode($throw, 10, 'th', $col);
        $this
          ->addNode($tdrow, 10, 'td', '{' . $col . '}');
      }
    }
  }

}

Classes

Namesort descending Description
FrxTable