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()


Top ↑

Return Return

(string)


Top ↑

Source Source

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

	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' ) );
	}


Top ↑

Changelog Changelog

Changelog
Version Description
3.2.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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