You are here

public static function Frx::RepoMan in Forena Reports 7.4

Same name and namespace in other branches
  1. 7.3 Frx.inc \Frx::RepoMan()

Forena Repository manager Class factory

Return value

FrxRepoMan

1 call to Frx::RepoMan()
FeedsForenaBlockFetcher::fetch in feeds/FeedsForenaBlockFetcher.inc

File

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

Class

Frx

Code

public static function RepoMan() {
  static $o = '';
  if (!$o) {
    require_once 'FrxDataSource.inc';
    require_once 'FrxRepoMan.inc';
    $o = new FrxRepoMan();
  }
  return $o;
}