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
Return Return
(string)
Source Source
File: includes/admin/class.llms.admin.page.status.php
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' ) );
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.11.2 | Introduced. |