Esempio n. 1
0
 public static function doExport(array $userCollection)
 {
     self::$exportFile = self::getExportFilePath();
     self::openExportFile();
     array_walk($userCollection, 'PimPon_User_Export::exportUser');
     self::closeExportFile();
     return self::$exportFile;
 }