You are here

public function FrxAPI::pushData in Forena Reports 8

Push data onto the Stack

Parameters

$data:

string $id:

18 calls to FrxAPI::pushData()
AReportTokenTest::testContextReplacement in tests/src/Unit/AReportTokenTest.php
Verify that basic Context specific token replacement works.
AReportTokenTest::testLinkGeneration in tests/src/Unit/AReportTokenTest.php
basic test for field generation.
AReportTokenTest::testReplacement in tests/src/Unit/AReportTokenTest.php
BlockEditor::data in src/Editor/BlockEditor.php
Get data and working cache.
FieldFormatterTest::testISODateFormatter in tests/src/Unit/FieldFormatterTest.php
Test the ISO Date formatter.

... See full list

File

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

Class

FrxAPI
Implements FrxAPI Trait

Namespace

Drupal\forena

Code

public function pushData($data, $id = '') {
  DataManager::instance()->dataSvc
    ->push($data, $id);
}