You are here

public function FrxFieldTable::generate in Forena Reports 8

Overrides TemplateInterface::generate

File

src/FrxPlugin/Template/FrxFieldTable.php, line 42
FrxFieldTable Template that displays a table of column/value vertically.

Class

FrxFieldTable
Field Table Template

Namespace

Drupal\forena\Template

Code

public function generate() {
  $config = $this->configuration;
  $config['foreach'] = '*';
  $config['class'] = 'FrxFieldTable';
  $div = $this
    ->blockDiv($config);
  $columns = $this
    ->columns($xml);

  // PUt on the header
  $this
    ->removeChildren($div);
  $this
    ->addFragment($div, $config['header']);
  $table = $this
    ->setFirstNode($div, 4, 'table');
  $r = 0;
  if ($config['columns']) {
    foreach ($config['columns'] as $key => $col) {
      if ($col['include']) {
        $r++;
        $tbody = $this
          ->addNode($table, 6, 'tbody');
        $tr = $this
          ->addNode($tbody, 8, 'tr');
        $th_attrs = array();
        if ($r == 1) {
          $th_attrs = array(
            'style' => 'width: 25em;',
          );
        }
        $th = $this
          ->addNode($tr, 10, 'th', $col['label']);
        $td = $this
          ->addNode($tr, 10, 'td', $col['contents']);
      }
    }
  }

  // Decide to inlcude columns
  $found_columns = $this
    ->columns($xml);
  if (!$found_columns) {
    $found_columns = $this
      ->columns($xml, '/*');
    $attrs = array();
  }
  $include_column = 0;
  $weight = 0;
  if (!@$config['columns']) {
    $include_column = 1;
  }
  else {
    $weight = count($config['columns']);
  }
  foreach ($found_columns as $column => $label) {
    $token = '{' . $column . '}';
    if (!isset($config['columns'][$column])) {
      $weight++;
      $config['columns'][$column] = array(
        'contents' => $token,
        'include' => $include_column,
        'label' => $label,
        'weight' => $weight,
      );
    }
  }
}