Merge pull request #6617 from colemanw/CRM-17102
[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.
7f0141d8 297 * @param CRM_Admin_Form_ScheduleReminders $self
6a488035 298 *
72b3a70c
CW
299 * @return bool|array
300 * true if no errors, else array of errors
6a488035 301 */
00be9182 302 public static function formRule($fields, $files, $self) {
6a488035 303 $errors = array();
8d657dde 304 if ((array_key_exists(1, $fields['entity']) && $fields['entity'][1][0] === 0) ||
6a488035
TO
305 (array_key_exists(2, $fields['entity']) && $fields['entity'][2][0] == 0)
306 ) {
307 $errors['entity'] = ts('Please select appropriate value');
308 }
309
fb90d6bb 310 if (!empty($fields['is_active']) &&
311 CRM_Utils_Array::value('mode', $fields) == 'SMS' &&
6a488035
TO
312 CRM_Utils_System::isNull($fields['subject'])
313 ) {
314 $errors['subject'] = ts('Subject is a required field.');
315 }
316
4d3e4dbe 317 if (empty($self->_context) && CRM_Utils_System::isNull(CRM_Utils_Array::value(1, $fields['entity']))) {
6a488035
TO
318 $errors['entity'] = ts('Please select entity value');
319 }
320
321 if (!CRM_Utils_System::isNull($fields['absolute_date'])) {
2ea4f315 322 if (CRM_Utils_Date::format(CRM_Utils_Date::processDate($fields['absolute_date'], NULL)) < CRM_Utils_Date::format(date('Ymd'))) {
6a488035
TO
323 $errors['absolute_date'] = ts('Absolute date cannot be earlier than the current time.');
324 }
325 }
326
84a3e359 327 $recipientKind = array(
328 'participant_role' => array(
329 'name' => 'participant role',
21dfd5f5 330 'target_id' => 'recipient_listing',
84a3e359 331 ),
332 'manual' => array(
333 'name' => 'recipient',
21dfd5f5
TO
334 'target_id' => 'recipient_manual_id',
335 ),
84a3e359 336 );
fb90d6bb 337 if ($fields['limit_to'] != '' && array_key_exists($fields['recipient'], $recipientKind) && empty($fields[$recipientKind[$fields['recipient']]['target_id']])) {
49d61c3a 338 $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 339 }
340
7f0141d8
TO
341 $actionSchedule = $self->parseActionSchedule($fields);
342 if ($actionSchedule->mapping_id) {
343 $mapping = CRM_Core_BAO_ActionSchedule::getMapping($actionSchedule->mapping_id);
344 CRM_Utils_Array::extend($errors, $mapping->validateSchedule($actionSchedule));
345 }
346
6a488035
TO
347 if (!empty($errors)) {
348 return $errors;
349 }
350
351 return empty($errors) ? TRUE : $errors;
352 }
353
e0ef6999
EM
354 /**
355 * @return int
356 */
00be9182 357 public function setDefaultValues() {
6a488035
TO
358 if ($this->_action & CRM_Core_Action::ADD) {
359 $defaults['is_active'] = 1;
a3e3eea1 360 $defaults['mode'] = 'Email';
6a488035
TO
361 $defaults['record_activity'] = 1;
362 }
363 else {
364 $defaults = $this->_values;
4d3e4dbe 365 $entityValue = explode(CRM_Core_DAO::VALUE_SEPARATOR, CRM_Utils_Array::value('entity_value', $defaults));
366 $entityStatus = explode(CRM_Core_DAO::VALUE_SEPARATOR, CRM_Utils_Array::value('entity_status', $defaults));
367 if (empty($this->_context)) {
368 $defaults['entity'][0] = CRM_Utils_Array::value('mapping_id', $defaults);
369 $defaults['entity'][1] = $entityValue;
370 $defaults['entity'][2] = $entityStatus;
371 }
372 else {
373 $defaults['entity'] = $entityStatus;
374 }
6a488035
TO
375 if ($absoluteDate = CRM_Utils_Array::value('absolute_date', $defaults)) {
376 list($date, $time) = CRM_Utils_Date::setDateDefaults($absoluteDate);
377 $defaults['absolute_date'] = $date;
378 }
379
380 if ($recipientListing = CRM_Utils_Array::value('recipient_listing', $defaults)) {
381 $defaults['recipient_listing'] = explode(CRM_Core_DAO::VALUE_SEPARATOR,
382 $recipientListing
383 );
384 }
385 $defaults['text_message'] = CRM_Utils_Array::value('body_text', $defaults);
386 $defaults['html_message'] = CRM_Utils_Array::value('body_html', $defaults);
1e035d58 387 $defaults['sms_text_message'] = CRM_Utils_Array::value('sms_body_text', $defaults);
6a488035 388 $defaults['template'] = CRM_Utils_Array::value('msg_template_id', $defaults);
1e035d58 389 $defaults['SMStemplate'] = CRM_Utils_Array::value('sms_template_id', $defaults);
a7488080 390 if (!empty($defaults['group_id'])) {
6a488035
TO
391 $defaults['recipient'] = 'group';
392 }
a7488080 393 elseif (!empty($defaults['recipient_manual'])) {
6a488035 394 $defaults['recipient'] = 'manual';
92f4a0b1 395 $defaults['recipient_manual_id'] = $defaults['recipient_manual'];
6a488035 396 }
776a4216 397 if ($contactLanguage = CRM_Utils_Array::value('filter_contact_language', $defaults)) {
fadd4d37 398 $defaults['filter_contact_language'] = explode(CRM_Core_DAO::VALUE_SEPARATOR, $contactLanguage);
776a4216 399 }
6a488035
TO
400 }
401
402 return $defaults;
403 }
404
405 /**
eceb18cc 406 * Process the form submission.
6a488035
TO
407 */
408 public function postProcess() {
409 if ($this->_action & CRM_Core_Action::DELETE) {
410 // delete reminder
411 CRM_Core_BAO_ActionSchedule::del($this->_id);
412 CRM_Core_Session::setStatus(ts('Selected Reminder has been deleted.'), ts('Record Deleted'), 'success');
4d3e4dbe 413 if ($this->_context == 'event' && $this->_compId) {
6a488035 414 $url = CRM_Utils_System::url('civicrm/event/manage/reminder',
4d3e4dbe 415 "reset=1&action=browse&id={$this->_compId}&component={$this->_context}&setTab=1"
6a488035
TO
416 );
417 $session = CRM_Core_Session::singleton();
418 $session->pushUserContext($url);
419 }
420 return;
421 }
422 $values = $this->controller->exportValues($this->getName());
7f0141d8
TO
423 $bao = $this->parseActionSchedule($values)->save();
424
425 // we need to set this on the form so that hooks can identify the created entity
426 $this->set('id', $bao->id);
427 $bao->free();
428
429 $status = ts("Your new Reminder titled %1 has been saved.",
430 array(1 => "<strong>{$values['title']}</strong>")
431 );
432
433 if ($this->_action) {
434 if ($this->_action & CRM_Core_Action::UPDATE) {
435 $status = ts("Your Reminder titled %1 has been updated.",
436 array(1 => "<strong>{$values['title']}</strong>")
437 );
438 }
439
440 if ($this->_context == 'event' && $this->_compId) {
441 $url = CRM_Utils_System::url('civicrm/event/manage/reminder', "reset=1&action=browse&id={$this->_compId}&component={$this->_context}&setTab=1");
442 $session = CRM_Core_Session::singleton();
443 $session->pushUserContext($url);
444 }
445 }
446 CRM_Core_Session::setStatus($status, ts('Saved'), 'success');
447 }
448
449 /**
450 * @param array $values
451 * The submitted form values.
452 * @return CRM_Core_DAO_ActionSchedule
453 */
454 public function parseActionSchedule($values) {
455 $params = array();
6a488035
TO
456
457 $keys = array(
458 'title',
459 'subject',
460 'absolute_date',
461 'group_id',
3e315abc 462 'record_activity',
a3e3eea1 463 'limit_to',
464 'mode',
1991bba1
DG
465 'sms_provider_id',
466 'from_name',
467 'from_email',
6a488035
TO
468 );
469 foreach ($keys as $key) {
470 $params[$key] = CRM_Utils_Array::value($key, $values);
471 }
472
2ef60934 473 $params['is_repeat'] = CRM_Utils_Array::value('is_repeat', $values, 0);
474
6a488035 475 $moreKeys = array(
3e315abc 476 'start_action_offset',
477 'start_action_unit',
478 'start_action_condition',
479 'start_action_date',
6a488035
TO
480 'repetition_frequency_unit',
481 'repetition_frequency_interval',
482 'end_frequency_unit',
483 'end_frequency_interval',
3e315abc 484 'end_action',
485 'end_date',
6a488035
TO
486 );
487
488 if ($absoluteDate = CRM_Utils_Array::value('absolute_date', $params)) {
489 $params['absolute_date'] = CRM_Utils_Date::processDate($absoluteDate);
2ef60934 490 $params['is_repeat'] = 0;
6a488035
TO
491 foreach ($moreKeys as $mkey) {
492 $params[$mkey] = 'null';
493 }
494 }
495 else {
496 $params['absolute_date'] = 'null';
497 foreach ($moreKeys as $mkey) {
498 $params[$mkey] = CRM_Utils_Array::value($mkey, $values);
499 }
500 }
501
502 $params['body_text'] = CRM_Utils_Array::value('text_message', $values);
1e035d58 503 $params['sms_body_text'] = CRM_Utils_Array::value('sms_text_message', $values);
6a488035
TO
504 $params['body_html'] = CRM_Utils_Array::value('html_message', $values);
505
506 if (CRM_Utils_Array::value('recipient', $values) == 'manual') {
507 $params['recipient_manual'] = CRM_Utils_Array::value('recipient_manual_id', $values);
508 $params['group_id'] = $params['recipient'] = $params['recipient_listing'] = 'null';
509 }
510 elseif (CRM_Utils_Array::value('recipient', $values) == 'group') {
511 $params['group_id'] = $values['group_id'];
512 $params['recipient_manual'] = $params['recipient'] = $params['recipient_listing'] = 'null';
513 }
7f0141d8 514 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
515 $params['recipient'] = CRM_Utils_Array::value('recipient', $values);
516 $params['recipient_listing'] = implode(CRM_Core_DAO::VALUE_SEPARATOR,
517 CRM_Utils_Array::value('recipient_listing', $values)
518 );
519 $params['group_id'] = $params['recipient_manual'] = 'null';
520 }
521 else {
522 $params['recipient'] = CRM_Utils_Array::value('recipient', $values);
523 $params['group_id'] = $params['recipient_manual'] = $params['recipient_listing'] = 'null';
524 }
525
4d3e4dbe 526 if (!empty($this->_mappingID) && !empty($this->_compId)) {
353ffa53 527 $params['mapping_id'] = $this->_mappingID;
4d3e4dbe 528 $params['entity_value'] = $this->_compId;
529 $params['entity_status'] = implode(CRM_Core_DAO::VALUE_SEPARATOR, $values['entity']);
84a3e359 530 }
4d3e4dbe 531 else {
532 $params['mapping_id'] = $values['entity'][0];
673cdfb4 533 if ($params['mapping_id'] == 1) {
4d3e4dbe 534 $params['limit_to'] = 1;
535 }
84a3e359 536
7f0141d8
TO
537 $entity_value = CRM_Utils_Array::value(1, $values['entity'], array());
538 $entity_status = CRM_Utils_Array::value(2, $values['entity'], array());
539 $params['entity_value'] = implode(CRM_Core_DAO::VALUE_SEPARATOR, $entity_value);
540 $params['entity_status'] = implode(CRM_Core_DAO::VALUE_SEPARATOR, $entity_status);
6a488035
TO
541 }
542
543 $params['is_active'] = CRM_Utils_Array::value('is_active', $values, 0);
6a488035
TO
544
545 if (CRM_Utils_Array::value('is_repeat', $values) == 0) {
546 $params['repetition_frequency_unit'] = 'null';
547 $params['repetition_frequency_interval'] = 'null';
548 $params['end_frequency_unit'] = 'null';
549 $params['end_frequency_interval'] = 'null';
550 $params['end_action'] = 'null';
551 $params['end_date'] = 'null';
552 }
553
776a4216 554 // multilingual options
7f0141d8 555 $params['filter_contact_language'] = CRM_Utils_Array::value('filter_contact_language', $values, array());
776a4216 556 $params['filter_contact_language'] = implode(CRM_Core_DAO::VALUE_SEPARATOR, $params['filter_contact_language']);
fadd4d37 557 $params['communication_language'] = CRM_Utils_Array::value('communication_language', $values, NULL);
776a4216 558
6a488035
TO
559 if ($this->_action & CRM_Core_Action::UPDATE) {
560 $params['id'] = $this->_id;
561 }
562 elseif ($this->_action & CRM_Core_Action::ADD) {
563 // we do this only once, so name never changes
564 $params['name'] = CRM_Utils_String::munge($params['title'], '_', 64);
565 }
566
1e035d58 567 $modePrefixes = array('Mail' => NULL, 'SMS' => 'SMS');
568
569 if ($params['mode'] == 'Email' || empty($params['sms_provider_id'])) {
570 unset($modePrefixes['SMS']);
571 }
572 elseif ($params['mode'] == 'SMS') {
573 unset($modePrefixes['Mail']);
574 }
575
576 //TODO: handle postprocessing of SMS and/or Email info based on $modePrefixes
577
6a488035 578 $composeFields = array(
353ffa53
TO
579 'template',
580 'saveTemplate',
581 'updateTemplate',
582 'saveTemplateName',
6a488035
TO
583 );
584 $msgTemplate = NULL;
585 //mail template is composed
586
1e035d58 587 foreach ($modePrefixes as $prefix) {
588 $composeParams = array();
589 foreach ($composeFields as $key) {
590 $key = $prefix . $key;
591 if (!empty($values[$key])) {
592 $composeParams[$key] = $values[$key];
593 }
6a488035 594 }
6a488035 595
1e035d58 596 if (!empty($composeParams[$prefix . 'updateTemplate'])) {
597 $templateParams = array('is_active' => TRUE);
598 if ($prefix == 'SMS') {
599 $templateParams += array(
600 'msg_text' => $params['sms_body_text'],
601 'is_sms' => TRUE,
02fc859b 602 );
1e035d58 603 }
604 else {
605 $templateParams += array(
606 'msg_text' => $params['body_text'],
607 'msg_html' => $params['body_html'],
608 'msg_subject' => $params['subject'],
609 );
610 }
611 $templateParams['id'] = $values[$prefix . 'template'];
612
613 $msgTemplate = CRM_Core_BAO_MessageTemplate::add($templateParams);
614 }
6a488035 615
1e035d58 616 if (!empty($composeParams[$prefix . 'saveTemplate'])) {
617 $templateParams = array('is_active' => TRUE);
618 if ($prefix == 'SMS') {
619 $templateParams += array(
620 'msg_text' => $params['sms_body_text'],
621 'is_sms' => TRUE,
622 );
623 }
624 else {
625 $templateParams += array(
626 'msg_text' => $params['body_text'],
627 'msg_html' => $params['body_html'],
628 'msg_subject' => $params['subject'],
629 );
630 }
631 $templateParams['msg_title'] = $composeParams[$prefix . 'saveTemplateName'];
632
633 $msgTemplate = CRM_Core_BAO_MessageTemplate::add($templateParams);
634 }
6a488035 635
1e035d58 636 if ($prefix == 'SMS') {
637 if (isset($msgTemplate->id)) {
638 $params['sms_template_id'] = $msgTemplate->id;
639 }
640 else {
641 $params['sms_template_id'] = CRM_Utils_Array::value('SMStemplate', $values);
642 }
643 }
644 else {
645 if (isset($msgTemplate->id)) {
646 $params['msg_template_id'] = $msgTemplate->id;
647 }
648 else {
649 $params['msg_template_id'] = CRM_Utils_Array::value('template', $values);
650 }
651 }
6a488035
TO
652 }
653
7f0141d8
TO
654 $actionSchedule = new CRM_Core_DAO_ActionSchedule();
655 $actionSchedule->copyValues($params);
656 return $actionSchedule;
6a488035 657 }
96025800 658
5ec6b0ad
TM
659 /**
660 * List available tokens for this form.
661 *
662 * @return array
663 */
664 public function listTokens() {
665 $tokens = CRM_Core_SelectValues::contactTokens();
666 $tokens = array_merge(CRM_Core_SelectValues::activityTokens(), $tokens);
667 $tokens = array_merge(CRM_Core_SelectValues::eventTokens(), $tokens);
668 $tokens = array_merge(CRM_Core_SelectValues::membershipTokens(), $tokens);
669 return $tokens;
670 }
671
6a488035 672}