You are here

FrxReportContext.inc in Forena Reports 7.4

File

contexts/FrxReportContext.inc
View source
<?php

/**
 * Special report embedder
 * @author davidmetzler
 *
 */
class FrxReportContext extends FrxContextBase {

  // Get report based on current context and embed it.
  public function getValue($key) {
    $output = forena_report_include($key);
    return $output;
  }
  public function __get($key) {
    return $this
      ->getValue($key);
  }

}

Classes

Namesort descending Description
FrxReportContext Special report embedder @author davidmetzler