B4BY.588
Home
Terminal
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
sportmx
/
public_html
/
wp-content
/
plugins
/
fakerpress
/
src
/
FakerPress
/
Filename :
Dates.php
back
Copy
<?php namespace FakerPress; use FakerPress\ThirdParty\Cake\Chronos\Chronos; class Dates { public static function get_intervals() { return apply_filters( 'fakerpress/date.get_intervals', [ [ 'id' => 'today', 'text' => esc_attr__( 'Today', 'fakerpress' ), 'min' => Chronos::today()->toDateString(), 'max' => Chronos::today()->toDateString(), ], [ 'id' => 'yesterday', 'text' => esc_attr__( 'Yesterday', 'fakerpress' ), 'min' => Chronos::yesterday()->toDateString(), 'max' => Chronos::yesterday()->toDateString(), ], [ 'id' => 'tomorrow', 'text' => esc_attr__( 'Tomorrow', 'fakerpress' ), 'min' => Chronos::tomorrow()->toDateString(), 'max' => Chronos::tomorrow()->toDateString(), ], [ 'id' => 'this week', 'text' => esc_attr__( 'This week', 'fakerpress' ), 'min' => ( Chronos::today()->dayOfWeek === 1 ? Chronos::today()->toDateString() : Chronos::parse( 'last monday' )->toDateString() ), 'max' => ( Chronos::today()->dayOfWeek === 0 ? Chronos::today()->toDateString() : Chronos::parse( 'next sunday' )->toDateString() ), ], [ 'id' => 'this month', 'text' => esc_attr__( 'This month', 'fakerpress' ), 'min' => Chronos::today()->day( 1 )->toDateString(), 'max' => Chronos::parse( 'last day of this month' )->toDateString(), ], [ 'id' => 'this year', 'text' => esc_attr__( 'This year', 'fakerpress' ), 'min' => Chronos::today()->day( 1 )->month( 1 )->toDateString(), 'max' => Chronos::parse( 'last day of december' )->toDateString(), ], [ 'id' => 'last 15 days', 'text' => esc_attr__( 'Last 15 days', 'fakerpress' ), 'min' => Chronos::today()->subDays( 15 )->toDateString(), 'max' => Chronos::today()->toDateString(), ], [ 'id' => 'next 15 days', 'text' => esc_attr__( 'Next 15 Days', 'fakerpress' ), 'min' => Chronos::today()->toDateString(), 'max' => Chronos::today()->addDays( 15 )->toDateString(), ], ] ); } }