LLMS_Admin_Page_Status::get_url( string $tab = null )

Retrieve the URL to the status page


Parameters Parameters

$tab

(string) (Optional) y add a tab.

Default value: null


Top ↑

Return Return

(string)


Top ↑

Source Source

File: includes/admin/class.llms.admin.page.status.php

141
142
143
144
145
146
147
148
149
public static function get_url( $tab = null ) {
    $args = array(
        'page' => 'llms-status',
    );
    if ( $tab ) {
        $args['tab'] = $tab;
    }
    return add_query_arg( $args, admin_url( 'admin.php' ) );
}


Top ↑

Changelog Changelog

Changelog
Version Description
3.11.2 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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