class FrxReport in Forena Reports 8
Class FrxReport
Plugin annotation
@FrxContext(
  id = "FrxReport"
)
Hierarchy
- class \Drupal\forena\FrxPlugin\Context\ContextBase implements ContextInterface
Expanded class hierarchy of FrxReport
1 string reference to 'FrxReport'
- forena_forena_plugins in ./forena.module 
- Self register plugins with forena.
File
- src/FrxPlugin/ Context/ FrxReport.php, line 17 
Namespace
Drupal\forena\FrxPlugin\ContextView source
class FrxReport extends ContextBase {
  use FrxAPI;
  // Get report based on current context and embed it.
  public function getValue($key) {
    $output = $this
      ->report($key);
    if (is_array($output)) {
      $output = $output['report']['#template'];
    }
    return $output;
  }
  // Override obejct getter.
  public function __get($key) {
    return $this
      ->getValue($key);
  }
}Members
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| ContextBase:: | public | function | Return the properteis of the element. Overrides ContextInterface:: | |
| FrxAPI:: | public | function | Returns containing application service | |
| FrxAPI:: | public | function | Get the current data context. | |
| FrxAPI:: | public | function | ||
| FrxAPI:: | public | function | Returns the data manager service | |
| FrxAPI:: | public | function | Return Data Service | |
| FrxAPI:: | public | function | Returns the fornea document manager | |
| FrxAPI:: | public | function | Report an error | |
| FrxAPI:: | public | function | Get the context of a specific id. | |
| FrxAPI:: | public | function | Get the current document | |
| FrxAPI:: | public | function | Load the contents of a file in the report file system. | |
| FrxAPI:: | function | Enter description here... | 1 | |
| FrxAPI:: | public | function | Pop data off of the stack. | |
| FrxAPI:: | public | function | Push data onto the Stack | |
| FrxAPI:: | public | function | Run a report with a particular format. | 1 | 
| FrxAPI:: | public | function | Get the current report file system. | |
| FrxAPI:: | public | function | Set Data context by id. | |
| FrxAPI:: | public | function | Change to a specific document type. | |
| FrxAPI:: | public | function | Get list of skins. | |
| FrxReport:: | public | function | ||
| FrxReport:: | public | function | 
