You appear to be a bot. Output may be restricted
Description
Performs special mapping of characters
Usage
$string = bw_csv_get_mapping( $atts, $key );
Parameters
- $atts
- ( array ) required –
- $key
- ( string ) required –
Returns
string the mapped resultSource
File name: oik-bob-bing-wide/shortcodes/oik-csv.phpLines:
1 to 21 of 21
function bw_csv_get_mapping( $atts, $key ) { $map = bw_array_get( $atts, $key, null ); switch ( $map ) { case null: $map = $key; break; case "Y": $map = "[bw_dash yes]"; break; case "N": $map = "[bw_dash no]"; break; default: // Whatever they said } bw_trace2( $map, "map", true, BW_TRACE_VERBOSE ); return( $map ); }View on GitHub