You appear to be a bot. Output may be restricted
Description
Syntax hook for [bw_csv] shortcode
Usage
bw_csv__syntax( $shortcode );
Parameters
- $shortcode
- ( mixed ) optional default: bw_csv –
Returns
voidSource
File name: oik-bob-bing-wide/shortcodes/oik-csv.phpLines:
1 to 12 of 12
function bw_csv__syntax( $shortcode="bw_csv" ) { $syntax = array( "src,0" => bw_skv( null, "file", "File containing CSV data to display" ) , "th" => bw_skv( "y", "n", "Format table headings" ) , "uo" => bw_skv( "table", "u|ul|o|ol|d|dl", "Format as list - unordered, ordered or definition" ) , "y" => bw_skv( null, "Y|N", "Convert y to a dash icon tick or cross" ) , "n" => bw_skv( null, "N|Y", "Convert n to a dash icon cross or tick" ) , "del,sep" => bw_skv( ",", "|", "Delimeter between columns" ) , 'totals' => bw_skv( null, 't,c,-', 'Comma separated codes for totalling the columns') , 'prefixes' => bw_skv( null, 'prefix1,prefix2', 'Comma separated prefixed for totals cells' ) ); return( $syntax ); }View on GitHub