You appear to be a bot. Output may be restricted
Description
Get CSV formatting functionsDetermine the formatting functions to use to display the CSV
Usage
$array = bw_csv_get_funcs();
Parameters
Returns
array mapping of uo= parameter value to functionSource
File name: oik-bob-bing-wide/shortcodes/oik-csv.phpLines:
1 to 12 of 12
function bw_csv_get_funcs() { $funcs = array( "u" => "bw_csv_content_array_list" , "ul" => "bw_csv_content_array_list" , "o" => "bw_csv_content_array_list" , "ol" => "bw_csv_content_array_list" , "d" => "bw_csv_content_array_list" , "dl" => "bw_csv_content_array_list" , "table"=> "bw_csv_content_array_table" ); // $funcs = apply_filters( "bw_csv_get_funcs", $funcs, $atts, $content ); return( $funcs ); }View on GitHub