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