LLMS_Admin_Reporting::output_widget_range_filter( string $selected_period, string $tab, array $args = array() )

Output a range filter select.


Description Description

Used by overview data tabs


Top ↑

Parameters Parameters

$selected_period

(string) (Required) Currently selected period.

$tab

(string) (Required) Current tab name.

$args

(array) (Optional) Additional args to be passed when form is submitted.

Default value: array()


Top ↑

Return Return

(void)


Top ↑

Source Source

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

		$args['id'] = esc_attr( $args['id'] );

		include LLMS_PLUGIN_DIR . 'includes/admin/views/reporting/widget.php';
	}

	/**
	 * Output a range filter select.
	 *
	 * Used by overview data tabs
	 *
	 * @since 3.16.0
	 *
	 * @param string $selected_period Currently selected period.
	 * @param string $tab             Current tab name.
	 * @param array  $args            Additional args to be passed when form is submitted.
	 * @return void
	 */
	public static function output_widget_range_filter( $selected_period, $tab, $args = array() ) {


Top ↑

Changelog Changelog

Changelog
Version Description
3.16.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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