You are here

public static function Frx::Data in Forena Reports 7.3

Same name and namespace in other branches
  1. 7.5 Frx.inc \Frx::Data()
  2. 7.4 Frx.inc \Frx::Data()

Data Factory

6 calls to Frx::Data()
Frx::Context in ./Frx.inc
Factory object to get the context based on a name. IF the context doesn't exist we assume the default data context (FrxData).
FrxChart::xmlToValues in renderers/FrxChart.inc
FrxData::instance in ./FrxData.inc
FrxRenderer::initReportNode in ./FrxRenderer.inc
FrxRepoMan::blockAccess in ./FrxRepoMan.inc
Check access control using the block in a data block. In this case public assess returns true.

... See full list

File

./Frx.inc, line 30
Frx.incL General Forena Reporting Class

Class

Frx

Code

public static function Data() {
  static $o = '';
  if (!$o) {
    require_once 'FrxData.inc';
    $o = new FrxData();
  }
  return $o;
}