public function FrxBean::values in Forena Reports 7.3
Same name and namespace in other branches
- 7.5 bean/FrxBean.inc \FrxBean::values()
- 7.4 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);
}