You appear to be a bot. Output may be restricted
Description
Display the contents of a CSV arrayInvokes the appropriate function to display the CSV The HTML style is determined by the uo= parameter The default is to format the contents in a table.
Usage
bw_csv_content_array( $content_array, $atts );
Parameters
- $content_array
- ( mixed ) required –
- $atts
- ( mixed ) optional –
Returns
voidSource
File name: oik-bob-bing-wide/shortcodes/oik-csv.phpLines:
1 to 11 of 11
function bw_csv_content_array( $content_array, $atts=null ) { $uo = bw_array_get( $atts, "uo", "table" ); $funcs = bw_csv_get_funcs(); //bw_trace2( $funcs ); $func = bw_array_get( $funcs, $uo, "bw_csv_content_array_table" ); if ( is_callable( $func ) ) { call_user_func_array( $func, array( $content_array, $atts ) ); } else { bw_csv_content_array_table( $content_array, $atts ); } }View on GitHub