interface DriverInterface in Forena Reports 8
Hierarchy
- interface \Drupal\forena\FrxPlugin\Driver\DriverInterface
Expanded class hierarchy of DriverInterface
All classes that implement DriverInterface
1 file declares its use of DriverInterface
- BlockEditor.php in src/
Editor/ BlockEditor.php
File
- src/
FrxPlugin/ Driver/ DriverInterface.php, line 12
Namespace
Drupal\forena\FrxPlugin\DriverView source
interface DriverInterface {
public function access($right);
/**
* Retreives data based on parsed definition.
*
* @param $block
* Block definition array
* @return mixed
* Iterateable data structure, ideally \SimpleXMLElement
*/
public function data(array $block, $raw_mode = FALSE);
/**
* @param string $block_name
* Name of the block to load
* @return mixed
*/
public function loadBlock($block_name);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DriverInterface:: |
public | function | 1 | |
DriverInterface:: |
public | function | Retreives data based on parsed definition. | 1 |
DriverInterface:: |
public | function | 1 |