public function ReportEditor::ensureDocGen in Forena Reports 8
Same name and namespace in other branches
- 7.5 src/Editor/ReportEditor.php \Drupal\forena\Editor\ReportEditor::ensureDocGen()
Makes sure specific document types are asserted in the report document.
Parameters
array $types: Document types to assert.
File
- src/
Editor/ ReportEditor.php, line 425 - 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 ensureDocGen($types) {
$types = array_combine($types, $types);
$doctypes = $this
->getDocgen();
$doctypes = array_merge($types, $doctypes);
$this
->setDocgen($doctypes);
}