public function ReportEditor::templateConfigFormValidate in Forena Reports 8
Same name and namespace in other branches
- 7.5 src/Editor/ReportEditor.php \Drupal\forena\Editor\ReportEditor::templateConfigFormValidate()
File
- src/
Editor/ ReportEditor.php, line 1131 - ReportEditor.inc Wrapper XML class for working with DOM object. It provides helper Enter description here ... @author metzlerd
Class
Namespace
Drupal\forena\EditorCode
public function templateConfigFormValidate($class, &$config) {
$c = FrxAPI::Template($class);
$errors = array();
if ($c && method_exists($c, 'configValidate')) {
$errors = $c
->configValidate($config);
}
return $errors;
}