You are here

function FrxSVGGraph::__construct in Forena Reports 7.2

Same name and namespace in other branches
  1. 6.2 plugins/FrxSVGGraph.inc \FrxSVGGraph::__construct()
  2. 7.3 renderers/FrxSVGGraph.inc \FrxSVGGraph::__construct()
  3. 7.4 renderers/FrxSVGGraph.inc \FrxSVGGraph::__construct()

Overrides FrxRenderer::__construct

File

plugins/FrxSVGGraph.inc, line 6

Class

FrxSVGGraph

Code

function __construct() {
  $directory = FrxReportGenerator::instance()
    ->configuration('library_path');
  $library = rtrim($directory, '/') . '/SVGGraph/SVGGraph.php';
  require_once $library;
}