You are here

public function FrxDataSource::__construct in Forena Reports 7.5

6 calls to FrxDataSource::__construct()
FrxDrupal::__construct in src/Driver/FrxDrupal.php
Object constructor
FrxFiles::__construct in src/Driver/FrxFiles.php
FrxMSSQL::__construct in src/Driver/FrxMSSQL.php
Object constructor
FrxOracle::__construct in src/Driver/FrxOracle.php
Object constructor
FrxPDO::__construct in src/Driver/FrxPDO.php
Object constructor

... See full list

6 methods override FrxDataSource::__construct()
FrxDrupal::__construct in src/Driver/FrxDrupal.php
Object constructor
FrxFiles::__construct in src/Driver/FrxFiles.php
FrxMSSQL::__construct in src/Driver/FrxMSSQL.php
Object constructor
FrxOracle::__construct in src/Driver/FrxOracle.php
Object constructor
FrxPDO::__construct in src/Driver/FrxPDO.php
Object constructor

... See full list

File

src/Driver/FrxDataSource.php, line 26
Class that defines default methods for access control in an FrxDataSource

Class

FrxDataSource

Namespace

Drupal\forena\Driver

Code

public function __construct($conf, $repos_path, $name) {
  $this->conf = $conf;
  $this->comment_prefix = '--';
  $this->block_ext = 'sql';
  $this->block_path = $repos_path;
  $this->block_extensions = array(
    'inc',
    'sql',
    'xml',
  );
  $this->name = $name;
  $this->debug = @$conf['debug'];
}