array_to_csv.php
4 years ago
date_format.php
4 years ago
relative_dates.php
4 years ago
request.php
4 years ago
security.php
4 years ago
timezone.php
4 years ago
relative_dates.php
23 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP; |
| 4 | |
| 5 | class Relative_Dates |
| 6 | { |
| 7 | public static function supported_relative_dates() |
| 8 | { |
| 9 | return [ |
| 10 | ['TODAY', 'Today'], |
| 11 | ['YESTERDAY', 'Yesterday'], |
| 12 | ['LAST_SEVEN', 'Last 7 Days'], |
| 13 | ['LAST_THIRTY', 'Last 30 Days'], |
| 14 | ['THIS_WEEK', 'This Week'], |
| 15 | ['LAST_WEEK', 'Last Week'], |
| 16 | ['THIS_MONTH', 'This Month'], |
| 17 | ['LAST_MONTH', 'Last Month'], |
| 18 | ['THIS_YEAR', 'This Year'], |
| 19 | ['LAST_YEAR', 'Last Year'], |
| 20 | ]; |
| 21 | } |
| 22 | } |
| 23 |