You appear to be a bot. Output may be restricted
Description
'cookies' filter oik's own implementation of theDoesn't do anything except trace the cookie_list Other plugins should add to the cookie list the cookies that it suppports e.g. $cookie_list['oik-norty1'] = cookie_cat_info( 4, "permanent", "A category 4 cookie of the highest naughtiness" ); $cookie_list['oik-norty2'] = cookie_cat_info( 3, "1 second", "oik_norty_desc_cb" ); where oik_norty_desc_cb() is the function that actually provides the description of this cookie Note: You will need to load this function so that it can be run when the table is being generated.
Usage
$array = oik_lazy_cookie_filter( $cookie_list );
Parameters
- $cookie_list
- ( array ) required –
Returns
array the filtered cookie listSource
File name: cookie-cat/shortcodes/cookie-cat.phpLines:
1 to 4 of 4
function oik_lazy_cookie_filter( $cookie_list ) { bw_trace2(); return( $cookie_list ); }View on GitHub View on Trac