You are here

public function FrxAPI::error in Forena Reports 8

Report an error

Parameters

string $short_message: Short Error message

string $log: Log message for system logs

6 calls to FrxAPI::error()
PrincePDF::flush in forena_pdf/src/FrxPlugin/Document/PrincePDF.php
[@inheritdoc}
RendererBase::addFragment in src/FrxPlugin/Renderer/RendererBase.php
Append a textual XHTML fragment to the dom. We do not use the DOMDocumentFragment optioin because they don't properly import namespaces. .
Report::setReport in src/Report.php
Sets the report.
ReportEditor::load in src/Editor/ReportEditor.php
Load report from file system
ReportEditor::loadReport in src/Editor/ReportEditor.php

... See full list

File

src/FrxAPI.php, line 52
FrxAPI.incL General Forena Reporting Class

Class

FrxAPI
Implements FrxAPI Trait

Namespace

Drupal\forena

Code

public function error($short_message, $log = '') {
  AppService::instance()
    ->error($short_message, $log);
}