2007-11-24 Oliver Hader <oh@inpublica.de>
* Fixed bug #6817: Files with extension xml are ignored as resource of a template
+ * Added feature #5530: Hook in TCEmain after all database operations
2007-11-24 Benjamin Mack <mack@xnos.org>
$this->dbAnalysisStoreExec();
$this->removeRegisteredFiles();
+
+ /*
+ * Hook: processDatamap_afterAllOperations
+ *
+ * Note: When this hook gets called, all operations on the submitted data have been finished.
+ */
+ foreach($hookObjectsArr as $hookObj) {
+ if (method_exists($hookObj, 'processDatamap_afterAllOperations')) {
+ $hookObj->processDatamap_afterAllOperations($this);
+ }
+ }
}
/**