You are here

class FrxReportContext in Forena Reports 7.4

Same name and namespace in other branches
  1. 7.3 plugins/FrxReportContext.inc \FrxReportContext

Special report embedder @author davidmetzler

Hierarchy

Expanded class hierarchy of FrxReportContext

1 string reference to 'FrxReportContext'
forena_forena_context in ./forena.module
Implements hook_forena_context().

File

contexts/FrxReportContext.inc, line 8

View source
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);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
FrxContextBase::asXML public function Return the properteis of the element. Overrides FrxContextInterface::asXML
FrxReportContext::getValue public function
FrxReportContext::__get public function