You appear to be a bot. Output may be restricted
Description
Displays the table of cookies
Usage
cookie_cat_table( $cookies );
Parameters
- $cookies
- ( array ) required – array of cookies
Returns
voidSource
File name: cookie-cat/shortcodes/cookie-cat.phpLines:
1 to 10 of 10
function cookie_cat_table( $cookies ) { bw_trace2(); oik_require_lib( "bobbforms" ); stag( "table", "cookies wide-fat" ); stag( "thead" ); bw_tablerow( array( "Cookie Name", "Cookie Category", "Description", "Duration" ) ); etag( "thead" ); cookie_cat_rows( $cookies ); etag( "table" ); }View on GitHub View on Trac