add_help_tab( array( 'id' => 'repair_forums', 'title' => __( 'Repair Forums', 'bbpress' ), 'content' => '

' . __( 'There is more detailed information available on the bbPress and BuddyPress codex for the following:', 'bbpress' ) . '

' . '

' . '

' . '

' . '

' . __( 'Also see bbPress: Repair Forums.', 'bbpress' ) . '

' ) ); // Help Sidebar $current_screen->set_help_sidebar( '

' . __( 'For more information:', 'bbpress' ) . '

' . '

' . __( 'bbPress Documentation', 'bbpress' ) . '

' . '

' . __( 'bbPress Support Forums', 'bbpress' ) . '

' ); } /** * Contextual help for Reset Forums tools page * * @since 2.6.0 bbPress (r5314) */ function bbp_admin_tools_reset_help() { $current_screen = get_current_screen(); // Bail if current screen could not be found if ( empty( $current_screen ) ) { return; } // Reset Forums $current_screen->add_help_tab( array( 'id' => 'reset_forums', 'title' => __( 'Reset Forums', 'bbpress' ), 'content' => '

' . __( 'Also see bbPress: Reset Forums.', 'bbpress' ) . '

' ) ); // Help Sidebar $current_screen->set_help_sidebar( '

' . __( 'For more information:', 'bbpress' ) . '

' . '

' . __( 'bbPress Documentation', 'bbpress' ) . '

' . '

' . __( 'bbPress Support Forums', 'bbpress' ) . '

' ); } /** * Contextual help for Import Forums tools page * * @since 2.6.0 bbPress (r5314) */ function bbp_admin_tools_converter_help() { $current_screen = get_current_screen(); // Bail if current screen could not be found if ( empty( $current_screen ) ) { return; } // Overview $current_screen->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview', 'bbpress' ), 'content' => '

' . __( 'This screen provides access to all of the bbPress Import Forums settings and resources.', 'bbpress' ) . '

' . '

' . __( 'Please see the additional help tabs for more information on each individual section.', 'bbpress' ) . '

' . '

' . __( 'Also see the main article on the bbPress codex bbPress: Import Forums.', 'bbpress' ) . '

' ) ); // Database Settings $current_screen->add_help_tab( array( 'id' => 'database_settings', 'title' => __( 'Database Settings', 'bbpress' ), 'content' => '

' . __( 'In the Database Settings you have a number of options:', 'bbpress' ) . '

' . '

' . '

' . '

' ) ); // Importer Options $current_screen->add_help_tab( array( 'id' => 'importer_options', 'title' => __( 'Importer Options', 'bbpress' ), 'content' => '

' . __( 'In the Options you have a number of options:', 'bbpress' ) . '

' . '

' . '

' . '

' ) ); // Help Sidebar $current_screen->set_help_sidebar( '

' . __( 'For more information:', 'bbpress' ) . '

' . '

' . __( 'bbPress Documentation', 'bbpress' ) . '

' . '

' . __( 'bbPress Support Forums', 'bbpress' ) . '

' ); }