class FrxXMLSource in Forena Reports 6.2
Same name and namespace in other branches
- 7.2 plugins/FrxXMLSource.inc \FrxXMLSource
* Look at the FrxRender class to see a full list of properties that can be used here.
Hierarchy
- class \FrxRenderer
- class \FrxXMLSource
Expanded class hierarchy of FrxXMLSource
2 string references to 'FrxXMLSource'
- forena_forena_controls in ./
forena.module - Self register controls with forena.
- FrxHostApplication::controls in ./
FrxHostApplication.inc - * Self register controls with forena. *
File
- plugins/
FrxXMLSource.inc, line 6
View source
class FrxXMLSource extends FrxRenderer {
public function render() {
$node = $this->reportDocNode;
$xml = FrxData::instance()
->currentContext();
if ($xml && is_callable(array(
$xml,
'asXML',
))) {
$output = htmlspecialchars($xml
->asXML());
}
return $output;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FrxRenderer:: |
public | property | ||
FrxRenderer:: |
public | property | ||
FrxRenderer:: |
public | property | ||
FrxRenderer:: |
public | property | ||
FrxRenderer:: |
public | property | ||
FrxRenderer:: |
public | property | ||
FrxRenderer:: |
public | property | ||
FrxRenderer:: |
public | property | ||
FrxRenderer:: |
public | function | ||
FrxRenderer:: |
public | function | * Standard php array containing merged attributes * Enter description here ... | |
FrxRenderer:: |
public | function | ||
FrxRenderer:: |
public | function | 1 | |
FrxXMLSource:: |
public | function |
Overrides FrxRenderer:: |