You are here

interface DriverInterface in Forena Reports 8

Hierarchy

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\Driver
View 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

Namesort descending Modifiers Type Description Overrides
DriverInterface::access public function 1
DriverInterface::data public function Retreives data based on parsed definition. 1
DriverInterface::loadBlock public function 1