public function FrxEditor::templateConfigFormValidate in Forena Reports 7.4
File
- ./
FrxEditor.inc, line 1164 - FrxEditor.inc Wrapper XML class for working with DOM object. It provides helper Enter description here ... @author metzlerd
Class
- FrxEditor
- @file FrxEditor.inc Wrapper XML class for working with DOM object. It provides helper Enter description here ... @author metzlerd
Code
public function templateConfigFormValidate($class, &$config) {
$c = Frx::Template($class);
$errors = array();
if ($c && method_exists($c, 'configValidate')) {
$errors = $c
->configValidate($config);
}
return $errors;
}