You are here

FrxContextInterface.inc in Forena Reports 7.4

Data contexts are used to respond to toekn

File

contexts/FrxContextInterface.inc
View source
<?php

/**
 * @file
 *
 * Data contexts are used to respond to toekn
 */
interface FrxContextInterface {

  /**
   * Return the object data as a simplexml element so that xpath and evaluate
   * functions may be used on it within the context of a report.
   *
   * @return SimpleXMLElement| string
   *   Data returned as a string must still be valid parseable XML.
   *
   */
  public function asXML();

}

Interfaces

Namesort descending Description
FrxContextInterface @file