40bce4d5334b0e1f667a483a157f7d560d54a620
[civicrm-core.git] / CRM / Admin / Form / ScheduleReminders.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
5 +--------------------------------------------------------------------+
6 | Copyright (C) 2011 Marty Wright |
7 | Licensed to CiviCRM under the Academic Free License version 3.0. |
8 +--------------------------------------------------------------------+
9 | This file is a part of CiviCRM. |
10 | |
11 | CiviCRM is free software; you can copy, modify, and distribute it |
12 | under the terms of the GNU Affero General Public License |
13 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | |
15 | CiviCRM is distributed in the hope that it will be useful, but |
16 | WITHOUT ANY WARRANTY; without even the implied warranty of |
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
18 | See the GNU Affero General Public License for more details. |
19 | |
20 | You should have received a copy of the GNU Affero General Public |
21 | License and the CiviCRM Licensing Exception along |
22 | with this program; if not, contact CiviCRM LLC |
23 | at info[AT]civicrm[DOT]org. If you have questions about the |
24 | GNU Affero General Public License or the licensing of CiviCRM, |
25 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
26 +--------------------------------------------------------------------+
27 */
28
29 /**
30 *
31 * @package CRM
32 * @copyright CiviCRM LLC (c) 2004-2013
33 * $Id$
34 *
35 */
36
37 /**
38 * This class generates form components for Scheduling Reminders
39 *
40 */
41 class CRM_Admin_Form_ScheduleReminders extends CRM_Admin_Form {
42
43 /**
44 * Scheduled Reminder ID
45 */
46 protected $_id = NULL;
47
48 public $_freqUnits;
49
50 /**
51 * Function to build the form
52 *
53 * @return None
54 * @access public
55 */
56 public function buildQuickForm() {
57 parent::buildQuickForm();
58 $this->_mappingID = $mappingID = NULL;
59
60 if ($this->_action & (CRM_Core_Action::DELETE)) {
61 $reminderName =
62 CRM_Core_DAO::getFieldValue('CRM_Core_DAO_ActionSchedule', $this->_id, 'title');
63 $this->_context = CRM_Utils_Request::retrieve('context', 'String', $this);
64 if ($this->_context == 'event') {
65 $this->_eventId = CRM_Utils_Request::retrieve('eventId', 'Integer', $this);
66 }
67 $this->assign('reminderName', $reminderName);
68 return;
69 }
70 elseif ($this->_action & (CRM_Core_Action::UPDATE)) {
71 $this->_mappingID =
72 CRM_Core_DAO::getFieldValue('CRM_Core_DAO_ActionSchedule', $this->_id, 'mapping_id');
73 $this->_context = CRM_Utils_Request::retrieve('context', 'String', $this);
74 if ($this->_context == 'event') {
75 $this->_eventId = CRM_Utils_Request::retrieve('eventId', 'Integer', $this);
76 }
77 }
78
79 if (!empty($_POST) && CRM_Utils_Array::value('entity', $_POST)) {
80 $mappingID = $_POST['entity'][0];
81 }
82 elseif ($this->_mappingID) {
83 $mappingID = $this->_mappingID;
84 }
85
86 $this->add(
87 'text',
88 'title',
89 ts('Title'),
90 array('size' => 45, 'maxlength' => 128),
91 TRUE
92 );
93
94 $selectionOptions = CRM_Core_BAO_ActionSchedule::getSelection($mappingID);
95 extract($selectionOptions);
96
97 if (empty($sel1)) {
98 CRM_Core_Error::fatal('Could not find mapping for scheduled reminders.');
99 }
100 $this->assign('entityMapping', json_encode($entityMapping));
101 $this->assign('recipientMapping', json_encode($recipientMapping));
102
103 $sel = & $this->add(
104 'hierselect',
105 'entity',
106 ts('Entity'),
107 array(
108 'name' => 'entity[0]',
109 'style' => 'vertical-align: top;',
110 ),
111 TRUE
112 );
113 $sel->setOptions(array($sel1, $sel2, $sel3));
114
115 if (is_a($sel->_elements[1], 'HTML_QuickForm_select')) {
116 // make second selector a multi-select -
117 $sel->_elements[1]->setMultiple(TRUE);
118 $sel->_elements[1]->setSize(5);
119 }
120
121 if (is_a($sel->_elements[2], 'HTML_QuickForm_select')) {
122 // make third selector a multi-select -
123 $sel->_elements[2]->setMultiple(TRUE);
124 $sel->_elements[2]->setSize(5);
125 }
126
127 //get the frequency units.
128 $this->_freqUnits = array('hour' => 'hour') + CRM_Core_OptionGroup::values('recur_frequency_units');
129
130 //pass the mapping ID in UPDATE mode
131 $mappings = CRM_Core_BAO_ActionSchedule::getMapping($mappingID);
132
133 $numericOptions = CRM_Core_SelectValues::getNumericOptions(0, 30);
134
135 //reminder_interval
136 $this->add('select', 'start_action_offset', ts('When'), $numericOptions);
137
138 foreach ($this->_freqUnits as $val => $label) {
139 $freqUnitsDisplay[$val] = ts('%1(s)', array(1 => $label));
140 }
141
142 $this->addDate('absolute_date', ts('Start Date'), FALSE, array('formatType' => 'mailing'));
143
144 //reminder_frequency
145 $this->add('select', 'start_action_unit', ts('Frequency'), $freqUnitsDisplay, TRUE);
146
147 $condition = array('before' => ts('before'),
148 'after' => ts('after'),
149 );
150 //reminder_action
151 $this->add('select', 'start_action_condition', ts('Action Condition'), $condition);
152
153 $this->add('select', 'start_action_date', ts('Date Field'), $sel4, TRUE);
154
155 $this->addElement('checkbox', 'record_activity', ts('Record activity for automated email'));
156
157 $this->addElement('checkbox', 'is_repeat', ts('Repeat'),
158 NULL, array('onclick' => "return showHideByValue('is_repeat',true,'repeatFields','table-row','radio',false);")
159 );
160
161 $this->add('select', 'repetition_frequency_unit', ts('every'), $freqUnitsDisplay);
162 $this->add('select', 'repetition_frequency_interval', ts('every'), $numericOptions);
163 $this->add('select', 'end_frequency_unit', ts('until'), $freqUnitsDisplay);
164 $this->add('select', 'end_frequency_interval', ts('until'), $numericOptions);
165 $this->add('select', 'end_action', ts('Repetition Condition'), $condition, TRUE);
166 $this->add('select', 'end_date', ts('Date Field'), $sel4, TRUE);
167
168 $recipient = 'activity_contacts';
169 $recipientListingOptions = array();
170
171 if ($mappingID) {
172 $recipient = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_ActionMapping',
173 $mappingID,
174 'entity_recipient'
175 );
176 }
177
178 $limitOptions = array(1 => ts('Limit to'), 0 => ts('Addition to'));
179 $this->add('select', 'limit_to', ts('Limit Options'), $limitOptions);
180
181 $this->add('select', 'recipient', ts('Recipients'), $sel5[$recipient],
182 FALSE, array('onClick' => "showHideByValue('recipient','manual','recipientManual','table-row','select',false); showHideByValue('recipient','group','recipientGroup','table-row','select',false);")
183 );
184
185 if (CRM_Utils_Array::value('is_recipient_listing', $_POST)) {
186 $recipientListingOptions = CRM_Core_BAO_ActionSchedule::getRecipientListing($_POST['entity'][0], $_POST['recipient']);
187 }
188 elseif (CRM_Utils_Array::value('recipient_listing', $this->_values)) {
189 $recipientListingOptions = CRM_Core_BAO_ActionSchedule::getRecipientListing($this->_values['mapping_id'], $this->_values['recipient']);
190 }
191 $recipientListing = $this->add('select', 'recipient_listing', ts('Recipient Listing'), $recipientListingOptions);
192 $recipientListing->setMultiple(TRUE);
193 $this->add('hidden', 'is_recipient_listing', empty($recipientListingOptions) ? FALSE : TRUE, array('id' => 'is_recipient_listing'));
194
195 //auto-complete url
196 $dataUrl = CRM_Utils_System::url('civicrm/ajax/rest',
197 'className=CRM_Contact_Page_AJAX&fnName=getContactList&json=1&context=activity&reset=1',
198 FALSE, NULL, FALSE
199 );
200
201 $this->assign('dataUrl', $dataUrl);
202 //token input url
203 $tokenUrl = CRM_Utils_System::url('civicrm/ajax/checkemail',
204 'noemail=1',
205 FALSE, NULL, FALSE
206 );
207 $this->assign('tokenUrl', $tokenUrl);
208 $this->add('text', 'recipient_manual_id', ts('Manual Recipients'));
209
210 $this->addElement('select', 'group_id', ts('Group'),
211 CRM_Core_PseudoConstant::staticGroup()
212 );
213
214 CRM_Mailing_BAO_Mailing::commonCompose($this);
215
216 $this->add('text', 'subject', ts('Subject'),
217 CRM_Core_DAO::getAttribute('CRM_Core_DAO_ActionSchedule', 'subject')
218 );
219
220 $this->add('checkbox', 'is_active', ts('Send email'));
221
222 $this->addFormRule(array('CRM_Admin_Form_ScheduleReminders', 'formRule'));
223 }
224 /**
225 * global form rule
226 *
227 * @param array $fields the input form values
228 *
229 * @return true if no errors, else array of errors
230 * @access public
231 * @static
232 */
233 static function formRule($fields) {
234 $errors = array();
235 if ((array_key_exists(1, $fields['entity']) && $fields['entity'][1][0] == 0) ||
236 (array_key_exists(2, $fields['entity']) && $fields['entity'][2][0] == 0)
237 ) {
238 $errors['entity'] = ts('Please select appropriate value');
239 }
240
241 if (CRM_Utils_Array::value('is_active', $fields) &&
242 CRM_Utils_System::isNull($fields['subject'])
243 ) {
244 $errors['subject'] = ts('Subject is a required field.');
245 }
246
247 if (CRM_Utils_System::isNull(CRM_Utils_Array::value(1, $fields['entity']))) {
248 $errors['entity'] = ts('Please select entity value');
249 }
250
251 if (!CRM_Utils_System::isNull($fields['absolute_date'])) {
252 if (CRM_Utils_Date::format(CRM_Utils_Date::processDate($fields['absolute_date'], NULL)) < CRM_Utils_Date::format(date('YmdHi00'))) {
253 $errors['absolute_date'] = ts('Absolute date cannot be earlier than the current time.');
254 }
255 }
256
257 if (!empty($errors)) {
258 return $errors;
259 }
260
261 return empty($errors) ? TRUE : $errors;
262 }
263
264 function setDefaultValues() {
265 if ($this->_action & CRM_Core_Action::ADD) {
266 $defaults['is_active'] = 1;
267 $defaults['record_activity'] = 1;
268 }
269 else {
270 $defaults = $this->_values;
271 $entityValue = explode(CRM_Core_DAO::VALUE_SEPARATOR,
272 CRM_Utils_Array::value('entity_value', $defaults)
273 );
274 $entityStatus = explode(CRM_Core_DAO::VALUE_SEPARATOR,
275 CRM_Utils_Array::value('entity_status', $defaults)
276 );
277 $defaults['entity'][0] = CRM_Utils_Array::value('mapping_id', $defaults);
278 $defaults['entity'][1] = $entityValue;
279 $defaults['entity'][2] = $entityStatus;
280 if ($absoluteDate = CRM_Utils_Array::value('absolute_date', $defaults)) {
281 list($date, $time) = CRM_Utils_Date::setDateDefaults($absoluteDate);
282 $defaults['absolute_date'] = $date;
283 }
284
285 if ($recipientListing = CRM_Utils_Array::value('recipient_listing', $defaults)) {
286 $defaults['recipient_listing'] = explode(CRM_Core_DAO::VALUE_SEPARATOR,
287 $recipientListing
288 );
289 }
290 $defaults['text_message'] = CRM_Utils_Array::value('body_text', $defaults);
291 $defaults['html_message'] = CRM_Utils_Array::value('body_html', $defaults);
292 $defaults['template'] = CRM_Utils_Array::value('msg_template_id', $defaults);
293 if (CRM_Utils_Array::value('group_id', $defaults)) {
294 $defaults['recipient'] = 'group';
295 }
296 elseif (CRM_Utils_Array::value('recipient_manual', $defaults)) {
297 $defaults['recipient'] = 'manual';
298 $recipients = array();
299 foreach (explode(',', $defaults['recipient_manual']) as $cid) {
300 $recipients[$cid] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact',
301 $cid,
302 'sort_name'
303 );
304 }
305 $this->assign('recipients', $recipients);
306 }
307 }
308
309 return $defaults;
310 }
311
312 /**
313 * Function to process the form
314 *
315 * @access public
316 *
317 * @return None
318 */
319 public function postProcess() {
320 if ($this->_action & CRM_Core_Action::DELETE) {
321 // delete reminder
322 CRM_Core_BAO_ActionSchedule::del($this->_id);
323 CRM_Core_Session::setStatus(ts('Selected Reminder has been deleted.'), ts('Record Deleted'), 'success');
324 if ($this->_context == 'event' && $this->_eventId) {
325 $url = CRM_Utils_System::url('civicrm/event/manage/reminder',
326 "reset=1&action=update&id={$this->_eventId}"
327 );
328 $session = CRM_Core_Session::singleton();
329 $session->pushUserContext($url);
330 }
331 return;
332 }
333 $values = $this->controller->exportValues($this->getName());
334
335 $keys = array(
336 'title',
337 'subject',
338 'absolute_date',
339 'group_id',
340 'record_activity',
341 'limit_to'
342 );
343 foreach ($keys as $key) {
344 $params[$key] = CRM_Utils_Array::value($key, $values);
345 }
346
347 $moreKeys = array(
348 'start_action_offset',
349 'start_action_unit',
350 'start_action_condition',
351 'start_action_date',
352 'repetition_frequency_unit',
353 'repetition_frequency_interval',
354 'end_frequency_unit',
355 'end_frequency_interval',
356 'end_action',
357 'end_date',
358 );
359
360 if ($absoluteDate = CRM_Utils_Array::value('absolute_date', $params)) {
361 $params['absolute_date'] = CRM_Utils_Date::processDate($absoluteDate);
362 foreach ($moreKeys as $mkey) {
363 $params[$mkey] = 'null';
364 }
365 }
366 else {
367 $params['absolute_date'] = 'null';
368 foreach ($moreKeys as $mkey) {
369 $params[$mkey] = CRM_Utils_Array::value($mkey, $values);
370 }
371 }
372
373 $params['body_text'] = CRM_Utils_Array::value('text_message', $values);
374 $params['body_html'] = CRM_Utils_Array::value('html_message', $values);
375
376 if (CRM_Utils_Array::value('recipient', $values) == 'manual') {
377 $params['recipient_manual'] = CRM_Utils_Array::value('recipient_manual_id', $values);
378 $params['group_id'] = $params['recipient'] = $params['recipient_listing'] = 'null';
379 }
380 elseif (CRM_Utils_Array::value('recipient', $values) == 'group') {
381 $params['group_id'] = $values['group_id'];
382 $params['recipient_manual'] = $params['recipient'] = $params['recipient_listing'] = 'null';
383 }
384 elseif (!CRM_Utils_System::isNull($values['recipient_listing'])) {
385 $params['recipient'] = CRM_Utils_Array::value('recipient', $values);
386 $params['recipient_listing'] = implode(CRM_Core_DAO::VALUE_SEPARATOR,
387 CRM_Utils_Array::value('recipient_listing', $values)
388 );
389 $params['group_id'] = $params['recipient_manual'] = 'null';
390 }
391 else {
392 $params['recipient'] = CRM_Utils_Array::value('recipient', $values);
393 $params['group_id'] = $params['recipient_manual'] = $params['recipient_listing'] = 'null';
394 }
395
396 $params['mapping_id'] = $values['entity'][0];
397 $entity_value = $values['entity'][1];
398 $entity_status = $values['entity'][2];
399
400 foreach (array(
401 'entity_value', 'entity_status') as $key) {
402 $params[$key] = implode(CRM_Core_DAO::VALUE_SEPARATOR, $$key);
403 }
404
405 $params['is_active'] = CRM_Utils_Array::value('is_active', $values, 0);
406 $params['is_repeat'] = CRM_Utils_Array::value('is_repeat', $values, 0);
407
408 if (CRM_Utils_Array::value('is_repeat', $values) == 0) {
409 $params['repetition_frequency_unit'] = 'null';
410 $params['repetition_frequency_interval'] = 'null';
411 $params['end_frequency_unit'] = 'null';
412 $params['end_frequency_interval'] = 'null';
413 $params['end_action'] = 'null';
414 $params['end_date'] = 'null';
415 }
416
417 if ($this->_action & CRM_Core_Action::UPDATE) {
418 $params['id'] = $this->_id;
419 }
420 elseif ($this->_action & CRM_Core_Action::ADD) {
421 // we do this only once, so name never changes
422 $params['name'] = CRM_Utils_String::munge($params['title'], '_', 64);
423 }
424
425 $composeFields = array(
426 'template', 'saveTemplate',
427 'updateTemplate', 'saveTemplateName',
428 );
429 $msgTemplate = NULL;
430 //mail template is composed
431
432 $composeParams = array();
433 foreach ($composeFields as $key) {
434 if (CRM_Utils_Array::value($key, $values)) {
435 $composeParams[$key] = $values[$key];
436 }
437 }
438
439 if (CRM_Utils_Array::value('updateTemplate', $composeParams)) {
440 $templateParams = array(
441 'msg_text' => $params['body_text'],
442 'msg_html' => $params['body_html'],
443 'msg_subject' => $params['subject'],
444 'is_active' => TRUE,
445 );
446
447 $templateParams['id'] = $values['template'];
448
449 $msgTemplate = CRM_Core_BAO_MessageTemplate::add($templateParams);
450 }
451
452 if (CRM_Utils_Array::value('saveTemplate', $composeParams)) {
453 $templateParams = array(
454 'msg_text' => $params['body_text'],
455 'msg_html' => $params['body_html'],
456 'msg_subject' => $params['subject'],
457 'is_active' => TRUE,
458 );
459
460 $templateParams['msg_title'] = $composeParams['saveTemplateName'];
461
462 $msgTemplate = CRM_Core_BAO_MessageTemplate::add($templateParams);
463 }
464
465 if (isset($msgTemplate->id)) {
466 $params['msg_template_id'] = $msgTemplate->id;
467 }
468 else {
469 $params['msg_template_id'] = CRM_Utils_Array::value('template', $values);
470 }
471
472 CRM_Core_BAO_ActionSchedule::add($params, $ids);
473
474 $status = ts("Your new Reminder titled %1 has been saved.",
475 array(1 => "<strong>{$values['title']}</strong>")
476 );
477 if ($this->_action & CRM_Core_Action::UPDATE) {
478 $status = ts("Your Reminder titled %1 has been updated.",
479 array(1 => "<strong>{$values['title']}</strong>")
480 );
481
482 if ($this->_context == 'event' && $this->_eventId) {
483 $url = CRM_Utils_System::url('civicrm/event/manage/reminder',
484 "reset=1&action=update&id={$this->_eventId}"
485 );
486 $session = CRM_Core_Session::singleton();
487 $session->pushUserContext($url);
488 }
489 }
490 CRM_Core_Session::setStatus($status, ts('Saved'), 'success');
491 }
492 }
493