You are here

public function RendererBase::configValidate in Forena Reports 7.5

Default configuration validator. Simply validates header and footer attributes.

Parameters

unknown $config:

Return value

multitype:Ambigous <The, string, A, Optional>

2 calls to RendererBase::configValidate()
FrxFieldTable::configValidate in src/Renderer/FrxFieldTable.php
Default configuration validator. Simply validates header and footer attributes.
FrxTable::configValidate in src/Renderer/FrxTable.php
Default configuration validator. Simply validates header and footer attributes.
7 methods override RendererBase::configValidate()
FrxCrosstab::configValidate in src/Renderer/FrxCrosstab.php
Default configuration validator. Simply validates header and footer attributes.
FrxEmailMerge::configValidate in src/Renderer/FrxEmailMerge.php
Default configuration validator. Simply validates header and footer attributes.
FrxFieldTable::configValidate in src/Renderer/FrxFieldTable.php
Default configuration validator. Simply validates header and footer attributes.
FrxMergeDocument::configValidate in src/Renderer/FrxMergeDocument.php
Default configuration validator. Simply validates header and footer attributes.
FrxSection::configValidate in src/Renderer/FrxSection.php
Validate the configuration

... See full list

File

src/Renderer/RendererBase.php, line 556
FrxRenderer.php Base class for Frx custom Renderer @author davidmetzler

Class

RendererBase

Namespace

Drupal\forena\Renderer

Code

public function configValidate(&$config) {
  return $this
    ->validateTextFormats($config, array(
    'header',
    'footer',
  ));
}