You are here

public function DriverBase::__construct in Forena Reports 8

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

... See full list

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

... See full list

File

src/FrxPlugin/Driver/DriverBase.php, line 32
Class that defines default methods for access control in an DriverBase

Class

DriverBase

Namespace

Drupal\forena\FrxPlugin\Driver

Code

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