public function FrxReport::get_attributes_by_id in Forena Reports 7.4
Same name and namespace in other branches
- 6.2 FrxReport.inc \FrxReport::get_attributes_by_id()
- 6 FrxReport.inc \FrxReport::get_attributes_by_id()
- 7 FrxReport.inc \FrxReport::get_attributes_by_id()
- 7.2 FrxReport.inc \FrxReport::get_attributes_by_id()
- 7.3 FrxReport.inc \FrxReport::get_attributes_by_id()
Get the attributes by
Return value
array Attributes
This function will return an array for all of the frx attributes defined in the report body These attributes can be saved away and added back in later using.
1 call to FrxReport::get_attributes_by_id()
- FrxReport::setReport in ./
FrxReport.inc - Sets the report.
File
- ./
FrxReport.inc, line 589 - Basic report provider. Controls the rendering of the report.
Class
Code
public function get_attributes_by_id() {
$this
->parse_ids();
return $this->frx_attributes;
}