You are here

public function FrxBean::values in Forena Reports 7.4

Same name and namespace in other branches
  1. 7.5 bean/FrxBean.inc \FrxBean::values()
  2. 7.3 bean/FrxBean.inc \FrxBean::values()

Define the form values and their defaults

Be sure to call combine the results form the parent::values() with yours

Overrides BeanPlugin::values

File

bean/FrxBean.inc, line 8
bean plugin for with a forena report

Class

FrxBean
@file bean plugin for with a forena report

Code

public function values() {
  $values = array(
    'settings' => array(
      'selected_report' => FALSE,
    ),
  );
  return array_merge(parent::values(), $values);
}