/**
* Add help to the Akismet page
*
* @return false if not the Akismet page
*/
public static function admin_help() { $current_screen =
get_current_screen();
// Screen Content
if ( current_user_can( 'manage_options'
) ) { if ( !Akismet::
get_api_key() || ( isset( $_GET['view'
] ) &&
$_GET['view'
] == 'start'
) ) { //setup page
$current_screen->
add_help_tab( array
( 'id' => 'overview',
'title' =>
__( 'Overview' , 'akismet'
),
'content' =>
'<p><strong>' .
esc_html__( 'Akismet Setup' , 'akismet'
) . '</strong></p>' .
'<p>' .
esc_html__( 'Akismet filters out spam, so you can focus on more important things.' , 'akismet'
) . '</p>' .
'<p>' .
esc_html__( 'On this page, you are able to set up the Akismet plugin.' , 'akismet'
) . '</p>',
) );