class FrxTitle in Forena Reports 7.3
Same name and namespace in other branches
- 7.4 renderers/FrxTitle.inc \FrxTitle
@file Implements a title renderer @author metzlerd
Hierarchy
- class \FrxRenderer
- class \FrxTitle
Expanded class hierarchy of FrxTitle
1 string reference to 'FrxTitle'
- forena_forena_controls in ./
forena.module - Self register controls with forena.
File
- renderers/
FrxTitle.inc, line 8 - Implements a title renderer @author metzlerd
View source
class FrxTitle extends FrxRenderer {
public function render() {
$html = $this
->innerXML();
$html = $this->teng
->replace($html);
$this->frxReport->title = $html;
return '';
}
}