| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/piwik/core/Scheduler/Schedule/ |
Upload File : |
<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Scheduler\Schedule;
use Exception;
/**
* Weekly class is used to schedule tasks every week.
*
* @see \Piwik\Scheduler\Task
*/
class Weekly extends Schedule
{
/**
* @see ScheduledTime::getRescheduledTime
* @return int
*/
public function getRescheduledTime()
{
$currentTime = $this->getTime();
$daysFromNow = 7;
// Adjusts the scheduled day
if ($this->day !== null) {
$daysFromNow = ($this->day - date('N', $currentTime) + 7) % 7;
if ($daysFromNow == 0) {
$daysFromNow = 7;
}
}
// Adds correct number of days
$rescheduledTime = mktime(date('H', $currentTime),
date('i', $currentTime),
date('s', $currentTime),
date('n', $currentTime),
date('j', $currentTime) + $daysFromNow,
date('Y', $currentTime)
);
// Adjusts the scheduled hour
$rescheduledTime = $this->adjustHour($rescheduledTime);
$rescheduledTime = $this->adjustTimezone($rescheduledTime);
return $rescheduledTime;
}
/**
* @param int $day the day to set, has to be >= 1 and < 8
* @throws Exception if parameter _day is invalid
*/
public function setDay($day)
{
if (!is_int($day)) {
$day = self::getDayIntFromString($day);
}
if (!($day >= 1 && $day < 8)) {
throw new Exception("Invalid day parameter, must be >=1 and < 8");
}
$this->day = $day;
}
public static function getDayIntFromString($dayString)
{
$time = strtotime($dayString);
if ($time === false) {
throw new Exception("Invalid day string '$dayString'. Must be 'monday', 'tuesday', etc.");
}
return date("N", $time);
}
}