Feature #17264 » 0005530.patch
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);
|
||
}
|
||
/**
|