You are here

public function FrxReport::get_attributes_by_id in Forena Reports 7

Same name and namespace in other branches
  1. 6.2 FrxReport.inc \FrxReport::get_attributes_by_id()
  2. 6 FrxReport.inc \FrxReport::get_attributes_by_id()
  3. 7.2 FrxReport.inc \FrxReport::get_attributes_by_id()
  4. 7.3 FrxReport.inc \FrxReport::get_attributes_by_id()
  5. 7.4 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.

File

./FrxReport.inc, line 361
Basic report provider. Controls the rendering of the report.

Class

FrxReport

Code

public function get_attributes_by_id() {
  $this
    ->parse_ids();
  return $this->frx_attributes;
}