You are here

class Frx in Forena Reports 8

Hierarchy

Expanded class hierarchy of Frx

2 files declare their use of Frx
ForenaController.php in src/Controller/ForenaController.php
ForenaInegrationTest.php in src/Tests/ForenaInegrationTest.php
tests Tests for forena. @author davidmetzler

File

src/Frx.php, line 12

Namespace

Drupal\forena
View source
class Frx {
  use FrxAPI;
  private static $instance;

  /**
   * Forena API instance to expose traits on the object.
   * @return \Drupal\forena\Frx;
   */
  public static function instance() {
    if (static::$instance === NULL) {
      static::$instance = new static();
    }
    return static::$instance;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Frx::$instance private static property
Frx::instance public static function Forena API instance to expose traits on the object.
FrxAPI::app public function Returns containing application service
FrxAPI::currentDataContext public function Get the current data context.
FrxAPI::currentDataContextArray public function
FrxAPI::dataManager public function Returns the data manager service
FrxAPI::dataService public function Return Data Service
FrxAPI::documentManager public function Returns the fornea document manager
FrxAPI::error public function Report an error
FrxAPI::getDataContext public function Get the context of a specific id.
FrxAPI::getDocument public function Get the current document
FrxAPI::getReportFileContents public function Load the contents of a file in the report file system.
FrxAPI::innerXML function Enter description here... 1
FrxAPI::popData public function Pop data off of the stack.
FrxAPI::pushData public function Push data onto the Stack
FrxAPI::report public function Run a report with a particular format. 1
FrxAPI::reportFileSystem public function Get the current report file system.
FrxAPI::setDataContext public function Set Data context by id.
FrxAPI::setDocument public function Change to a specific document type.
FrxAPI::skins public function Get list of skins.