You appear to be a bot. Output may be restricted
Description
Convert to dash icons
Usage
$array = bw_csv_dashicons( $tablerow, $atts );
Parameters
- $tablerow
- ( array ) required – array of columns
- $atts
- ( array ) required –
Returns
array updated tablerowSource
File name: oik-bob-bing-wide/shortcodes/oik-csv.phpLines:
1 to 15 of 15
function bw_csv_dashicons( $tablerow, $atts ) { bw_trace2(); $mapping["Y"] = bw_csv_get_mapping( $atts, "y" ); $mapping["N"] = bw_csv_get_mapping( $atts, "n" ); $dashed = array(); foreach ( $tablerow as $col ) { $ucol = strtoupper( $col ); $dashed[] = bw_array_get( $mapping, $ucol, $col ); } bw_trace2( $dashed, "dashed", false, BW_TRACE_VERBOSE ); return( $dashed ); }View on GitHub