You are here

public static function DocManager::instance in Forena Reports 8

Return value

\Drupal\forena\DocManager

4 calls to DocManager::instance()
drush_forena_report in ./forena.drush.inc
Run a report to a fiel.
Forena::runReport in src/Forena.php
ForenaController::report in src/Controller/ForenaController.php
Render a single report.
FrxAPI::documentManager in src/FrxAPI.php
Returns the fornea document manager

File

src/DocManager.php, line 26

Class

DocManager
Implements \Drupal\forena\DocManager @package Drupal\forena

Namespace

Drupal\forena

Code

public static function instance() {
  if (static::$instance === null) {
    static::$instance = new static();
  }
  return static::$instance;
}