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

Monthly.php « ScheduledTime « core - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 72521a3548e3d0e187bf40f6b22886baaa4cbd63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
/**
 * Piwik - Open source web analytics
 * 
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 * @version $Id$
 * 
 * @category Piwik
 * @package Piwik
 */

/**
 * Piwik_ScheduledTime_Monthly class is used to schedule tasks every month.
 *
 * @see Piwik_ScheduledTask
 * @package Piwik
 * @subpackage Piwik_ScheduledTime
 */
class Piwik_ScheduledTime_Monthly extends Piwik_ScheduledTime
{
    /**
     * @return int
     */
    public function getRescheduledTime()
	{
		$currentTime = $this->getTime();

		// Adds one month
		$rescheduledTime = mktime ( date('H', $currentTime),
									date('i', $currentTime), 
									date('s', $currentTime),
									date('n', $currentTime) + 1,
									1,
									date('Y', $currentTime)
									);

		$nextMonthLength = date('t', $rescheduledTime);

		// Sets scheduled day
        $scheduledDay = date('j', $currentTime);

		if ( $this->day !== null )
		{
			$scheduledDay = $this->day;
		}

		// Caps scheduled day
		if ( $scheduledDay > $nextMonthLength )
		{
			$scheduledDay = $nextMonthLength;
		}

		// Adjusts the scheduled day
		$rescheduledTime += ($scheduledDay - 1) * 86400;

		// Adjusts the scheduled hour
		$rescheduledTime = $this->adjustHour($rescheduledTime);
		
		return $rescheduledTime;
	}

	/**
	 * @param int $_day the day to set, has to be >= 1 and < 32
	 * @throws Exception if parameter _day is invalid
	 */
	public function setDay($_day)
	{
		if (!($_day >=1 && $_day < 32))
		{
			throw new Exception ("Invalid day parameter, must be >=1 and < 32");
		}

		$this->day = $_day;
	}
}