wp_cache_plugin_notice() WPSCache 1.0
add_filter( 'favorite_actions', 'wp_cache_favorite_action' );
No Hooks.
Return
Null. Nothing.
Usage
wp_cache_plugin_notice( $plugin );
Code of wp_cache_plugin_notice() wp cache plugin notice WPSCache 1.7.1
function wp_cache_plugin_notice( $plugin ) {
global $cache_enabled;
if( $plugin == 'wp-super-cache/wp-cache.php' && !$cache_enabled && function_exists( 'admin_url' ) )
echo '<td colspan="5" class="plugin-update">' . sprintf( __( 'WP Super Cache must be configured. Go to <a href="%s">the admin page</a> to enable and configure the plugin.', 'wp-super-cache' ), admin_url( 'options-general.php?page=wpsupercache' ) ) . '</td>';
}