Hook: exporter_parseExport

Wenn ein Export erzeugt wird

/*
 * -- Registration: --
 * $GLOBALS['MERCONIS_HOOKS']['exporter_parseExport'][] = array('myMerconisHookClass', 'myExporter_parseExport');
 *
 * -- Invocation: --
 * When an export is parsed
 *
 * -- Parameters: --
 *     1. $obj_exporter - a reference to the exporter object
 *
 * -- Return value: --
 * null if the regular exporter should still do its job or any other value
 * if the exporter should just pass it through
 *
 * -- Objective: --
 * e.g. create a custom exporter routine
 *
 */
 
public function myExporter_parseExport(&$obj_exporter) {

   /*
    * Create custom export routine or manipulate $obj_exporter in any way
    */
    
   return null;
}