LLMS_Admin_Import::add_help_tabs()

Add WP_Screen help tabs


Return Return

(WP_Screen|boolean) Returns the WP_Screen on success or false if called outside of the intended screen context.


Top ↑

Source Source

File: includes/admin/class.llms.admin.import.php

54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
public function add_help_tabs() {
 
    $screen = $this->get_screen();
    if ( ! $screen ) {
        return false;
    }
 
    $screen->add_help_tab(
        array(
            'id'      => 'llms_import_overview',
            'title'   => __( 'Overview', 'lifterlms' ),
            'content' => $this->get_view( 'help-tab-overview' ),
        )
    );
 
    $screen->set_help_sidebar( $this->get_view( 'help-sidebar' ) );
 
    return $screen;
 
}


Top ↑

Changelog Changelog

Changelog
Version Description
4.8.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.