Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/ArchiveProcessor/Parameters.php')
-rw-r--r--core/ArchiveProcessor/Parameters.php26
1 files changed, 25 insertions, 1 deletions
diff --git a/core/ArchiveProcessor/Parameters.php b/core/ArchiveProcessor/Parameters.php
index 4edd1f4b58..752557a868 100644
--- a/core/ArchiveProcessor/Parameters.php
+++ b/core/ArchiveProcessor/Parameters.php
@@ -154,12 +154,36 @@ class Parameters
}
/**
+ * Returns the start day of the period in the site's timezone (includes the time of day).
+ *
+ * @return Date
+ */
+ public function getDateTimeStart()
+ {
+ return $this->getPeriod()->getDateTimeStart()->setTimezone($this->getSite()->getTimezone());
+ }
+
+ /**
+ * Returns the end day of the period in the site's timezone (includes the time of day).
+ *
+ * @return Date
+ */
+ public function getDateTimeEnd()
+ {
+ return $this->getPeriod()->getDateTimeEnd()->setTimezone($this->getSite()->getTimezone());
+ }
+
+ /**
* @return bool
*/
public function isSingleSiteDayArchive()
{
$oneSite = $this->isSingleSite();
- $oneDay = $this->getPeriod()->getLabel() == 'day';
+
+ $period = $this->getPeriod();
+ $secondsInPeriod = $period->getDateEnd()->getTimestampUTC() - $period->getDateStart()->getTimestampUTC();
+ $oneDay = $secondsInPeriod <= Date::NUM_SECONDS_IN_DAY;
+
return $oneDay && $oneSite;
}