public function RendererBase::configValidate in Forena Reports 8
Default configuration validator. Simply validates header and footer attributes.
Parameters
array $config: Array containing template configuration information
Return value
bool Indicates whether configuration is valid.
File
- src/
FrxPlugin/ Renderer/ RendererBase.php, line 542 - FrxRenderer.php Base class for FrxAPI custom Renderer @author davidmetzler
Class
- RendererBase
- Crosstab Renderer
Namespace
Drupal\forena\FrxPlugin\RendererCode
public function configValidate(&$config) {
return $this
->validateTextFormats($config, array(
'header',
'footer',
));
}