[NFC] fix more places where var is declared as boolean rather than bool
[civicrm-core.git] / CRM / Activity / Form / Activity.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
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
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
32 */
33
34/**
b6c94f42 35 * This class generates form components for Activity.
6a488035
TO
36 */
37class CRM_Activity_Form_Activity extends CRM_Contact_Form_Task {
38
39 /**
40 * The id of the object being edited / created
41 *
42 * @var int
43 */
44 public $_activityId;
45
52c7b3a2 46 /**
fe482240 47 * Store activity ids when multiple activities are created.
52c7b3a2
KJ
48 *
49 * @var int
50 */
96f94695 51 public $_activityIds = [];
52c7b3a2 52
6a488035 53 /**
fe482240 54 * The id of activity type.
6a488035
TO
55 *
56 * @var int
57 */
58 public $_activityTypeId;
59
60 /**
fe482240 61 * The name of activity type.
6a488035
TO
62 *
63 * @var string
64 */
65 public $_activityTypeName;
66
67 /**
fe482240 68 * The id of currently viewed contact.
6a488035
TO
69 *
70 * @var int
71 */
72 public $_currentlyViewedContactId;
73
74 /**
fe482240 75 * The id of source contact and target contact.
6a488035
TO
76 *
77 * @var int
78 */
79 protected $_sourceContactId;
80 protected $_targetContactId;
81 protected $_asigneeContactId;
82
83 protected $_single;
84
85 public $_context;
86 public $_compContext;
87 public $_action;
88 public $_activityTypeFile;
89
90 /**
91 * The id of the logged in user, used when add / edit
92 *
93 * @var int
94 */
95 public $_currentUserId;
96
97 /**
fe482240 98 * The array of form field attributes.
6a488035
TO
99 *
100 * @var array
101 */
102 public $_fields;
103
104 /**
105 * The the directory inside CRM, to include activity type file from
106 *
107 * @var string
108 */
109 protected $_crmDir = 'Activity';
110
c490a46a 111 /**
fe482240 112 * Survey activity.
c490a46a 113 *
d51c6add 114 * @var bool
c490a46a 115 */
6a488035
TO
116 protected $_isSurveyActivity;
117
96f94695 118 protected $_values = [];
6a488035 119
c087eb82 120 protected $unsavedWarn = TRUE;
d5965a37 121
62d3ee27
SL
122 /**
123 *
53c79877
SM
124 * Is it possible to create separate activities with this form?
125 *
126 * When TRUE, the form will ask whether the user wants to create separate
127 * activities (if the user has specified multiple contacts in the "with"
128 * field).
129 *
130 * When FALSE, the form will create one activity with all contacts together
131 * and won't ask the user anything.
132 *
133 * Note: This is a class property so that child classes can turn off this
134 * behavior (e.g. in CRM_Case_Form_Activity)
135 *
d51c6add 136 * @var bool
62d3ee27 137 *
53c79877 138 */
62d3ee27 139
53c79877
SM
140 protected $supportsActivitySeparation = TRUE;
141
d5965a37 142 /**
6e62b28c 143 * Explicitly declare the entity api name.
7808aae6
SB
144 *
145 * @return string
6e62b28c
TM
146 */
147 public function getDefaultEntity() {
148 return 'Activity';
149 }
59d63f8b 150
6a488035
TO
151 /**
152 * The _fields var can be used by sub class to set/unset/edit the
153 * form fields based on their requirement
6a488035 154 */
00be9182 155 public function setFields() {
056878d2
CW
156 // Remove print document activity type
157 $unwanted = CRM_Core_OptionGroup::values('activity_type', FALSE, FALSE, FALSE, "AND v.name = 'Print PDF Letter'");
158 $activityTypes = array_diff_key(CRM_Core_PseudoConstant::ActivityType(FALSE), $unwanted);
159
96f94695 160 $this->_fields = [
161 'subject' => [
6a488035
TO
162 'type' => 'text',
163 'label' => ts('Subject'),
96f94695 164 'attributes' => CRM_Core_DAO::getAttribute('CRM_Activity_DAO_Activity', 'activity_subject'),
165 ],
166 'duration' => [
4b2fda1e 167 'type' => 'number',
6a488035 168 'label' => ts('Duration'),
96f94695 169 'attributes' => ['class' => 'four', 'min' => 1],
6a488035 170 'required' => FALSE,
96f94695 171 ],
172 'location' => [
6a488035
TO
173 'type' => 'text',
174 'label' => ts('Location'),
9d72cede 175 'attributes' => CRM_Core_DAO::getAttribute('CRM_Activity_DAO_Activity', 'location'),
21dfd5f5 176 'required' => FALSE,
96f94695 177 ],
178 'details' => [
6a488035
TO
179 'type' => 'wysiwyg',
180 'label' => ts('Details'),
96f94695 181 'attributes' => ['class' => 'huge'],
21dfd5f5 182 'required' => FALSE,
96f94695 183 ],
184 'status_id' => [
6a488035 185 'type' => 'select',
475e9f44 186 'required' => TRUE,
96f94695 187 ],
188 'priority_id' => [
6a488035 189 'type' => 'select',
475e9f44 190 'required' => TRUE,
96f94695 191 ],
192 'source_contact_id' => [
c27ebe4e 193 'type' => 'entityRef',
6a488035 194 'label' => ts('Added By'),
21dfd5f5 195 'required' => FALSE,
96f94695 196 ],
197 'target_contact_id' => [
c27ebe4e
CW
198 'type' => 'entityRef',
199 'label' => ts('With Contact'),
96f94695 200 'attributes' => ['multiple' => TRUE, 'create' => TRUE],
201 ],
202 'assignee_contact_id' => [
c27ebe4e 203 'type' => 'entityRef',
3bd48a28 204 'label' => ts('Assigned to'),
96f94695 205 'attributes' => [
353ffa53
TO
206 'multiple' => TRUE,
207 'create' => TRUE,
96f94695 208 'api' => ['params' => ['is_deceased' => 0]],
209 ],
210 ],
211 'activity_date_time' => [
d104311a
CW
212 'type' => 'datepicker',
213 'label' => ts('Date'),
214 'required' => TRUE,
96f94695 215 ],
216 'followup_assignee_contact_id' => [
c27ebe4e 217 'type' => 'entityRef',
3bd48a28 218 'label' => ts('Assigned to'),
96f94695 219 'attributes' => [
353ffa53
TO
220 'multiple' => TRUE,
221 'create' => TRUE,
96f94695 222 'api' => ['params' => ['is_deceased' => 0]],
223 ],
224 ],
225 'followup_activity_type_id' => [
6a488035
TO
226 'type' => 'select',
227 'label' => ts('Followup Activity'),
96f94695 228 'attributes' => ['' => '- ' . ts('select activity') . ' -'] + $activityTypes,
229 'extra' => ['class' => 'crm-select2'],
230 ],
6a488035 231 // Add optional 'Subject' field for the Follow-up Activiity, CRM-4491
96f94695 232 'followup_activity_subject' => [
6a488035
TO
233 'type' => 'text',
234 'label' => ts('Subject'),
96f94695 235 'attributes' => CRM_Core_DAO::getAttribute('CRM_Activity_DAO_Activity', 'subject'),
236 ],
237 ];
6a488035
TO
238 }
239
240 /**
fe482240 241 * Build the form object.
6a488035 242 */
00be9182 243 public function preProcess() {
b334d9ad 244 CRM_Core_Form_RecurringEntity::preProcess('civicrm_activity');
6a488035
TO
245 $this->_atypefile = CRM_Utils_Array::value('atypefile', $_GET);
246 $this->assign('atypefile', FALSE);
247 if ($this->_atypefile) {
248 $this->assign('atypefile', TRUE);
249 }
250
251 $session = CRM_Core_Session::singleton();
3bdcd4ec 252 $this->_currentUserId = CRM_Core_Session::getLoggedInContactID();
6a488035
TO
253
254 $this->_currentlyViewedContactId = $this->get('contactId');
255 if (!$this->_currentlyViewedContactId) {
256 $this->_currentlyViewedContactId = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
257 }
258 $this->assign('contactId', $this->_currentlyViewedContactId);
259
7808aae6 260 // Give the context.
6a488035 261 if (!isset($this->_context)) {
edc80cda 262 $this->_context = CRM_Utils_Request::retrieve('context', 'Alphanumeric', $this);
6a488035
TO
263 if (CRM_Contact_Form_Search::isSearchContext($this->_context)) {
264 $this->_context = 'search';
265 }
0d48f1cc 266 elseif (!in_array($this->_context, ['dashlet', 'case', 'dashletFullscreen'])
6a488035
TO
267 && $this->_currentlyViewedContactId
268 ) {
269 $this->_context = 'activity';
270 }
271 $this->_compContext = CRM_Utils_Request::retrieve('compContext', 'String', $this);
272 }
273
274 $this->assign('context', $this->_context);
275
276 $this->_action = CRM_Utils_Request::retrieve('action', 'String', $this);
277
278 if ($this->_action & CRM_Core_Action::DELETE) {
279 if (!CRM_Core_Permission::check('delete activities')) {
0499b0ad 280 CRM_Core_Error::fatal(ts('You do not have permission to access this page.'));
6a488035
TO
281 }
282 }
283
7808aae6
SB
284 // CRM-6957
285 // When we come from contact search, activity id never comes.
286 // So don't try to get from object, it might gives you wrong one.
6a488035
TO
287
288 // if we're not adding new one, there must be an id to
289 // an activity we're trying to work on.
290 if ($this->_action != CRM_Core_Action::ADD &&
291 get_class($this->controller) != 'CRM_Contact_Controller_Search'
292 ) {
293 $this->_activityId = CRM_Utils_Request::retrieve('id', 'Positive', $this);
294 }
295
296 $this->_activityTypeId = CRM_Utils_Request::retrieve('atype', 'Positive', $this);
297 $this->assign('atype', $this->_activityTypeId);
298
5b7581f1
CW
299 $this->assign('activityId', $this->_activityId);
300
7808aae6 301 // Check for required permissions, CRM-6264.
6a488035 302 if ($this->_activityId &&
96f94695 303 in_array($this->_action, [
19fc6ae4 304 CRM_Core_Action::UPDATE,
21dfd5f5 305 CRM_Core_Action::VIEW,
96f94695 306 ]) &&
6a488035
TO
307 !CRM_Activity_BAO_Activity::checkPermission($this->_activityId, $this->_action)
308 ) {
309 CRM_Core_Error::fatal(ts('You do not have permission to access this page.'));
310 }
311 if (($this->_action & CRM_Core_Action::VIEW) &&
312 CRM_Activity_BAO_Activity::checkPermission($this->_activityId, CRM_Core_Action::UPDATE)
313 ) {
314 $this->assign('permission', 'edit');
55806731 315 $this->assign('allow_edit_inbound_emails', CRM_Activity_BAO_Activity::checkEditInboundEmailsPermissions());
6a488035
TO
316 }
317
318 if (!$this->_activityTypeId && $this->_activityId) {
319 $this->_activityTypeId = CRM_Core_DAO::getFieldValue('CRM_Activity_DAO_Activity',
320 $this->_activityId,
321 'activity_type_id'
322 );
323 }
324
7808aae6 325 // Assigning Activity type name.
6a488035 326 if ($this->_activityTypeId) {
ad0121ed 327 $activityTName = CRM_Core_OptionGroup::values('activity_type', FALSE, FALSE, FALSE, 'AND v.value = ' . $this->_activityTypeId, 'label');
6a488035
TO
328 if ($activityTName[$this->_activityTypeId]) {
329 $this->_activityTypeName = $activityTName[$this->_activityTypeId];
330 $this->assign('activityTName', $activityTName[$this->_activityTypeId]);
331 }
332 }
333
7808aae6 334 // Set title.
6a488035 335 if (isset($activityTName)) {
a10432db 336 $activityName = CRM_Utils_Array::value($this->_activityTypeId, $activityTName);
a10432db
CW
337
338 if ($this->_currentlyViewedContactId) {
339 $displayName = CRM_Contact_BAO_Contact::displayName($this->_currentlyViewedContactId);
7808aae6 340 // Check if this is default domain contact CRM-10482.
a10432db
CW
341 if (CRM_Contact_BAO_Contact::checkDomainContact($this->_currentlyViewedContactId)) {
342 $displayName .= ' (' . ts('default organization') . ')';
343 }
344 CRM_Utils_System::setTitle($displayName . ' - ' . $activityName);
345 }
346 else {
96f94695 347 CRM_Utils_System::setTitle(ts('%1 Activity', [1 => $activityName]));
a10432db 348 }
6a488035
TO
349 }
350
7808aae6
SB
351 // Check the mode when this form is called either single or as
352 // search task action.
6a488035
TO
353 if ($this->_activityTypeId ||
354 $this->_context == 'standalone' ||
355 $this->_currentlyViewedContactId
356 ) {
357 $this->_single = TRUE;
358 $this->assign('urlPath', 'civicrm/activity');
359 }
360 else {
7808aae6 361 // Set the appropriate action.
6a488035
TO
362 $url = CRM_Utils_System::currentPath();
363 $urlArray = explode('/', $url);
50237bc9 364 $searchPath = array_pop($urlArray);
6a488035
TO
365 $searchType = 'basic';
366 $this->_action = CRM_Core_Action::BASIC;
50237bc9 367 switch ($searchPath) {
6a488035 368 case 'basic':
50237bc9 369 $searchType = $searchPath;
6a488035
TO
370 $this->_action = CRM_Core_Action::BASIC;
371 break;
372
373 case 'advanced':
50237bc9 374 $searchType = $searchPath;
6a488035
TO
375 $this->_action = CRM_Core_Action::ADVANCED;
376 break;
377
378 case 'builder':
50237bc9 379 $searchType = $searchPath;
6a488035
TO
380 $this->_action = CRM_Core_Action::PROFILE;
381 break;
382
383 case 'custom':
384 $this->_action = CRM_Core_Action::COPY;
50237bc9 385 $searchType = $searchPath;
6a488035
TO
386 break;
387 }
388
389 parent::preProcess();
390 $this->_single = FALSE;
391
392 $this->assign('urlPath', "civicrm/contact/search/$searchType");
393 $this->assign('urlPathVar', "_qf_Activity_display=true&qfKey={$this->controller->_key}");
394 }
395
396 $this->assign('single', $this->_single);
397 $this->assign('action', $this->_action);
398
399 if ($this->_action & CRM_Core_Action::VIEW) {
7808aae6 400 // Get the tree of custom fields.
0b330e6d 401 $this->_groupTree = CRM_Core_BAO_CustomGroup::getTree('Activity', NULL,
6a488035
TO
402 $this->_activityId, 0, $this->_activityTypeId
403 );
404 }
405
406 if ($this->_activityTypeId) {
7808aae6 407 // Set activity type name and description to template.
6a488035
TO
408 list($this->_activityTypeName, $activityTypeDescription) = CRM_Core_BAO_OptionValue::getActivityTypeDetails($this->_activityTypeId);
409 $this->assign('activityTypeName', $this->_activityTypeName);
410 $this->assign('activityTypeDescription', $activityTypeDescription);
411 }
412
413 // set user context
414 $urlParams = $urlString = NULL;
9479d7d0
DS
415 $qfKey = CRM_Utils_Request::retrieve('key', 'String', $this);
416 if (!$qfKey) {
417 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', $this);
418 }
6a488035 419
7808aae6 420 // Validate the qfKey.
6a488035
TO
421 if (!CRM_Utils_Rule::qfKey($qfKey)) {
422 $qfKey = NULL;
423 }
424
425 if ($this->_context == 'fulltext') {
19fc6ae4 426 $keyName = '&qfKey';
6a488035
TO
427 $urlParams = 'force=1';
428 $urlString = 'civicrm/contact/search/custom';
429 if ($this->_action == CRM_Core_Action::UPDATE) {
430 $keyName = '&key';
431 $urlParams .= '&context=fulltext&action=view';
432 $urlString = 'civicrm/contact/view/activity';
433 }
434 if ($qfKey) {
435 $urlParams .= "$keyName=$qfKey";
436 }
437 $this->assign('searchKey', $qfKey);
438 }
96f94695 439 elseif (in_array($this->_context, [
19fc6ae4 440 'standalone',
441 'home',
442 'dashlet',
21dfd5f5 443 'dashletFullscreen',
96f94695 444 ])
19fc6ae4 445 ) {
6a488035
TO
446 $urlParams = 'reset=1';
447 $urlString = 'civicrm/dashboard';
448 }
449 elseif ($this->_context == 'search') {
450 $urlParams = 'force=1';
451 if ($qfKey) {
452 $urlParams .= "&qfKey=$qfKey";
453 }
7964ef53 454 $path = CRM_Utils_System::currentPath();
481a74f4 455 if ($this->_compContext == 'advanced') {
6a488035
TO
456 $urlString = 'civicrm/contact/search/advanced';
457 }
a26bae24 458 elseif ($path == 'civicrm/group/search'
353ffa53 459 || $path == 'civicrm/contact/search'
d31f1ab3 460 || $path == 'civicrm/contact/search/advanced'
7a60b836 461 || $path == 'civicrm/contact/search/custom'
353ffa53
TO
462 || $path == 'civicrm/group/search'
463 ) {
d31f1ab3
AH
464 $urlString = $path;
465 }
6a488035 466 else {
d31f1ab3 467 $urlString = 'civicrm/activity/search';
6a488035
TO
468 }
469 $this->assign('searchKey', $qfKey);
470 }
471 elseif ($this->_context != 'caseActivity') {
472 $urlParams = "action=browse&reset=1&cid={$this->_currentlyViewedContactId}&selectedChild=activity";
473 $urlString = 'civicrm/contact/view';
474 }
475
476 if ($urlString) {
477 $session->pushUserContext(CRM_Utils_System::url($urlString, $urlParams));
478 }
479
480 // hack to retrieve activity type id from post variables
481 if (!$this->_activityTypeId) {
482 $this->_activityTypeId = CRM_Utils_Array::value('activity_type_id', $_POST);
483 }
484
485 // when custom data is included in this page
a7488080 486 if (!empty($_POST['hidden_custom'])) {
7808aae6 487 // We need to set it in the session for the code below to work.
6a488035 488 // CRM-3014
7808aae6 489 // Need to assign custom data subtype to the template.
6a488035
TO
490 $this->set('type', 'Activity');
491 $this->set('subType', $this->_activityTypeId);
492 $this->set('entityId', $this->_activityId);
c5366541 493 CRM_Custom_Form_CustomData::preProcess($this, NULL, $this->_activityTypeId, 1, 'Activity', $this->_activityId);
6a488035
TO
494 CRM_Custom_Form_CustomData::buildQuickForm($this);
495 CRM_Custom_Form_CustomData::setDefaultValues($this);
496 }
497
498 // add attachments part
499 CRM_Core_BAO_File::buildAttachment($this, 'civicrm_activity', $this->_activityId, NULL, TRUE);
500
501 // figure out the file name for activity type, if any
502 if ($this->_activityTypeId &&
6c552737 503 $this->_activityTypeFile = CRM_Activity_BAO_Activity::getFileForActivityTypeId($this->_activityTypeId, $this->_crmDir)
6a488035
TO
504 ) {
505 $this->assign('activityTypeFile', $this->_activityTypeFile);
506 $this->assign('crmDir', $this->_crmDir);
507 }
508
509 $this->setFields();
510
511 if ($this->_activityTypeFile) {
0e6e8724
DL
512 $className = "CRM_{$this->_crmDir}_Form_Activity_{$this->_activityTypeFile}";
513 $className::preProcess($this);
6a488035
TO
514 }
515
516 $this->_values = $this->get('values');
517 if (!is_array($this->_values)) {
96f94695 518 $this->_values = [];
6a488035 519 if (isset($this->_activityId) && $this->_activityId) {
96f94695 520 $params = ['id' => $this->_activityId];
6a488035
TO
521 CRM_Activity_BAO_Activity::retrieve($params, $this->_values);
522 }
ee90a98c 523
6a488035
TO
524 $this->set('values', $this->_values);
525 }
59d63f8b 526
78fe87e6 527 if ($this->_action & CRM_Core_Action::UPDATE) {
ee90a98c 528 // We filter out alternatives, in case this is a stored e-mail, before sending to front-end
40e67970
SL
529 if (isset($this->_values['details'])) {
530 $this->_values['details'] = CRM_Utils_String::stripAlternatives($this->_values['details']) ?: '';
531 }
ee90a98c
CR
532
533 if ($this->_activityTypeName === 'Inbound Email' &&
534 !CRM_Core_Permission::check('edit inbound email basic information and content')
535 ) {
536 $this->_fields['details']['type'] = 'static';
537 }
538
8cec51b0 539 CRM_Core_Form_RecurringEntity::preProcess('civicrm_activity');
78fe87e6 540 }
234fa48a
NH
541
542 if ($this->_action & CRM_Core_Action::VIEW) {
543 $url = CRM_Utils_System::url(implode("/", $this->urlPath), "reset=1&id={$this->_activityId}&action=view&cid={$this->_values['source_contact_id']}");
443f35e1 544 CRM_Utils_Recent::add(CRM_Utils_Array::value('subject', $this->_values, ts('(no subject)')),
234fa48a
NH
545 $url,
546 $this->_values['id'],
547 'Activity',
548 $this->_values['source_contact_id'],
549 $this->_values['source_contact']
550 );
551 }
6a488035 552 }
59d63f8b 553
6a488035 554 /**
b6c94f42 555 * Set default values for the form.
6a488035 556 *
b6c94f42 557 * For edit/view mode the default values are retrieved from the database.
7808aae6
SB
558 *
559 * @return array
6a488035 560 */
00be9182 561 public function setDefaultValues() {
6a488035 562
d2a4c29b 563 $defaults = $this->_values + CRM_Core_Form_RecurringEntity::setDefaultValues();
6a488035
TO
564 // if we're editing...
565 if (isset($this->_activityId)) {
6a488035 566
6a488035
TO
567 if ($this->_context != 'standalone') {
568 $this->assign('target_contact_value',
569 CRM_Utils_Array::value('target_contact_value', $defaults)
570 );
571 $this->assign('assignee_contact_value',
572 CRM_Utils_Array::value('assignee_contact_value', $defaults)
573 );
6a488035
TO
574 }
575
c27ebe4e 576 // Fixme: why are we getting the wrong keys from upstream?
28ded762
JP
577 $defaults['target_contact_id'] = CRM_Utils_Array::value('target_contact', $defaults);
578 $defaults['assignee_contact_id'] = CRM_Utils_Array::value('assignee_contact', $defaults);
c27ebe4e 579
6a488035 580 // set default tags if exists
b733747a 581 $defaults['tag'] = implode(',', CRM_Core_BAO_EntityTag::getTag($this->_activityId, 'civicrm_activity'));
6a488035
TO
582 }
583 else {
584 // if it's a new activity, we need to set default values for associated contact fields
6a488035
TO
585 $this->_sourceContactId = $this->_currentUserId;
586 $this->_targetContactId = $this->_currentlyViewedContactId;
6a488035 587
f7305cbc 588 $defaults['source_contact_id'] = $this->_sourceContactId;
c27ebe4e 589 $defaults['target_contact_id'] = $this->_targetContactId;
d104311a 590 }
6a488035 591
d104311a
CW
592 if (empty($defaults['activity_date_time'])) {
593 $defaults['activity_date_time'] = date('Y-m-d H:i:s');
6a488035
TO
594 }
595
596 if ($this->_activityTypeId) {
597 $defaults['activity_type_id'] = $this->_activityTypeId;
598 }
599
ab911378
PJ
600 if (!$this->_single && !empty($this->_contactIds)) {
601 $defaults['target_contact_id'] = $this->_contactIds;
602 }
603
b44e3f84 604 // CRM-15472 - 50 is around the practical limit of how many items a select2 entityRef can handle
531d3b28 605 if ($this->_action == CRM_Core_Action::UPDATE && !empty($defaults['target_contact_id'])) {
33913af6
CW
606 $count = count(is_array($defaults['target_contact_id']) ? $defaults['target_contact_id'] : explode(',', $defaults['target_contact_id']));
607 if ($count > 50) {
96f94695 608 $this->freeze(['target_contact_id']);
33913af6
CW
609 }
610 }
611
6a488035
TO
612 if ($this->_action & (CRM_Core_Action::DELETE | CRM_Core_Action::RENEW)) {
613 $this->assign('delName', CRM_Utils_Array::value('subject', $defaults));
614 }
615
616 if ($this->_activityTypeFile) {
0e6e8724
DL
617 $className = "CRM_{$this->_crmDir}_Form_Activity_{$this->_activityTypeFile}";
618 $defaults += $className::setDefaultValues($this);
6a488035 619 }
a7488080 620 if (empty($defaults['priority_id'])) {
cbf48754 621 $priority = CRM_Core_PseudoConstant::get('CRM_Activity_DAO_Activity', 'priority_id');
6a488035
TO
622 $defaults['priority_id'] = array_search('Normal', $priority);
623 }
a7488080 624 if (empty($defaults['status_id'])) {
343d84fa
DG
625 $defaults['status_id'] = CRM_Core_OptionGroup::getDefaultValue('activity_status');
626 }
6a488035
TO
627 return $defaults;
628 }
629
d51c6add 630 /**
631 * Build Quick form.
632 *
633 * @throws \CRM_Core_Exception
634 * @throws \CiviCRM_API3_Exception
635 */
6a488035
TO
636 public function buildQuickForm() {
637 if ($this->_action & (CRM_Core_Action::DELETE | CRM_Core_Action::RENEW)) {
638 //enable form element (ActivityLinks sets this true)
639 $this->assign('suppressForm', FALSE);
640
641 $button = ts('Delete');
642 if ($this->_action & CRM_Core_Action::RENEW) {
643 $button = ts('Restore');
644 }
96f94695 645 $this->addButtons([
646 [
19fc6ae4 647 'type' => 'next',
648 'name' => $button,
649 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
21dfd5f5 650 'isDefault' => TRUE,
96f94695 651 ],
652 [
19fc6ae4 653 'type' => 'cancel',
21dfd5f5 654 'name' => ts('Cancel'),
96f94695 655 ],
656 ]);
6a488035
TO
657 return;
658 }
659
7808aae6 660 // Build other activity links.
cfcb7676 661 CRM_Activity_Form_ActivityLinks::commonBuildQuickForm($this);
6a488035 662
7808aae6 663 // Enable form element (ActivityLinks sets this true).
6a488035
TO
664 $this->assign('suppressForm', FALSE);
665
353ffa53 666 $element = &$this->add('select', 'activity_type_id', ts('Activity Type'),
96f94695 667 ['' => '- ' . ts('select') . ' -'] + $this->_fields['followup_activity_type_id']['attributes'],
668 FALSE, [
f7305cbc 669 'onchange' => "CRM.buildCustomData( 'Activity', this.value );",
ba6e6f51 670 'class' => 'crm-select2 required',
96f94695 671 ]
6a488035
TO
672 );
673
7808aae6 674 // Freeze for update mode.
6a488035
TO
675 if ($this->_action & CRM_Core_Action::UPDATE) {
676 $element->freeze();
b334d9ad 677 }
678
7808aae6 679 // Call to RecurringEntity buildQuickForm for add/update mode.
b334d9ad 680 if ($this->_action & (CRM_Core_Action::UPDATE | CRM_Core_Action::ADD)) {
78fe87e6 681 CRM_Core_Form_RecurringEntity::buildQuickForm($this);
6a488035
TO
682 }
683
684 foreach ($this->_fields as $field => $values) {
a7488080 685 if (!empty($this->_fields[$field])) {
475e9f44
CW
686 $attribute = CRM_Utils_Array::value('attributes', $values);
687 $required = !empty($values['required']);
6a488035 688
13d9bc82 689 if ($values['type'] == 'select' && empty($attribute)) {
96f94695 690 $this->addSelect($field, ['entity' => 'activity'], $required);
c27ebe4e
CW
691 }
692 elseif ($values['type'] == 'entityRef') {
693 $this->addEntityRef($field, $values['label'], $attribute, $required);
475e9f44 694 }
c27ebe4e 695 else {
5e72d8ae 696 $this->add($values['type'], $field, $values['label'], $attribute, $required, CRM_Utils_Array::value('extra', $values));
6a488035
TO
697 }
698 }
699 }
700
7808aae6 701 // CRM-7362 --add campaigns.
6a488035
TO
702 CRM_Campaign_BAO_Campaign::addCampaign($this, CRM_Utils_Array::value('campaign_id', $this->_values));
703
7808aae6 704 // Add engagement level CRM-7775
6a488035
TO
705 $buildEngagementLevel = FALSE;
706 if (CRM_Campaign_BAO_Campaign::isCampaignEnable() &&
707 CRM_Campaign_BAO_Campaign::accessCampaign()
708 ) {
709 $buildEngagementLevel = TRUE;
96f94695 710 $this->addSelect('engagement_level', ['entity' => 'activity']);
6a488035
TO
711 $this->addRule('engagement_level',
712 ts('Please enter the engagement index as a number (integers only).'),
713 'positiveInteger'
714 );
715 }
716 $this->assign('buildEngagementLevel', $buildEngagementLevel);
717
718 // check for survey activity
719 $this->_isSurveyActivity = FALSE;
720
721 if ($this->_activityId && CRM_Campaign_BAO_Campaign::isCampaignEnable() &&
722 CRM_Campaign_BAO_Campaign::accessCampaign()
723 ) {
724
725 $this->_isSurveyActivity = CRM_Campaign_BAO_Survey::isSurveyActivity($this->_activityId);
726 if ($this->_isSurveyActivity) {
727 $surveyId = CRM_Core_DAO::getFieldValue('CRM_Activity_DAO_Activity',
728 $this->_activityId,
729 'source_record_id'
730 );
731 $responseOptions = CRM_Campaign_BAO_Survey::getResponsesOptions($surveyId);
732 if ($responseOptions) {
733 $this->add('select', 'result', ts('Result'),
96f94695 734 ['' => ts('- select -')] + array_combine($responseOptions, $responseOptions)
6a488035
TO
735 );
736 }
737 $surveyTitle = NULL;
738 if ($surveyId) {
739 $surveyTitle = CRM_Core_DAO::getFieldValue('CRM_Campaign_DAO_Survey', $surveyId, 'title');
740 }
741 $this->assign('surveyTitle', $surveyTitle);
742 }
743 }
744 $this->assign('surveyActivity', $this->_isSurveyActivity);
745
598e9b75
SM
746 // Add the "Activity Separation" field
747 $actionIsAdd = $this->_action != CRM_Core_Action::UPDATE;
748 $separationIsPossible = $this->supportsActivitySeparation;
749 if ($actionIsAdd && $separationIsPossible) {
a850c3fe
SM
750 $this->addRadio(
751 'separation',
752 ts('Activity Separation'),
96f94695 753 [
a850c3fe
SM
754 'separate' => ts('Create separate activities for each contact'),
755 'combined' => ts('Create one activity with all contacts together'),
96f94695 756 ]
a850c3fe 757 );
52c7b3a2
KJ
758 }
759
6a488035
TO
760 $this->addRule('duration',
761 ts('Please enter the duration as number of minutes (integers only).'), 'positiveInteger'
762 );
6a488035 763
7808aae6 764 // Add followup date.
d7c5e6c3 765 $this->add('datepicker', 'followup_date', ts('in'));
6a488035 766
f7305cbc
CW
767 // Only admins and case-workers can change the activity source
768 if (!CRM_Core_Permission::check('administer CiviCRM') && $this->_context != 'caseActivity') {
c27ebe4e 769 $this->getElement('source_contact_id')->freeze();
f7305cbc 770 }
6a488035 771
6a488035
TO
772 //need to assign custom data type and subtype to the template
773 $this->assign('customDataType', 'Activity');
774 $this->assign('customDataSubType', $this->_activityTypeId);
775 $this->assign('entityID', $this->_activityId);
776
b733747a 777 $tags = CRM_Core_BAO_Tag::getColorTags('civicrm_activity');
6a488035
TO
778
779 if (!empty($tags)) {
96f94695 780 $this->add('select2', 'tag', ts('Tags'), $tags, FALSE, [
781 'class' => 'huge',
782 'placeholder' => ts('- select -'),
783 'multiple' => TRUE,
784 ]);
6a488035
TO
785 }
786
787 // we need to hide activity tagset for special activities
96f94695 788 $specialActivities = ['Open Case'];
6a488035
TO
789
790 if (!in_array($this->_activityTypeName, $specialActivities)) {
791 // build tag widget
792 $parentNames = CRM_Core_BAO_Tag::getTagSet('civicrm_activity');
95ef220a 793 CRM_Core_Form_Tag::buildQuickForm($this, $parentNames, 'civicrm_activity', $this->_activityId);
6a488035
TO
794 }
795
796 // if we're viewing, we're assigning different buttons than for adding/editing
797 if ($this->_action & CRM_Core_Action::VIEW) {
798 if (isset($this->_groupTree)) {
080d719e 799 CRM_Core_BAO_CustomGroup::buildCustomDataView($this, $this->_groupTree, FALSE, NULL, NULL, NULL, $this->_activityId);
6a488035 800 }
6a488035
TO
801 // form should be frozen for view mode
802 $this->freeze();
803
e517eb43
MWMC
804 $this->addButtons([
805 [
806 'type' => 'cancel',
807 'name' => ts('Done'),
808 ],
809 ]);
6a488035
TO
810 }
811 else {
e517eb43
MWMC
812 $this->addButtons([
813 [
c5c263ca
AH
814 'type' => 'upload',
815 'name' => ts('Save'),
c5c263ca 816 'isDefault' => TRUE,
e517eb43
MWMC
817 'submitOnce' => TRUE,
818 ],
819 [
c5c263ca
AH
820 'type' => 'cancel',
821 'name' => ts('Cancel'),
e517eb43
MWMC
822 ],
823 ]);
6a488035
TO
824 }
825
826 if ($this->_activityTypeFile) {
0e6e8724 827 $className = "CRM_{$this->_crmDir}_Form_Activity_{$this->_activityTypeFile}";
6a488035 828
0e6e8724 829 $className::buildQuickForm($this);
96f94695 830 $this->addFormRule([$className, 'formRule'], $this);
6a488035
TO
831 }
832
96f94695 833 $this->addFormRule(['CRM_Activity_Form_Activity', 'formRule'], $this);
6db7e202 834
96f94695 835 $doNotNotifyAssigneeFor = (array) Civi::settings()
836 ->get('do_not_notify_assignees_for');
837 if (($this->_activityTypeId && in_array($this->_activityTypeId, $doNotNotifyAssigneeFor)) || !Civi::settings()
62d3ee27 838 ->get('activity_assignee_notification')) {
e680ea41 839 $this->assign('activityAssigneeNotification', FALSE);
0086c33d
DL
840 }
841 else {
e680ea41 842 $this->assign('activityAssigneeNotification', TRUE);
6db7e202 843 }
e680ea41 844 $this->assign('doNotNotifyAssigneeFor', $doNotNotifyAssigneeFor);
6a488035
TO
845 }
846
847 /**
fe482240 848 * Global form rule.
6a488035 849 *
041ab3d1
TO
850 * @param array $fields
851 * The input form values.
852 * @param array $files
853 * The uploaded files if any.
2a6da8d7
EM
854 * @param $self
855 *
72b3a70c
CW
856 * @return bool|array
857 * true if no errors, else array of errors
6a488035 858 */
00be9182 859 public static function formRule($fields, $files, $self) {
6a488035
TO
860 // skip form rule if deleting
861 if (CRM_Utils_Array::value('_qf_Activity_next_', $fields) == 'Delete') {
862 return TRUE;
863 }
96f94695 864 $errors = [];
ba6e6f51 865 if ((array_key_exists('activity_type_id', $fields) || !$self->_single) && empty($fields['activity_type_id'])) {
6a488035
TO
866 $errors['activity_type_id'] = ts('Activity Type is a required field');
867 }
868
531d3b28
MWMC
869 if (CRM_Utils_Array::value('activity_type_id', $fields) == CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_type_id', 'Email')
870 && CRM_Utils_Array::value('status_id', $fields) == CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'status_id', 'Scheduled')) {
6a488035
TO
871 $errors['status_id'] = ts('You cannot record scheduled email activity.');
872 }
531d3b28
MWMC
873 elseif (CRM_Utils_Array::value('activity_type_id', $fields) == CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_type_id', 'SMS')
874 && CRM_Utils_Array::value('status_id', $fields) == CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'status_id', 'Scheduled')) {
6a488035
TO
875 $errors['status_id'] = ts('You cannot record scheduled SMS activity.');
876 }
877
8cc574cf 878 if (!empty($fields['followup_activity_type_id']) && empty($fields['followup_date'])) {
d7c5e6c3 879 $errors['followup_date'] = ts('Followup date is a required field.');
6a488035 880 }
7808aae6 881 // Activity type is mandatory if subject or follow-up date is specified for an Follow-up activity, CRM-4515.
8cc574cf 882 if ((!empty($fields['followup_activity_subject']) || !empty($fields['followup_date'])) && empty($fields['followup_activity_type_id'])) {
6a488035
TO
883 $errors['followup_activity_subject'] = ts('Follow-up Activity type is a required field.');
884 }
53c79877
SM
885
886 // Check that a value has been set for the "activity separation" field if needed
887 $separationIsPossible = $self->supportsActivitySeparation;
a850c3fe
SM
888 $actionIsAdd = $self->_action == CRM_Core_Action::ADD;
889 $hasMultipleTargetContacts = !empty($fields['target_contact_id']) && strpos($fields['target_contact_id'], ',') !== FALSE;
890 $separationFieldIsEmpty = empty($fields['separation']);
53c79877 891 if ($separationIsPossible && $actionIsAdd && $hasMultipleTargetContacts && $separationFieldIsEmpty) {
a850c3fe
SM
892 $errors['separation'] = ts('Activity Separation is a required field.');
893 }
53c79877 894
6a488035
TO
895 return $errors;
896 }
897
898 /**
fe482240 899 * Process the form submission.
6a488035 900 *
6a488035 901 *
100fef9d 902 * @param array $params
d51c6add 903 *
100fef9d 904 * @return array|null
531d3b28 905 * @throws \CiviCRM_API3_Exception
6a488035
TO
906 */
907 public function postProcess($params = NULL) {
908 if ($this->_action & CRM_Core_Action::DELETE) {
96f94695 909 $deleteParams = ['id' => $this->_activityId];
6a488035
TO
910 $moveToTrash = CRM_Case_BAO_Case::isCaseActivity($this->_activityId);
911 CRM_Activity_BAO_Activity::deleteActivity($deleteParams, $moveToTrash);
912
913 // delete tags for the entity
96f94695 914 $tagParams = [
6a488035 915 'entity_table' => 'civicrm_activity',
21dfd5f5 916 'entity_id' => $this->_activityId,
96f94695 917 ];
6a488035
TO
918
919 CRM_Core_BAO_EntityTag::del($tagParams);
920
921 CRM_Core_Session::setStatus(ts("Selected Activity has been deleted successfully."), ts('Record Deleted'), 'success');
a1a2a83d 922 return NULL;
6a488035
TO
923 }
924
925 // store the submitted values in an array
926 if (!$params) {
927 $params = $this->controller->exportValues($this->_name);
928 }
929
7808aae6 930 // Set activity type id.
a7488080 931 if (empty($params['activity_type_id'])) {
6a488035
TO
932 $params['activity_type_id'] = $this->_activityTypeId;
933 }
934
a7488080 935 if (!empty($params['hidden_custom']) &&
6a488035
TO
936 !isset($params['custom'])
937 ) {
938 $customFields = CRM_Core_BAO_CustomField::getFields('Activity', FALSE, FALSE,
939 $this->_activityTypeId
940 );
941 $customFields = CRM_Utils_Array::crmArrayMerge($customFields,
942 CRM_Core_BAO_CustomField::getFields('Activity', FALSE, FALSE,
943 NULL, NULL, TRUE
944 )
945 );
946 $params['custom'] = CRM_Core_BAO_CustomField::postProcess($params,
6a488035
TO
947 $this->_activityId,
948 'Activity'
949 );
950 }
951
c27ebe4e 952 // format params as arrays
96f94695 953 foreach (['target', 'assignee', 'followup_assignee'] as $name) {
c27ebe4e
CW
954 if (!empty($params["{$name}_contact_id"])) {
955 $params["{$name}_contact_id"] = explode(',', $params["{$name}_contact_id"]);
956 }
957 else {
96f94695 958 $params["{$name}_contact_id"] = [];
c27ebe4e 959 }
6a488035 960 }
6a488035
TO
961
962 // get ids for associated contacts
963 if (!$params['source_contact_id']) {
964 $params['source_contact_id'] = $this->_currentUserId;
965 }
6a488035
TO
966
967 if (isset($this->_activityId)) {
968 $params['id'] = $this->_activityId;
969 }
970
971 // add attachments as needed
972 CRM_Core_BAO_File::formatAttachment($params,
973 $params,
974 'civicrm_activity',
975 $this->_activityId
976 );
977
a850c3fe
SM
978 $params['is_multi_activity'] = CRM_Utils_Array::value('separation', $params) == 'separate';
979
96f94695 980 $activity = [];
a7488080 981 if (!empty($params['is_multi_activity']) &&
52c7b3a2
KJ
982 !CRM_Utils_Array::crmIsEmptyArray($params['target_contact_id'])
983 ) {
984 $targetContacts = $params['target_contact_id'];
19fc6ae4 985 foreach ($targetContacts as $targetContactId) {
96f94695 986 $params['target_contact_id'] = [$targetContactId];
52c7b3a2
KJ
987 // save activity
988 $activity[] = $this->processActivity($params);
989 }
990 }
991 else {
992 // save activity
993 $activity = $this->processActivity($params);
994 }
995
96f94695 996 $activityIds = empty($this->_activityIds) ? [$this->_activityId] : $this->_activityIds;
7a4bb524 997 foreach ($activityIds as $activityId) {
998 // set params for repeat configuration in create mode
999 $params['entity_id'] = $activityId;
1000 $params['entity_table'] = 'civicrm_activity';
7a4bb524 1001 if (!empty($params['entity_id']) && !empty($params['entity_table'])) {
1002 $checkParentExistsForThisId = CRM_Core_BAO_RecurringEntity::getParentFor($params['entity_id'], $params['entity_table']);
1003 if ($checkParentExistsForThisId) {
1004 $params['parent_entity_id'] = $checkParentExistsForThisId;
1005 $scheduleReminderDetails = CRM_Core_BAO_RecurringEntity::getReminderDetailsByEntityId($checkParentExistsForThisId, $params['entity_table']);
1006 }
1007 else {
1008 $params['parent_entity_id'] = $params['entity_id'];
1009 $scheduleReminderDetails = CRM_Core_BAO_RecurringEntity::getReminderDetailsByEntityId($params['entity_id'], $params['entity_table']);
1010 }
1011 if (property_exists($scheduleReminderDetails, 'id')) {
1012 $params['schedule_reminder_id'] = $scheduleReminderDetails->id;
1013 }
fe87e754 1014 }
96f94695 1015 $params['dateColumns'] = ['activity_date_time'];
b334d9ad 1016
83f3c8a3
CW
1017 // Set default repetition start if it was not provided.
1018 if (empty($params['repetition_start_date'])) {
1019 $params['repetition_start_date'] = $params['activity_date_time'];
1020 }
1021
7a4bb524 1022 // unset activity id
1023 unset($params['id']);
96f94695 1024 $linkedEntities = [
1025 [
7a4bb524 1026 'table' => 'civicrm_activity_contact',
96f94695 1027 'findCriteria' => [
7a4bb524 1028 'activity_id' => $activityId,
96f94695 1029 ],
1030 'linkedColumns' => ['activity_id'],
7a4bb524 1031 'isRecurringEntityRecord' => FALSE,
96f94695 1032 ],
1033 ];
7a4bb524 1034 CRM_Core_Form_RecurringEntity::postProcess($params, 'civicrm_activity', $linkedEntities);
1035 }
b334d9ad 1036
96f94695 1037 return ['activity' => $activity];
52c7b3a2
KJ
1038 }
1039
1040 /**
fe482240 1041 * Process activity creation.
52c7b3a2 1042 *
041ab3d1
TO
1043 * @param array $params
1044 * Associated array of submitted values.
77b97be7 1045 *
6c552737 1046 * @return self|null|object
52c7b3a2
KJ
1047 */
1048 protected function processActivity(&$params) {
96f94695 1049 $activityAssigned = [];
44f817d4 1050 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
034500d4 1051 $assigneeID = CRM_Utils_Array::key('Activity Assignees', $activityContacts);
6a488035
TO
1052 // format assignee params
1053 if (!CRM_Utils_Array::crmIsEmptyArray($params['assignee_contact_id'])) {
1054 //skip those assignee contacts which are already assigned
1055 //while sending a copy.CRM-4509.
1056 $activityAssigned = array_flip($params['assignee_contact_id']);
1057 if ($this->_activityId) {
034500d4 1058 $assigneeContacts = CRM_Activity_BAO_ActivityContact::getNames($this->_activityId, $assigneeID);
6a488035
TO
1059 $activityAssigned = array_diff_key($activityAssigned, $assigneeContacts);
1060 }
1061 }
1062
1063 // call begin post process. Idea is to let injecting file do
1064 // any processing before the activity is added/updated.
1065 $this->beginPostProcess($params);
1066
1067 $activity = CRM_Activity_BAO_Activity::create($params);
1068
1069 // add tags if exists
96f94695 1070 $tagParams = [];
6a488035 1071 if (!empty($params['tag'])) {
b733747a
CW
1072 if (!is_array($params['tag'])) {
1073 $params['tag'] = explode(',', $params['tag']);
1074 }
63b7aefc
DB
1075
1076 $tagParams = array_fill_keys($params['tag'], 1);
6a488035
TO
1077 }
1078
7808aae6 1079 // Save static tags.
6a488035
TO
1080 CRM_Core_BAO_EntityTag::create($tagParams, 'civicrm_activity', $activity->id);
1081
7808aae6 1082 // Save free tags.
6a488035
TO
1083 if (isset($params['activity_taglist']) && !empty($params['activity_taglist'])) {
1084 CRM_Core_Form_Tag::postProcess($params['activity_taglist'], $activity->id, 'civicrm_activity', $this);
1085 }
1086
1087 // call end post process. Idea is to let injecting file do any
1088 // processing needed, after the activity has been added/updated.
1089 $this->endPostProcess($params, $activity);
1090
1091 // CRM-9590
a7488080 1092 if (!empty($params['is_multi_activity'])) {
52c7b3a2
KJ
1093 $this->_activityIds[] = $activity->id;
1094 }
1095 else {
1096 $this->_activityId = $activity->id;
1097 }
6a488035
TO
1098
1099 // create follow up activity if needed
1100 $followupStatus = '';
90b05581 1101 $followupActivity = NULL;
a7488080 1102 if (!empty($params['followup_activity_type_id'])) {
90b05581 1103 $followupActivity = CRM_Activity_BAO_Activity::createFollowupActivity($activity->id, $params);
6a488035
TO
1104 $followupStatus = ts('A followup activity has been scheduled.');
1105 }
1106
1107 // send copy to assignee contacts.CRM-4509
1108 $mailStatus = '';
1109
ac983377 1110 if (Civi::settings()->get('activity_assignee_notification')
96f94695 1111 && !in_array($activity->activity_type_id, Civi::settings()
1112 ->get('do_not_notify_assignees_for'))) {
1113 $activityIDs = [$activity->id];
90b05581 1114 if ($followupActivity) {
96f94695 1115 $activityIDs = array_merge($activityIDs, [$followupActivity->id]);
90b05581
DG
1116 }
1117 $assigneeContacts = CRM_Activity_BAO_ActivityAssignment::getAssigneeNames($activityIDs, TRUE, FALSE);
6a488035 1118
90b05581 1119 if (!CRM_Utils_Array::crmIsEmptyArray($params['assignee_contact_id'])) {
96f94695 1120 $mailToContacts = [];
90b05581 1121
7808aae6 1122 // Build an associative array with unique email addresses.
90b05581
DG
1123 foreach ($activityAssigned as $id => $dnc) {
1124 if (isset($id) && array_key_exists($id, $assigneeContacts)) {
1125 $mailToContacts[$assigneeContacts[$id]['email']] = $assigneeContacts[$id];
1126 }
6a488035 1127 }
6a488035 1128
bc883279 1129 $sent = CRM_Activity_BAO_Activity::sendToAssignee($activity, $mailToContacts);
1130 if ($sent) {
1131 $mailStatus .= ts("A copy of the activity has also been sent to assignee contacts(s).");
1132 }
1133 }
77b97be7 1134
90b05581
DG
1135 // Also send email to follow-up activity assignees if set
1136 if ($followupActivity) {
96f94695 1137 $mailToFollowupContacts = [];
90b05581
DG
1138 foreach ($assigneeContacts as $values) {
1139 if ($values['activity_id'] == $followupActivity->id) {
1140 $mailToFollowupContacts[$values['email']] = $values;
1141 }
1142 }
1143
2bbb4a91 1144 $sentFollowup = CRM_Activity_BAO_Activity::sendToAssignee($followupActivity, $mailToFollowupContacts);
bc883279 1145 if ($sentFollowup) {
f3c5a172 1146 $mailStatus .= '<br />' . ts("A copy of the follow-up activity has also been sent to follow-up assignee contacts(s).");
bc883279 1147 }
6a488035
TO
1148 }
1149 }
1150
1151 // set status message
ef89f226 1152 $subject = '';
a7488080 1153 if (!empty($params['subject'])) {
ef89f226 1154 $subject = "'" . $params['subject'] . "'";
6a488035
TO
1155 }
1156
12e2d503 1157 CRM_Core_Session::setStatus(ts('Activity %1 has been saved. %2 %3',
96f94695 1158 [
ef89f226 1159 1 => $subject,
52c7b3a2 1160 2 => $followupStatus,
21dfd5f5 1161 3 => $mailStatus,
96f94695 1162 ]
52c7b3a2 1163 ), ts('Saved'), 'success');
6a488035 1164
52c7b3a2 1165 return $activity;
6a488035
TO
1166 }
1167
1168 /**
1169 * Shorthand for getting id by display name (makes code more readable)
645ee340
EM
1170 * @param $displayName
1171 * @return null|string
6a488035
TO
1172 */
1173 protected function _getIdByDisplayName($displayName) {
1174 return CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact',
1175 $displayName,
1176 'id',
1177 'sort_name'
1178 );
1179 }
1180
1181 /**
1182 * Shorthand for getting display name by id (makes code more readable)
645ee340
EM
1183 * @param $id
1184 * @return null|string
6a488035
TO
1185 */
1186 protected function _getDisplayNameById($id) {
1187 return CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact',
1188 $id,
1189 'sort_name',
1190 'id'
1191 );
1192 }
1193
1194 /**
fe482240 1195 * Let injecting activity type file do any processing.
6a488035
TO
1196 * needed, before the activity is added/updated
1197 *
100fef9d 1198 * @param array $params
6a488035 1199 */
00be9182 1200 public function beginPostProcess(&$params) {
6a488035 1201 if ($this->_activityTypeFile) {
0e6e8724
DL
1202 $className = "CRM_{$this->_crmDir}_Form_Activity_{$this->_activityTypeFile}";
1203 $className::beginPostProcess($this, $params);
6a488035
TO
1204 }
1205 }
1206
1207 /**
100fef9d 1208 * Let injecting activity type file do any processing
6a488035
TO
1209 * needed, after the activity has been added/updated
1210 *
100fef9d
CW
1211 * @param array $params
1212 * @param $activity
6a488035 1213 */
00be9182 1214 public function endPostProcess(&$params, &$activity) {
6a488035 1215 if ($this->_activityTypeFile) {
0e6e8724 1216 $className = "CRM_{$this->_crmDir}_Form_Activity_{$this->_activityTypeFile}";
100fef9d 1217 $className::endPostProcess($this, $params, $activity);
6a488035
TO
1218 }
1219 }
96025800 1220
6a488035 1221}