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