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
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()
Return Return
(void)
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() ) {
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.16.0 | Introduced. |