Hook: exporter_manipulateData

Nachdem die Exportdaten aus der Datenbank ausgelesen wurden

/*
 * -- Registration: --
 * $GLOBALS['MERCONIS_HOOKS']['exporter_manipulateData'][] = array('myMerconisHookClass', 'myExporter_manipulateData');
 *
 * -- Invocation: --
 * When the export data has been read from the database and can now be manipulated
 *
 * -- Parameters: --
 *  1. $arr_data - an array holding the export data
 *  2. $obj_exporter - a reference to the exporter object
 *
 * -- Return value: --
 * the manipulated $arr_data
 *
 * -- Objective: --
 * data manipulation, e.g. removing some records from the data array
 *
 */
 
public function myExporter_manipulateData($arr_data, &$obj_exporter) {

   /*
    * Manipulate data array and return it
    */
    
   return $arr_data;
}