3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
29 * This interface defines methods that need to be implemented
30 * by every scheduled job (cron task) in CiviCRM.
33 * @copyright CiviCRM LLC (c) 2004-2015
37 class CRM_Core_ScheduledJob
{
43 var $apiParams = array();
45 var $remarks = array();
48 * @param array $params
50 public function __construct($params) {
51 foreach ($params as $name => $param) {
52 $this->$name = $param;
55 // version is set to 3 by default - if different number
56 // defined in params, it's replaced later on, however,
57 // it's practically useles, since it seems none of api v2
58 // will work properly in cron job setup. It might become
59 // useful when/if api v4 starts to emerge and will need
60 // testing in the cron job setup. To permanenty require
61 // hardcoded api version, it's enough to move below line
62 // under following if block.
63 $this->apiParams
= array('version' => $this->version
);
65 if (!empty($this->parameters
)) {
66 $lines = explode("\n", $this->parameters
);
68 foreach ($lines as $line) {
69 $pair = explode("=", $line);
70 if ($pair === FALSE ||
count($pair) != 2 ||
trim($pair[0]) == '' ||
trim($pair[1]) == '') {
71 $this->remarks
[] .= 'Malformed parameters!';
74 $this->apiParams
[trim($pair[0])] = trim($pair[1]);
82 public function saveLastRun($date = NULL) {
83 $dao = new CRM_Core_DAO_Job();
85 $dao->last_run
= ($date == NULL) ? CRM_Utils_Date
::currentDBDate() : CRM_Utils_Date
::currentDBDate($date);
92 public function needsRunning() {
93 // run if it was never run
94 if (empty($this->last_run
)) {
98 // run_frequency check
99 switch ($this->run_frequency
) {
112 $now = CRM_Utils_Date
::currentDBDate();
113 $dayAgo = strtotime('-1 day', strtotime($now));
114 $lastRun = strtotime($this->last_run
);
115 $nowDayOfWeek = date('l', strtotime($now));
116 return ($lastRun < $dayAgo && $nowDayOfWeek == 'Monday');
119 $now = CRM_Utils_Date
::currentDBDate();
120 $dayAgo = strtotime('-1 day', strtotime($now));
121 $lastRun = strtotime($this->last_run
);
122 $nowDayOfMonth = date('j', strtotime($now));
123 return ($lastRun < $dayAgo && $nowDayOfMonth == '1');
126 $now = CRM_Utils_Date
::currentDBDate();
127 $dayAgo = strtotime('-1 day', strtotime($now));
128 $lastRun = strtotime($this->last_run
);
129 $nowDayOfMonth = date('j', strtotime($now));
130 $nowMonth = date('n', strtotime($now));
131 $qtrMonths = array('1', '4', '7', '10');
132 return ($lastRun < $dayAgo && $nowDayOfMonth == '13' && in_array($nowMonth, $qtrMonths));
135 $now = CRM_Utils_Date
::currentDBDate();
136 $lastTime = date($format, strtotime($this->last_run
));
137 $thisTime = date($format, strtotime($now));
139 return ($lastTime <> $thisTime);
142 public function __destruct() {