Skip to content

Instantly share code, notes, and snippets.

@Pebblo
Created January 10, 2019 14:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pebblo/59af08753b201dbabd70a8b04217d783 to your computer and use it in GitHub Desktop.
Save Pebblo/59af08753b201dbabd70a8b04217d783 to your computer and use it in GitHub Desktop.
Example of how to change all the values in the CSV report to upper case
<?php //Please do not include the opening PHP tag if you already have one.
function tw_ee_espresso_reg_report_filter_columns_strtoupper( $csv_row){
foreach($csv_row as $key => $value) {
$csv_row[$key] = strtoupper($value);
}
return $csv_row;
}
add_filter( 'FHEE__EventEspressoBatchRequest__JobHandlers__RegistrationsReport__reg_csv_array', 'tw_ee_espresso_reg_report_filter_columns_strtoupper', 999, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment