LLMS_Date::date_filters()
Date filter options for analytics
Contents
Return Return
([array]) [array of date filters]
Source Source
File: includes/class.llms.date.php
46 47 48 49 50 51 52 53 54 55 | 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 ; } |
Expand full source code Collapse full source code View on GitHub