You appear to be a bot. Output may be restricted
Description
Display help information for all the active shortcodesWhen a shortcode is selected for further display then we invoke the __example and __snippet routine ? For some reason, when the shortcode is 'nivo' the columns get wider than normal. Don't yet know why Herb 2012/04/26
Usage
oik_help_do_page();
Parameters
Returns
voidSource
File name: oik/admin/oik-admin.phpLines:
1 to 17 of 17
function oik_help_do_page() { do_action( "oik_add_shortcodes" ); BW_::oik_menu_header( __( "shortcode help", "oik" ), "w95pc" ); BW_::oik_box( null, null, __( "About shortcodes", "oik" ), "oik_code_about" ); $shortcode = bw_array_get( $_REQUEST, "code", null ); if ( $shortcode ) { /* translators: %s: oik_code_example - non translatable function name */ BW_::oik_box( null, null, sprintf( __( '%1$s - more information', 'oik' ), $shortcode ), "oik_code_example" ); /* translators: %s: oik_code_snippet - non translatable function name */ BW_::oik_box( null, null, sprintf( __( '%1$s - snippet', 'oik' ), $shortcode ), "oik_code_snippet" ); } oik_require( "shortcodes/oik-codes.php" ); BW_::oik_box( null, null, __( "Shortcode summary", "oik" ), "oik_code_table" ); oik_menu_footer(); bw_flush(); }View on GitHub View on Trac