LLMS_Admin_Reporting::get_current_tab_url( array $args = array() )
Returns an admin URL with the given arguments added as query variables.
Parameters Parameters
- $args
-
(array) (Optional) Arguments to add to the query string.
Default value: array()
Return Return
(string)
Source Source
File: includes/admin/reporting/class.llms.admin.reporting.php
212 213 214 215 216 217 218 219 220 221 222 | public static function get_current_tab_url( $args = array () ) { $args = wp_parse_args( $args , array ( 'page' => 'llms-reporting' , 'tab' => self::get_current_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.2.0 | Introduced. |