public function FrxMergeDocument::configForm in Forena Reports 7.4
Returns the section Enter description here ...
Overrides FrxRenderer::configForm
File
- renderers/
FrxMergeDocument.inc, line 9
Class
Code
public function configForm($config) {
$form_ctl = array();
$form_ctl['content'] = array(
'#type' => 'text_format',
'#title' => t('Document'),
'#rows' => 5,
'#format' => $this->input_format,
'#default_value' => @$config['content']['value'],
);
return $form_ctl;
}