public function FrxMergeDocument::configForm in Forena Reports 7.5
Returns the section Enter description here ...
Overrides RendererBase::configForm
File
- src/
Renderer/ FrxMergeDocument.php, line 10
Class
Namespace
Drupal\forena\RendererCode
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;
}