You are here

public function Report::get_attributes_by_id in Forena Reports 7.5

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 Report::get_attributes_by_id()
Report::setReport in src/Report.php
Sets the report.

File

src/Report.php, line 530
Basic report provider. Controls the rendering of the report.

Class

Report

Namespace

Drupal\forena

Code

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