Project

General

Profile

Feature #17264 » 0005530.patch

Administrator Admin, 2007-11-23 21:47

View differences:

t3lib/class.t3lib_tcemain.php (Arbeitskopie)
}
}
/**
* Hook: processDatamap_afterAllOperations
* (calls $hookObj->processDatamap_afterAllOperations($this);)
*
* This hook gets called at the end of the processDatamap method, thus all
* operations on the submitted data have been finished at that time.
*
* @param object $hookObjectsArr: (reference) Array with hook objects
* @return void
*/
function hook_processDatamap_afterAllOperations(&$hookObjectsArr) {
foreach($hookObjectsArr as $hookObj) {
if (method_exists($hookObj, 'processDatamap_afterAllOperations')) {
$hookObj->processDatamap_afterAllOperations($this);
}
}
}
......
/*********************************************
*
* PROCESSING DATA
......
$this->dbAnalysisStoreExec();
$this->removeRegisteredFiles();
$this->hook_processDatamap_afterAllOperations($hookObjectsArr);
}
/**
(2-2/4)