LLMS_Date::date_filters()

Date filter options for analytics


Return Return

([array]) [array of date filters]


Top ↑

Source Source

File: includes/class.llms.date.php

	public static function date_filters() {
		$filters = array(
			'none'    => 'Enter Specific Dates',
			'week'    => 'Last 7 Days',
			'month'   => 'Current Month',
			'quarter' => 'Current Quarter',
			'year'    => 'Current Year',
		);
		return $filters;
	}

Top ↑

User Contributed Notes User Contributed Notes

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