Merge pull request #7919 from JMAConsulting/CRM-18152
[civicrm-core.git] / CRM / Admin / Form / ScheduleReminders.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
7cceb474 6 | Copyright CiviCRM LLC (c) 2004-2015 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
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. |
13 | |
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. |
18 | |
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 */
33
34/**
ce064e4f 35 * This class generates form components for Scheduling Reminders.
6a488035
TO
36 */
37class CRM_Admin_Form_ScheduleReminders extends CRM_Admin_Form {
38
39 /**
eceb18cc 40 * Scheduled Reminder ID.
6a488035
TO
41 */
42 protected $_id = NULL;
43
44 public $_freqUnits;
45
46 /**
eceb18cc 47 * Build the form object.
6a488035
TO
48 */
49 public function buildQuickForm() {
50 parent::buildQuickForm();
51 $this->_mappingID = $mappingID = NULL;
a3e3eea1 52 $providersCount = CRM_SMS_BAO_Provider::activeProviderCount();
4d3e4dbe 53 $this->_context = CRM_Utils_Request::retrieve('context', 'String', $this);
6a488035 54
9c74fabc
WA
55 //CRM-16777: Don't provide access to administer schedule reminder page, with user that does not have 'administer CiviCRM' permission
56 if (empty($this->_context) && !CRM_Core_Permission::check('administer CiviCRM')) {
57 CRM_Core_Error::fatal(ts('You do not have permission to access this page.'));
58 }
121eba46
WA
59 //CRM-16777: When user have ACLs 'edit' permission for specific event, do not give access to add, delete & updtae
60 //schedule reminder for other events.
61 else {
62 $this->_compId = CRM_Utils_Request::retrieve('compId', 'Integer', $this);
63 if (!CRM_Event_BAO_Event::checkPermission($this->_compId, CRM_Core_Permission::EDIT)) {
64 CRM_Core_Error::fatal(ts('You do not have permission to access this page.'));
65 }
66 }
9c74fabc 67
6a488035 68 if ($this->_action & (CRM_Core_Action::DELETE)) {
4d3e4dbe 69 $reminderName = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_ActionSchedule', $this->_id, 'title');
6a488035 70 if ($this->_context == 'event') {
4d3e4dbe 71 $this->_compId = CRM_Utils_Request::retrieve('compId', 'Integer', $this);
6a488035
TO
72 }
73 $this->assign('reminderName', $reminderName);
74 return;
75 }
76 elseif ($this->_action & (CRM_Core_Action::UPDATE)) {
c301f76e 77 $this->_mappingID = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_ActionSchedule', $this->_id, 'mapping_id');
6a488035 78 if ($this->_context == 'event') {
4d3e4dbe 79 $this->_compId = CRM_Utils_Request::retrieve('compId', 'Integer', $this);
6a488035
TO
80 }
81 }
4d3e4dbe 82 elseif (!empty($this->_context)) {
83 if ($this->_context == 'event') {
84 $this->_compId = CRM_Utils_Request::retrieve('compId', 'Integer', $this);
4d3e4dbe 85 $isTemplate = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $this->_compId, 'is_template');
50a23755 86 $mapping = CRM_Utils_Array::first(CRM_Core_BAO_ActionSchedule::getMappings(array(
46f5566c 87 'id' => $isTemplate ? CRM_Event_ActionMapping::EVENT_TPL_MAPPING_ID : CRM_Event_ActionMapping::EVENT_NAME_MAPPING_ID,
50a23755
TO
88 )));
89 if ($mapping) {
9e1bf145 90 $this->_mappingID = $mapping->getId();
50a23755
TO
91 }
92 else {
4d3e4dbe 93 CRM_Core_Error::fatal('Could not find mapping for event scheduled reminders.');
94 }
95 }
264ebe5d 96 }
97
02fc859b
TO
98 if (!empty($_POST) && !empty($_POST['entity']) && empty($this->_context)) {
99 $mappingID = $_POST['entity'][0];
100 }
101 elseif ($this->_mappingID) {
102 $mappingID = $this->_mappingID;
103 }
4d3e4dbe 104
6a488035
TO
105 $this->add(
106 'text',
107 'title',
108 ts('Title'),
109 array('size' => 45, 'maxlength' => 128),
110 TRUE
111 );
112
0905ee5d
TO
113 $mappings = CRM_Core_BAO_ActionSchedule::getMappings();
114 $selectedMapping = $mappings[$mappingID ? $mappingID : 1];
115 $entityRecipientLabels = $selectedMapping->getRecipientTypes() + CRM_Core_BAO_ActionSchedule::getAdditionalRecipients();
116 $this->assign('entityMapping', json_encode(
117 CRM_Utils_Array::collectMethod('getEntity', $mappings)
118 ));
119 $this->assign('recipientMapping', json_encode(
120 array_combine(array_keys($entityRecipientLabels), array_keys($entityRecipientLabels))
121 ));
6a488035 122
4d3e4dbe 123 if (empty($this->_context)) {
353ffa53 124 $sel = &$this->add(
4d3e4dbe 125 'hierselect',
353ffa53
TO
126 'entity',
127 ts('Entity'),
128 array(
129 'name' => 'entity[0]',
130 'style' => 'vertical-align: top;',
21c744ca 131 )
4d3e4dbe 132 );
0905ee5d
TO
133 $sel->setOptions(array(
134 CRM_Utils_Array::collectMethod('getLabel', $mappings),
135 CRM_Core_BAO_ActionSchedule::getAllEntityValueLabels(),
136 CRM_Core_BAO_ActionSchedule::getAllEntityStatusLabels(),
137 ));
6a488035 138
4d3e4dbe 139 if (is_a($sel->_elements[1], 'HTML_QuickForm_select')) {
140 // make second selector a multi-select -
141 $sel->_elements[1]->setMultiple(TRUE);
142 $sel->_elements[1]->setSize(5);
143 }
144
145 if (is_a($sel->_elements[2], 'HTML_QuickForm_select')) {
146 // make third selector a multi-select -
147 $sel->_elements[2]->setMultiple(TRUE);
148 $sel->_elements[2]->setSize(5);
149 }
150 }
151 else {
0905ee5d
TO
152 // Dig deeper - this code is sublimely stupid.
153 $allEntityStatusLabels = CRM_Core_BAO_ActionSchedule::getAllEntityStatusLabels();
154 $options = $allEntityStatusLabels[$this->_mappingID][0];
4d3e4dbe 155 $attributes = array('multiple' => 'multiple', 'class' => 'crm-select2 huge', 'placeholder' => $options[0]);
156 unset($options[0]);
157 $this->add('select', 'entity', ts('Recipient(s)'), $options, TRUE, $attributes);
158 $this->assign('context', $this->_context);
6a488035
TO
159 }
160
161 //get the frequency units.
8fe4b69f 162 $this->_freqUnits = CRM_Core_SelectValues::getRecurringFrequencyUnits();
6a488035 163
6a488035
TO
164 $numericOptions = CRM_Core_SelectValues::getNumericOptions(0, 30);
165
166 //reminder_interval
167 $this->add('select', 'start_action_offset', ts('When'), $numericOptions);
a3e3eea1 168 $isActive = ts('Send email');
169 $recordActivity = ts('Record activity for automated email');
170 if ($providersCount) {
7b007e61 171 $this->assign('sms', $providersCount);
a3e3eea1 172 $isActive = ts('Send email or SMS');
173 $recordActivity = ts('Record activity for automated email or SMS');
174 $options = CRM_Core_OptionGroup::values('msg_mode');
175 $this->add('select', 'mode', ts('Send as'), $options);
176
177 $providers = CRM_SMS_BAO_Provider::getProviders(NULL, NULL, TRUE, 'is_default desc');
178
179 $providerSelect = array();
180 foreach ($providers as $provider) {
181 $providerSelect[$provider['id']] = $provider['title'];
182 }
1e035d58 183 $this->add('select', 'sms_provider_id', ts('SMS Provider'), $providerSelect, TRUE);
a3e3eea1 184 }
6a488035
TO
185
186 foreach ($this->_freqUnits as $val => $label) {
187 $freqUnitsDisplay[$val] = ts('%1(s)', array(1 => $label));
188 }
189
190 $this->addDate('absolute_date', ts('Start Date'), FALSE, array('formatType' => 'mailing'));
191
192 //reminder_frequency
193 $this->add('select', 'start_action_unit', ts('Frequency'), $freqUnitsDisplay, TRUE);
194
02fc859b 195 $condition = array(
353ffa53 196 'before' => ts('before'),
6a488035
TO
197 'after' => ts('after'),
198 );
199 //reminder_action
200 $this->add('select', 'start_action_condition', ts('Action Condition'), $condition);
201
0905ee5d 202 $this->add('select', 'start_action_date', ts('Date Field'), $selectedMapping->getDateFields(), TRUE);
6a488035 203
a3e3eea1 204 $this->addElement('checkbox', 'record_activity', $recordActivity);
6a488035
TO
205
206 $this->addElement('checkbox', 'is_repeat', ts('Repeat'),
581c7be2 207 NULL, array('onchange' => "return showHideByValue('is_repeat',true,'repeatFields','table-row','radio',false);")
6a488035
TO
208 );
209
210 $this->add('select', 'repetition_frequency_unit', ts('every'), $freqUnitsDisplay);
211 $this->add('select', 'repetition_frequency_interval', ts('every'), $numericOptions);
212 $this->add('select', 'end_frequency_unit', ts('until'), $freqUnitsDisplay);
213 $this->add('select', 'end_frequency_interval', ts('until'), $numericOptions);
214 $this->add('select', 'end_action', ts('Repetition Condition'), $condition, TRUE);
0905ee5d 215 $this->add('select', 'end_date', ts('Date Field'), $selectedMapping->getDateFields(), TRUE);
6a488035 216
1991bba1 217 $this->add('text', 'from_name', ts('From Name'));
1e035d58 218 $this->add('text', 'from_email', ts('From Email'));
1991bba1 219
6a488035
TO
220 $recipientListingOptions = array();
221
222 if ($mappingID) {
50a23755
TO
223 $mapping = CRM_Utils_Array::first(CRM_Core_BAO_ActionSchedule::getMappings(array(
224 'id' => $mappingID,
225 )));
6a488035
TO
226 }
227
84a3e359 228 $limitOptions = array('' => '-neither-', 1 => ts('Limit to'), 0 => ts('Also include'));
8ef12e64 229
84a3e359 230 $recipientLabels = array('activity' => ts('Recipients'), 'other' => ts('Limit or Add Recipients'));
231 $this->assign('recipientLabels', $recipientLabels);
232
233 $this->add('select', 'limit_to', ts('Limit Options'), $limitOptions, FALSE, array('onChange' => "showHideByValue('limit_to','','recipient', 'select','select',true);"));
234
0905ee5d 235 $this->add('select', 'recipient', $recipientLabels['other'], $entityRecipientLabels,
581c7be2 236 FALSE, array('onchange' => "showHideByValue('recipient','manual','recipientManual','table-row','select',false); showHideByValue('recipient','group','recipientGroup','table-row','select',false);")
6a488035
TO
237 );
238
49d61c3a 239 if (!empty($this->_submitValues['recipient_listing'])) {
4d3e4dbe 240 if (!empty($this->_context)) {
241 $recipientListingOptions = CRM_Core_BAO_ActionSchedule::getRecipientListing($this->_mappingID, $this->_submitValues['recipient']);
242 }
243 else {
244 $recipientListingOptions = CRM_Core_BAO_ActionSchedule::getRecipientListing($_POST['entity'][0], $_POST['recipient']);
245 }
6a488035 246 }
a7488080 247 elseif (!empty($this->_values['recipient_listing'])) {
6a488035
TO
248 $recipientListingOptions = CRM_Core_BAO_ActionSchedule::getRecipientListing($this->_values['mapping_id'], $this->_values['recipient']);
249 }
4d3e4dbe 250
581c7be2
CW
251 $this->add('select', 'recipient_listing', ts('Recipient Roles'), $recipientListingOptions, FALSE,
252 array('multiple' => TRUE, 'class' => 'crm-select2 huge', 'placeholder' => TRUE));
6a488035 253
92f4a0b1 254 $this->addEntityRef('recipient_manual_id', ts('Manual Recipients'), array('multiple' => TRUE, 'create' => TRUE));
6a488035 255
581c7be2 256 $this->add('select', 'group_id', ts('Group'),
af5d5802 257 CRM_Core_PseudoConstant::nestedGroup('Mailing'), FALSE, array('class' => 'crm-select2 huge')
6a488035
TO
258 );
259
776a4216 260 // multilingual only options
273f9849 261 $multilingual = CRM_Core_I18n::isMultilingual();
776a4216
SV
262 if ($multilingual) {
263 $smarty = CRM_Core_Smarty::singleton();
264 $smarty->assign('multilingual', $multilingual);
265
273f9849
SV
266 $languages = CRM_Core_I18n::languages(TRUE);
267 $languageFilter = $languages + array(CRM_Core_I18n::NONE => ts('Contacts with no preferred language'));
776a4216
SV
268 $element = $this->add('select', 'filter_contact_language', ts('Recipients language'), $languageFilter, FALSE,
269 array('multiple' => TRUE, 'class' => 'crm-select2', 'placeholder' => TRUE));
270
b3518210 271 $communicationLanguage = array(
273f9849 272 '' => ts('System default language'),
aeb3ba30 273 CRM_Core_I18n::AUTO => ts('Follow recipient preferred language'),
273f9849 274 );
b3518210 275 $communicationLanguage = $communicationLanguage + $languages;
776a4216
SV
276 $this->add('select', 'communication_language', ts('Communication language'), $communicationLanguage);
277 }
278
6a488035
TO
279 CRM_Mailing_BAO_Mailing::commonCompose($this);
280
281 $this->add('text', 'subject', ts('Subject'),
282 CRM_Core_DAO::getAttribute('CRM_Core_DAO_ActionSchedule', 'subject')
283 );
284
a3e3eea1 285 $this->add('checkbox', 'is_active', $isActive);
6a488035 286
4d3e4dbe 287 $this->addFormRule(array('CRM_Admin_Form_ScheduleReminders', 'formRule'), $this);
581c7be2
CW
288
289 $this->setPageTitle(ts('Scheduled Reminder'));
6a488035 290 }
353ffa53 291
6a488035 292 /**
eceb18cc 293 * Global form rule.
6a488035 294 *
5173bd95
TO
295 * @param array $fields
296 * The input form values.
ea3ddccf 297 * @param array $files
7f0141d8 298 * @param CRM_Admin_Form_ScheduleReminders $self
6a488035 299 *
ea3ddccf 300 * @return array|bool
301 * True if no errors, else array of errors
6a488035 302 */
00be9182 303 public static function formRule($fields, $files, $self) {
6a488035 304 $errors = array();
8d657dde 305 if ((array_key_exists(1, $fields['entity']) && $fields['entity'][1][0] === 0) ||
6a488035
TO
306 (array_key_exists(2, $fields['entity']) && $fields['entity'][2][0] == 0)
307 ) {
308 $errors['entity'] = ts('Please select appropriate value');
309 }
310
fb90d6bb 311 if (!empty($fields['is_active']) &&
312 CRM_Utils_Array::value('mode', $fields) == 'SMS' &&
6a488035
TO
313 CRM_Utils_System::isNull($fields['subject'])
314 ) {
315 $errors['subject'] = ts('Subject is a required field.');
316 }
317
4d3e4dbe 318 if (empty($self->_context) && CRM_Utils_System::isNull(CRM_Utils_Array::value(1, $fields['entity']))) {
6a488035
TO
319 $errors['entity'] = ts('Please select entity value');
320 }
321
322 if (!CRM_Utils_System::isNull($fields['absolute_date'])) {
2ea4f315 323 if (CRM_Utils_Date::format(CRM_Utils_Date::processDate($fields['absolute_date'], NULL)) < CRM_Utils_Date::format(date('Ymd'))) {
6a488035
TO
324 $errors['absolute_date'] = ts('Absolute date cannot be earlier than the current time.');
325 }
326 }
327
84a3e359 328 $recipientKind = array(
329 'participant_role' => array(
330 'name' => 'participant role',
21dfd5f5 331 'target_id' => 'recipient_listing',
84a3e359 332 ),
333 'manual' => array(
334 'name' => 'recipient',
21dfd5f5
TO
335 'target_id' => 'recipient_manual_id',
336 ),
84a3e359 337 );
fb90d6bb 338 if ($fields['limit_to'] != '' && array_key_exists($fields['recipient'], $recipientKind) && empty($fields[$recipientKind[$fields['recipient']]['target_id']])) {
49d61c3a 339 $errors[$recipientKind[$fields['recipient']]['target_id']] = ts('If "Also include" or "Limit to" are selected, you must specify at least one %1', array(1 => $recipientKind[$fields['recipient']]['name']));
84a3e359 340 }
341
7f0141d8
TO
342 $actionSchedule = $self->parseActionSchedule($fields);
343 if ($actionSchedule->mapping_id) {
344 $mapping = CRM_Core_BAO_ActionSchedule::getMapping($actionSchedule->mapping_id);
345 CRM_Utils_Array::extend($errors, $mapping->validateSchedule($actionSchedule));
346 }
347
6a488035
TO
348 if (!empty($errors)) {
349 return $errors;
350 }
351
352 return empty($errors) ? TRUE : $errors;
353 }
354
e0ef6999
EM
355 /**
356 * @return int
357 */
00be9182 358 public function setDefaultValues() {
6a488035
TO
359 if ($this->_action & CRM_Core_Action::ADD) {
360 $defaults['is_active'] = 1;
a3e3eea1 361 $defaults['mode'] = 'Email';
6a488035
TO
362 $defaults['record_activity'] = 1;
363 }
364 else {
365 $defaults = $this->_values;
4d3e4dbe 366 $entityValue = explode(CRM_Core_DAO::VALUE_SEPARATOR, CRM_Utils_Array::value('entity_value', $defaults));
367 $entityStatus = explode(CRM_Core_DAO::VALUE_SEPARATOR, CRM_Utils_Array::value('entity_status', $defaults));
368 if (empty($this->_context)) {
369 $defaults['entity'][0] = CRM_Utils_Array::value('mapping_id', $defaults);
370 $defaults['entity'][1] = $entityValue;
371 $defaults['entity'][2] = $entityStatus;
372 }
373 else {
374 $defaults['entity'] = $entityStatus;
375 }
6a488035
TO
376 if ($absoluteDate = CRM_Utils_Array::value('absolute_date', $defaults)) {
377 list($date, $time) = CRM_Utils_Date::setDateDefaults($absoluteDate);
378 $defaults['absolute_date'] = $date;
379 }
380
381 if ($recipientListing = CRM_Utils_Array::value('recipient_listing', $defaults)) {
382 $defaults['recipient_listing'] = explode(CRM_Core_DAO::VALUE_SEPARATOR,
383 $recipientListing
384 );
385 }
386 $defaults['text_message'] = CRM_Utils_Array::value('body_text', $defaults);
387 $defaults['html_message'] = CRM_Utils_Array::value('body_html', $defaults);
1e035d58 388 $defaults['sms_text_message'] = CRM_Utils_Array::value('sms_body_text', $defaults);
6a488035 389 $defaults['template'] = CRM_Utils_Array::value('msg_template_id', $defaults);
1e035d58 390 $defaults['SMStemplate'] = CRM_Utils_Array::value('sms_template_id', $defaults);
a7488080 391 if (!empty($defaults['group_id'])) {
6a488035
TO
392 $defaults['recipient'] = 'group';
393 }
a7488080 394 elseif (!empty($defaults['recipient_manual'])) {
6a488035 395 $defaults['recipient'] = 'manual';
92f4a0b1 396 $defaults['recipient_manual_id'] = $defaults['recipient_manual'];
6a488035 397 }
776a4216 398 if ($contactLanguage = CRM_Utils_Array::value('filter_contact_language', $defaults)) {
fadd4d37 399 $defaults['filter_contact_language'] = explode(CRM_Core_DAO::VALUE_SEPARATOR, $contactLanguage);
776a4216 400 }
6a488035
TO
401 }
402
403 return $defaults;
404 }
405
406 /**
eceb18cc 407 * Process the form submission.
6a488035
TO
408 */
409 public function postProcess() {
410 if ($this->_action & CRM_Core_Action::DELETE) {
411 // delete reminder
412 CRM_Core_BAO_ActionSchedule::del($this->_id);
413 CRM_Core_Session::setStatus(ts('Selected Reminder has been deleted.'), ts('Record Deleted'), 'success');
4d3e4dbe 414 if ($this->_context == 'event' && $this->_compId) {
6a488035 415 $url = CRM_Utils_System::url('civicrm/event/manage/reminder',
4d3e4dbe 416 "reset=1&action=browse&id={$this->_compId}&component={$this->_context}&setTab=1"
6a488035
TO
417 );
418 $session = CRM_Core_Session::singleton();
419 $session->pushUserContext($url);
420 }
421 return;
422 }
423 $values = $this->controller->exportValues($this->getName());
7f0141d8
TO
424 $bao = $this->parseActionSchedule($values)->save();
425
426 // we need to set this on the form so that hooks can identify the created entity
427 $this->set('id', $bao->id);
428 $bao->free();
429
430 $status = ts("Your new Reminder titled %1 has been saved.",
431 array(1 => "<strong>{$values['title']}</strong>")
432 );
433
434 if ($this->_action) {
435 if ($this->_action & CRM_Core_Action::UPDATE) {
436 $status = ts("Your Reminder titled %1 has been updated.",
437 array(1 => "<strong>{$values['title']}</strong>")
438 );
439 }
440
441 if ($this->_context == 'event' && $this->_compId) {
442 $url = CRM_Utils_System::url('civicrm/event/manage/reminder', "reset=1&action=browse&id={$this->_compId}&component={$this->_context}&setTab=1");
443 $session = CRM_Core_Session::singleton();
444 $session->pushUserContext($url);
445 }
446 }
447 CRM_Core_Session::setStatus($status, ts('Saved'), 'success');
448 }
449
450 /**
451 * @param array $values
452 * The submitted form values.
453 * @return CRM_Core_DAO_ActionSchedule
454 */
455 public function parseActionSchedule($values) {
456 $params = array();
6a488035
TO
457
458 $keys = array(
459 'title',
460 'subject',
461 'absolute_date',
462 'group_id',
3e315abc 463 'record_activity',
a3e3eea1 464 'limit_to',
465 'mode',
1991bba1
DG
466 'sms_provider_id',
467 'from_name',
468 'from_email',
6a488035
TO
469 );
470 foreach ($keys as $key) {
471 $params[$key] = CRM_Utils_Array::value($key, $values);
472 }
473
2ef60934 474 $params['is_repeat'] = CRM_Utils_Array::value('is_repeat', $values, 0);
475
6a488035 476 $moreKeys = array(
3e315abc 477 'start_action_offset',
478 'start_action_unit',
479 'start_action_condition',
480 'start_action_date',
6a488035
TO
481 'repetition_frequency_unit',
482 'repetition_frequency_interval',
483 'end_frequency_unit',
484 'end_frequency_interval',
3e315abc 485 'end_action',
486 'end_date',
6a488035
TO
487 );
488
489 if ($absoluteDate = CRM_Utils_Array::value('absolute_date', $params)) {
490 $params['absolute_date'] = CRM_Utils_Date::processDate($absoluteDate);
2ef60934 491 $params['is_repeat'] = 0;
6a488035
TO
492 foreach ($moreKeys as $mkey) {
493 $params[$mkey] = 'null';
494 }
495 }
496 else {
497 $params['absolute_date'] = 'null';
498 foreach ($moreKeys as $mkey) {
499 $params[$mkey] = CRM_Utils_Array::value($mkey, $values);
500 }
501 }
502
503 $params['body_text'] = CRM_Utils_Array::value('text_message', $values);
1e035d58 504 $params['sms_body_text'] = CRM_Utils_Array::value('sms_text_message', $values);
6a488035
TO
505 $params['body_html'] = CRM_Utils_Array::value('html_message', $values);
506
507 if (CRM_Utils_Array::value('recipient', $values) == 'manual') {
508 $params['recipient_manual'] = CRM_Utils_Array::value('recipient_manual_id', $values);
509 $params['group_id'] = $params['recipient'] = $params['recipient_listing'] = 'null';
510 }
511 elseif (CRM_Utils_Array::value('recipient', $values) == 'group') {
512 $params['group_id'] = $values['group_id'];
513 $params['recipient_manual'] = $params['recipient'] = $params['recipient_listing'] = 'null';
514 }
7f0141d8 515 elseif (isset($values['recipient_listing']) && isset($values['limit_to']) && !CRM_Utils_System::isNull($values['recipient_listing']) && !CRM_Utils_System::isNull($values['limit_to'])) {
6a488035
TO
516 $params['recipient'] = CRM_Utils_Array::value('recipient', $values);
517 $params['recipient_listing'] = implode(CRM_Core_DAO::VALUE_SEPARATOR,
518 CRM_Utils_Array::value('recipient_listing', $values)
519 );
520 $params['group_id'] = $params['recipient_manual'] = 'null';
521 }
522 else {
523 $params['recipient'] = CRM_Utils_Array::value('recipient', $values);
524 $params['group_id'] = $params['recipient_manual'] = $params['recipient_listing'] = 'null';
525 }
526
4d3e4dbe 527 if (!empty($this->_mappingID) && !empty($this->_compId)) {
353ffa53 528 $params['mapping_id'] = $this->_mappingID;
4d3e4dbe 529 $params['entity_value'] = $this->_compId;
530 $params['entity_status'] = implode(CRM_Core_DAO::VALUE_SEPARATOR, $values['entity']);
84a3e359 531 }
4d3e4dbe 532 else {
533 $params['mapping_id'] = $values['entity'][0];
673cdfb4 534 if ($params['mapping_id'] == 1) {
4d3e4dbe 535 $params['limit_to'] = 1;
536 }
84a3e359 537
7f0141d8
TO
538 $entity_value = CRM_Utils_Array::value(1, $values['entity'], array());
539 $entity_status = CRM_Utils_Array::value(2, $values['entity'], array());
540 $params['entity_value'] = implode(CRM_Core_DAO::VALUE_SEPARATOR, $entity_value);
541 $params['entity_status'] = implode(CRM_Core_DAO::VALUE_SEPARATOR, $entity_status);
6a488035
TO
542 }
543
544 $params['is_active'] = CRM_Utils_Array::value('is_active', $values, 0);
6a488035
TO
545
546 if (CRM_Utils_Array::value('is_repeat', $values) == 0) {
547 $params['repetition_frequency_unit'] = 'null';
548 $params['repetition_frequency_interval'] = 'null';
549 $params['end_frequency_unit'] = 'null';
550 $params['end_frequency_interval'] = 'null';
551 $params['end_action'] = 'null';
552 $params['end_date'] = 'null';
553 }
554
776a4216 555 // multilingual options
7f0141d8 556 $params['filter_contact_language'] = CRM_Utils_Array::value('filter_contact_language', $values, array());
776a4216 557 $params['filter_contact_language'] = implode(CRM_Core_DAO::VALUE_SEPARATOR, $params['filter_contact_language']);
fadd4d37 558 $params['communication_language'] = CRM_Utils_Array::value('communication_language', $values, NULL);
776a4216 559
6a488035
TO
560 if ($this->_action & CRM_Core_Action::UPDATE) {
561 $params['id'] = $this->_id;
562 }
563 elseif ($this->_action & CRM_Core_Action::ADD) {
564 // we do this only once, so name never changes
565 $params['name'] = CRM_Utils_String::munge($params['title'], '_', 64);
566 }
567
1e035d58 568 $modePrefixes = array('Mail' => NULL, 'SMS' => 'SMS');
569
570 if ($params['mode'] == 'Email' || empty($params['sms_provider_id'])) {
571 unset($modePrefixes['SMS']);
572 }
573 elseif ($params['mode'] == 'SMS') {
574 unset($modePrefixes['Mail']);
575 }
576
577 //TODO: handle postprocessing of SMS and/or Email info based on $modePrefixes
578
6a488035 579 $composeFields = array(
353ffa53
TO
580 'template',
581 'saveTemplate',
582 'updateTemplate',
583 'saveTemplateName',
6a488035
TO
584 );
585 $msgTemplate = NULL;
586 //mail template is composed
587
1e035d58 588 foreach ($modePrefixes as $prefix) {
589 $composeParams = array();
590 foreach ($composeFields as $key) {
591 $key = $prefix . $key;
592 if (!empty($values[$key])) {
593 $composeParams[$key] = $values[$key];
594 }
6a488035 595 }
6a488035 596
1e035d58 597 if (!empty($composeParams[$prefix . 'updateTemplate'])) {
598 $templateParams = array('is_active' => TRUE);
599 if ($prefix == 'SMS') {
600 $templateParams += array(
601 'msg_text' => $params['sms_body_text'],
602 'is_sms' => TRUE,
02fc859b 603 );
1e035d58 604 }
605 else {
606 $templateParams += array(
607 'msg_text' => $params['body_text'],
608 'msg_html' => $params['body_html'],
609 'msg_subject' => $params['subject'],
610 );
611 }
612 $templateParams['id'] = $values[$prefix . 'template'];
613
614 $msgTemplate = CRM_Core_BAO_MessageTemplate::add($templateParams);
615 }
6a488035 616
1e035d58 617 if (!empty($composeParams[$prefix . 'saveTemplate'])) {
618 $templateParams = array('is_active' => TRUE);
619 if ($prefix == 'SMS') {
620 $templateParams += array(
621 'msg_text' => $params['sms_body_text'],
622 'is_sms' => TRUE,
623 );
624 }
625 else {
626 $templateParams += array(
627 'msg_text' => $params['body_text'],
628 'msg_html' => $params['body_html'],
629 'msg_subject' => $params['subject'],
630 );
631 }
632 $templateParams['msg_title'] = $composeParams[$prefix . 'saveTemplateName'];
633
634 $msgTemplate = CRM_Core_BAO_MessageTemplate::add($templateParams);
635 }
6a488035 636
1e035d58 637 if ($prefix == 'SMS') {
638 if (isset($msgTemplate->id)) {
639 $params['sms_template_id'] = $msgTemplate->id;
640 }
641 else {
642 $params['sms_template_id'] = CRM_Utils_Array::value('SMStemplate', $values);
643 }
644 }
645 else {
646 if (isset($msgTemplate->id)) {
647 $params['msg_template_id'] = $msgTemplate->id;
648 }
649 else {
650 $params['msg_template_id'] = CRM_Utils_Array::value('template', $values);
651 }
652 }
6a488035
TO
653 }
654
7f0141d8
TO
655 $actionSchedule = new CRM_Core_DAO_ActionSchedule();
656 $actionSchedule->copyValues($params);
657 return $actionSchedule;
6a488035 658 }
96025800 659
5ec6b0ad
TM
660 /**
661 * List available tokens for this form.
662 *
663 * @return array
664 */
665 public function listTokens() {
666 $tokens = CRM_Core_SelectValues::contactTokens();
667 $tokens = array_merge(CRM_Core_SelectValues::activityTokens(), $tokens);
668 $tokens = array_merge(CRM_Core_SelectValues::eventTokens(), $tokens);
669 $tokens = array_merge(CRM_Core_SelectValues::membershipTokens(), $tokens);
670 return $tokens;
671 }
672
6a488035 673}