Backend\Modules\Analytics\DateRange\DateRange::__construct PHP 메소드

__construct() 공개 메소드

Sets the initial dates for the range
public __construct ( )
    public function __construct()
    {
        $this->startDate = strtotime('-1 week', mktime(0, 0, 0));
        $this->endDate = mktime(0, 0, 0);
    }