Merge pull request #2635 from colemanw/master
[civicrm-core.git] / CRM / Activity / Page / AJAX.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
232624b1 4 | CiviCRM version 4.4 |
6a488035
TO
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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-2013
32 *
33 */
34
35/**
36 * This class contains all the function that are called using AJAX (jQuery)
37 */
38class CRM_Activity_Page_AJAX {
39 static function getCaseActivity() {
40 $caseID = CRM_Utils_Type::escape($_GET['caseID'], 'Integer');
41 $contactID = CRM_Utils_Type::escape($_GET['cid'], 'Integer');
42 $userID = CRM_Utils_Type::escape($_GET['userID'], 'Integer');
43 $context = CRM_Utils_Type::escape(CRM_Utils_Array::value('context', $_GET), 'String');
44
45 $sortMapper = array(
46 0 => 'display_date', 1 => 'ca.subject', 2 => 'ca.activity_type_id',
47 3 => 'acc.sort_name', 4 => 'cc.sort_name', 5 => 'ca.status_id',
48 );
49
50 $sEcho = CRM_Utils_Type::escape($_REQUEST['sEcho'], 'Integer');
51 $offset = isset($_REQUEST['iDisplayStart']) ? CRM_Utils_Type::escape($_REQUEST['iDisplayStart'], 'Integer') : 0;
52 $rowCount = isset($_REQUEST['iDisplayLength']) ? CRM_Utils_Type::escape($_REQUEST['iDisplayLength'], 'Integer') : 25;
53 $sort = isset($_REQUEST['iSortCol_0']) ? CRM_Utils_Array::value(CRM_Utils_Type::escape($_REQUEST['iSortCol_0'], 'Integer'), $sortMapper) : NULL;
54 $sortOrder = isset($_REQUEST['sSortDir_0']) ? CRM_Utils_Type::escape($_REQUEST['sSortDir_0'], 'String') : 'asc';
55
56 $params = $_POST;
57 if ($sort && $sortOrder) {
58 $params['sortname'] = $sort;
59 $params['sortorder'] = $sortOrder;
60 }
61 $params['page'] = ($offset / $rowCount) + 1;
62 $params['rp'] = $rowCount;
63
64 // get the activities related to given case
65 $activities = CRM_Case_BAO_Case::getCaseActivity($caseID, $params, $contactID, $context, $userID);
66
67 $iFilteredTotal = $iTotal = $params['total'];
68 $selectorElements = array('display_date', 'subject', 'type', 'with_contacts', 'reporter', 'status', 'links', 'class');
69
70 echo CRM_Utils_JSON::encodeDataTableSelector($activities, $sEcho, $iTotal, $iFilteredTotal, $selectorElements);
71 CRM_Utils_System::civiExit();
72 }
73
74 static function getCaseGlobalRelationships() {
75 $sortMapper = array(
76 0 => 'sort_name', 1 => 'phone', 2 => 'email',
77 );
1d85d241 78
6a488035
TO
79 $sEcho = CRM_Utils_Type::escape($_REQUEST['sEcho'], 'Integer');
80 $offset = isset($_REQUEST['iDisplayStart']) ? CRM_Utils_Type::escape($_REQUEST['iDisplayStart'], 'Integer') : 0;
81 $rowCount = isset($_REQUEST['iDisplayLength']) ? CRM_Utils_Type::escape($_REQUEST['iDisplayLength'], 'Integer') : 25;
82 $sort = isset($_REQUEST['iSortCol_0']) ? CRM_Utils_Array::value(CRM_Utils_Type::escape($_REQUEST['iSortCol_0'], 'Integer'), $sortMapper) : NULL;
83 $sortOrder = isset($_REQUEST['sSortDir_0']) ? CRM_Utils_Type::escape($_REQUEST['sSortDir_0'], 'String') : 'asc';
1d85d241 84
6a488035
TO
85 $params = $_POST;
86 if ($sort && $sortOrder) {
87 $sortSQL = $sort .' '.$sortOrder;
88 }
1d85d241 89
6a488035
TO
90 // get the activities related to given case
91 $globalGroupInfo = array();
1d85d241 92
6a488035
TO
93 // get the total row count
94 $relGlobalTotalCount = CRM_Case_BAO_Case::getGlobalContacts($globalGroupInfo, NULL, FALSE, TRUE, NULL, NULL);
95 // limit the rows
1d85d241
DL
96 $relGlobal = CRM_Case_BAO_Case::getGlobalContacts($globalGroupInfo, $sortSQL, $showLinks = TRUE, FALSE, $offset, $rowCount);
97
6a488035
TO
98 $iFilteredTotal = $iTotal = $relGlobalTotalCount;
99 $selectorElements = array('sort_name', 'phone', 'email');
1d85d241 100
6a488035
TO
101 echo CRM_Utils_JSON::encodeDataTableSelector($relGlobal, $sEcho, $iTotal, $iFilteredTotal, $selectorElements);
102 CRM_Utils_System::civiExit();
1d85d241
DL
103 }
104
6a488035
TO
105 static function getCaseClientRelationships() {
106 $caseID = CRM_Utils_Type::escape($_GET['caseID'], 'Integer');
107 $contactID = CRM_Utils_Type::escape($_GET['cid'], 'Integer');
1d85d241 108
6a488035
TO
109 $sortMapper = array(
110 0 => 'relation', 1 => 'name', 2 => 'phone', 3 => 'email'
111 );
1d85d241 112
6a488035
TO
113 $sEcho = CRM_Utils_Type::escape($_REQUEST['sEcho'], 'Integer');
114 $offset = isset($_REQUEST['iDisplayStart']) ? CRM_Utils_Type::escape($_REQUEST['iDisplayStart'], 'Integer') : 0;
115 $rowCount = isset($_REQUEST['iDisplayLength']) ? CRM_Utils_Type::escape($_REQUEST['iDisplayLength'], 'Integer') : 25;
116 $sort = isset($_REQUEST['iSortCol_0']) ? CRM_Utils_Array::value(CRM_Utils_Type::escape($_REQUEST['iSortCol_0'], 'Integer'), $sortMapper) : 'relation';
117 $sortOrder = isset($_REQUEST['sSortDir_0']) ? CRM_Utils_Type::escape($_REQUEST['sSortDir_0'], 'String') : 'asc';
1d85d241 118
6a488035
TO
119 $params = $_POST;
120 if ($sort && $sortOrder) {
121 $sortSQL = $sort .' '.$sortOrder;
122 }
123
124 // Retrieve ALL client relationships
125 $relClient = CRM_Contact_BAO_Relationship::getRelationship($contactID,
126 CRM_Contact_BAO_Relationship::CURRENT,
127 0, 0, 0, NULL, NULL, FALSE
128 );
1d85d241 129
6a488035 130 $caseRelationships = CRM_Case_BAO_Case::getCaseRoles($contactID, $caseID);
1d85d241 131
6a488035
TO
132 // Now build 'Other Relationships' array by removing relationships that are already listed under Case Roles
133 // so they don't show up twice.
134 $clientRelationships = array();
135 foreach ($relClient as $r) {
136 if (!array_key_exists($r['id'], $caseRelationships)) {
137 $clientRelationships[] = $r;
138 }
139 }
1d85d241 140
6a488035
TO
141 // sort clientRelationships array using jquery call params
142 foreach ($clientRelationships as $key => $row) {
1d85d241 143 $sortArray[$key] = $row[$sort];
6a488035 144 }
0e2079a1
CW
145 $sort_type = "SORT_" . strtoupper($sortOrder);
146 array_multisort($sortArray, constant($sort_type), $clientRelationships);
1d85d241 147
6a488035
TO
148 //limit the rows
149 $allClientRelationships = $clientRelationships;
150 $clientRelationships = array_slice($allClientRelationships, $offset, $rowCount, TRUE);
1d85d241 151
6a488035
TO
152 // after sort we can update username fields to be a url
153 foreach($clientRelationships as $key => $value) {
154 $clientRelationships[$key]['name'] = '<a href='.CRM_Utils_System::url('civicrm/contact/view',
155 'action=view&reset=1&cid='.$clientRelationships[$key]['cid']).'>'.$clientRelationships[$key]['name'].'</a>';
156 }
1d85d241 157
6a488035
TO
158 $iFilteredTotal = $iTotal = $params['total'] = count($allClientRelationships);
159 $selectorElements = array('relation', 'name', 'phone', 'email');
1d85d241 160
6a488035
TO
161 echo CRM_Utils_JSON::encodeDataTableSelector($clientRelationships, $sEcho, $iTotal, $iFilteredTotal, $selectorElements);
162 CRM_Utils_System::civiExit();
1d85d241
DL
163 }
164
165
6a488035
TO
166 static function getCaseRoles() {
167 $caseID = CRM_Utils_Type::escape($_GET['caseID'], 'Integer');
168 $contactID = CRM_Utils_Type::escape($_GET['cid'], 'Integer');
1d85d241 169
6a488035
TO
170 $sortMapper = array(
171 0 => 'relation', 1 => 'name', 2 => 'phone', 3 => 'email', 4 => 'actions'
172 );
1d85d241 173
6a488035
TO
174 $sEcho = CRM_Utils_Type::escape($_REQUEST['sEcho'], 'Integer');
175 $offset = isset($_REQUEST['iDisplayStart']) ? CRM_Utils_Type::escape($_REQUEST['iDisplayStart'], 'Integer') : 0;
176 $rowCount = isset($_REQUEST['iDisplayLength']) ? CRM_Utils_Type::escape($_REQUEST['iDisplayLength'], 'Integer') : 25;
177 $sort = isset($_REQUEST['iSortCol_0']) ? CRM_Utils_Array::value(CRM_Utils_Type::escape($_REQUEST['iSortCol_0'], 'Integer'), $sortMapper) : 'relation';
178 $sortOrder = isset($_REQUEST['sSortDir_0']) ? CRM_Utils_Type::escape($_REQUEST['sSortDir_0'], 'String') : 'asc';
1d85d241 179
6a488035
TO
180 $params = $_POST;
181 if ($sort && $sortOrder) {
182 $sortSQL = $sort .' '.$sortOrder;
183 }
184
185 $caseRelationships = CRM_Case_BAO_Case::getCaseRoles($contactID, $caseID);
186 $caseTypeName = CRM_Case_BAO_Case::getCaseType($caseID, 'name');
187 $xmlProcessor = new CRM_Case_XMLProcessor_Process();
188 $caseRoles = $xmlProcessor->get($caseTypeName, 'CaseRoles');
1d85d241 189
6a488035 190 $hasAccessToAllCases = CRM_Core_Permission::check('access all cases and activities');
1d85d241 191
6a488035
TO
192 $managerRoleId = $xmlProcessor->getCaseManagerRoleId($caseTypeName);
193 if (!empty($managerRoleId)) {
194 $caseRoles[$managerRoleId] = $caseRoles[$managerRoleId] . '<br />' . '(' . ts('Case Manager') . ')';
195 }
1d85d241 196
6a488035
TO
197 foreach ($caseRelationships as $key => $value) {
198 //calculate roles that don't have relationships
a7488080 199 if (!empty($caseRoles[$value['relation_type']])) {
6a488035
TO
200 //keep naming from careRoles array
201 $caseRelationships[$key]['relation'] = $caseRoles[$value['relation_type']];
202 unset($caseRoles[$value['relation_type']]);
203 }
204 // mark orginal case relationships record to use on setting edit links below
205 $caseRelationships[$key]['source'] = 'caseRel';
206 }
1d85d241 207
6a488035
TO
208 $caseRoles['client'] = CRM_Case_BAO_Case::getContactNames($caseID);
209
210 // move/transform caseRoles array data to caseRelationships
211 // for sorting and display
212 foreach($caseRoles as $id => $value) {
213 if ($id != "client") {
214 $rel = array();
215 $rel['relation'] = $value;
216 $rel['relation_type'] = $id;
217 $rel['name'] = '(not assigned)';
218 $rel['phone'] = '';
219 $rel['email'] = '';
220 $rel['source'] = 'caseRoles';
221 $caseRelationships[] = $rel;
222 } else {
223 foreach($value as $clientRole) {
224 $relClient = array();
225 $relClient['relation'] = 'Client';
226 $relClient['name'] = $clientRole['sort_name'];
227 $relClient['phone'] = $clientRole['phone'];
228 $relClient['email'] = $clientRole['email'];
229 $relClient['cid'] = $clientRole['contact_id'];
230 $relClient['source'] = 'contact';
231 $caseRelationships[] = $relClient;
232 }
233 }
234 }
235
236 // sort clientRelationships array using jquery call params
237 foreach ($caseRelationships as $key => $row) {
238 $sortArray[$key] = $row[$sort];
239 }
240
0e2079a1
CW
241 $sort_type = "SORT_" . strtoupper($sortOrder);
242 array_multisort($sortArray, constant($sort_type), $caseRelationships);
6a488035
TO
243
244 //limit rows display
245 $allCaseRelationships = $caseRelationships;
246 $caseRelationships = array_slice($allCaseRelationships, $offset, $rowCount, TRUE);
247
248 // set user name, email and edit columns links
249 // idx will count number of current row / needed by edit links
250 $idx = 1;
251 foreach ($caseRelationships as $key => $row) {
252 // view user links
253 if ($caseRelationships[$key]['cid']) {
4cd35744 254 $caseRelationships[$key]['name'] = '<a href='.CRM_Utils_System::url('civicrm/contact/view',
6a488035
TO
255 'action=view&reset=1&cid='.$caseRelationships[$key]['cid']).'>'.$caseRelationships[$key]['name'].'</a>';
256 }
257 // email column links/icon
258 if ($caseRelationships[$key]['email']) {
ab99c7b3 259 $caseRelationships[$key]['email'] = '<a class="crm-hover-button" href="'.CRM_Utils_System::url('civicrm/contact/view/activity', 'action=reset=1&action=add&atype=3&cid='.$caseRelationships[$key]['cid']).'" title="compose and send an email"><span class="icon email-icon" title="compose and send an email"></span>
6a488035
TO
260 </a>';
261 }
262 // edit links
263 if ($hasAccessToAllCases) {
264 switch($caseRelationships[$key]['source']){
265 case 'caseRel':
1d85d241 266 $caseRelationships[$key]['actions'] =
ab99c7b3 267 '<a href="#" title="edit case role" class="crm-hover-button" onclick="createRelationship( '.$caseRelationships[$key]['relation_type'].', '.$caseRelationships[$key]['cid'].', '.$caseRelationships[$key]['rel_id'].', '.$idx.', \''.$caseRelationships[$key]['relation'].'\' );return false;"><span class="icon edit-icon" ></span></a> <a href="#" class="case-role-delete crm-hover-button" case_id="'.$caseID.'" rel_type="'.$caseRelationships[$key]['relation_type'].'"><span class="icon delete-icon" title="remove contact from case role"></span></a>';
6a488035 268 break;
1d85d241 269
6a488035 270 case 'caseRoles':
1d85d241 271 $caseRelationships[$key]['actions'] =
ab99c7b3 272 '<a href="#" title="edit case role" class="crm-hover-button" onclick="createRelationship('.$caseRelationships[$key]['relation_type'].', null, null, '.$idx.', \''.$caseRelationships[$key]['relation'].'\');return false;"><span class="icon edit-icon"></span></a>';
6a488035
TO
273 break;
274 }
275 } else {
276 $caseRelationships[$key]['actions'] = '';
277 }
278 $idx++;
279 }
280 $iFilteredTotal = $iTotal = $params['total'] = count($allCaseRelationships);
281 $selectorElements = array('relation', 'name', 'phone', 'email', 'actions');
1d85d241 282
6a488035
TO
283 echo CRM_Utils_JSON::encodeDataTableSelector($caseRelationships, $sEcho, $iTotal, $iFilteredTotal, $selectorElements);
284 CRM_Utils_System::civiExit();
1d85d241
DL
285 }
286
6a488035
TO
287 static function convertToCaseActivity() {
288 $params = array('caseID', 'activityID', 'contactID', 'newSubject', 'targetContactIds', 'mode');
289 foreach ($params as $param) {
290 $vals[$param] = CRM_Utils_Array::value($param, $_POST);
291 }
292
293 $retval = self::_convertToCaseActivity($vals);
294
295 echo json_encode($retval);
296 CRM_Utils_System::civiExit();
297 }
298
299 static function _convertToCaseActivity($params) {
300 if (!$params['activityID'] || !$params['caseID']) {
301 return (array('error_msg' => 'required params missing.'));
302 }
303
304 $otherActivity = new CRM_Activity_DAO_Activity();
305 $otherActivity->id = $params['activityID'];
306 if (!$otherActivity->find(TRUE)) {
307 return (array('error_msg' => 'activity record is missing.'));
308 }
309 $actDateTime = CRM_Utils_Date::isoToMysql($otherActivity->activity_date_time);
310
311 //create new activity record.
312 $mainActivity = new CRM_Activity_DAO_Activity();
313 $mainActVals = array();
314 CRM_Core_DAO::storeValues($otherActivity, $mainActVals);
315
316 //get new activity subject.
317 if (!empty($params['newSubject'])) {
318 $mainActVals['subject'] = $params['newSubject'];
319 }
320
321 $mainActivity->copyValues($mainActVals);
322 $mainActivity->id = NULL;
323 $mainActivity->activity_date_time = $actDateTime;
324 //make sure this is current revision.
325 $mainActivity->is_current_revision = TRUE;
326 //drop all relations.
327 $mainActivity->parent_id = $mainActivity->original_id = NULL;
328
329 $mainActivity->save();
330 $mainActivityId = $mainActivity->id;
331 CRM_Activity_BAO_Activity::logActivityAction($mainActivity);
332 $mainActivity->free();
333
334 /* Mark previous activity as deleted. If it was a non-case activity
7b1ec1c6 335 * then just change the subject.
336 */
6a488035
TO
337
338 if (in_array($params['mode'], array(
339 'move', 'file'))) {
340 $caseActivity = new CRM_Case_DAO_CaseActivity();
341 $caseActivity->case_id = $params['caseID'];
342 $caseActivity->activity_id = $otherActivity->id;
343 if ($params['mode'] == 'move' || $caseActivity->find(TRUE)) {
344 $otherActivity->is_deleted = 1;
345 }
346 else {
347 $otherActivity->subject = ts('(Filed on case %1)', array(
7b1ec1c6 348 1 => $params['caseID']
349 )) . ' ' . $otherActivity->subject;
6a488035
TO
350 }
351 $otherActivity->activity_date_time = $actDateTime;
352 $otherActivity->save();
353
354 $caseActivity->free();
355 }
356 $otherActivity->free();
357
358 $targetContacts = array();
359 if (!empty($params['targetContactIds'])) {
360 $targetContacts = array_unique(explode(',', $params['targetContactIds']));
361 }
f813f78e 362
e7e657f0 363 $activityContacts = CRM_Core_OptionGroup::values('activity_contacts', FALSE, FALSE, FALSE, NULL, 'name');
a24b3694 364 $sourceID = CRM_Utils_Array::key('Activity Source', $activityContacts);
365 $assigneeID = CRM_Utils_Array::key('Activity Assignees', $activityContacts);
366 $targetID = CRM_Utils_Array::key('Activity Targets', $activityContacts);
367
7b1ec1c6 368 $sourceContactID = CRM_Activity_BAO_Activity::getSourceContactID($params['activityID']);
369 $src_params = array(
370 'activity_id' => $mainActivityId,
371 'contact_id' => $sourceContactID,
372 'record_type_id' => $sourceID
373 );
374 CRM_Activity_BAO_ActivityContact::create($src_params);
375
6a488035
TO
376 foreach ($targetContacts as $key => $value) {
377 $targ_params = array(
378 'activity_id' => $mainActivityId,
1d85d241 379 'contact_id' => $value,
a24b3694 380 'record_type_id' => $targetID
6a488035 381 );
1d85d241 382 CRM_Activity_BAO_ActivityContact::create($targ_params);
6a488035
TO
383 }
384
385 // typically this will be empty, since assignees on another case may be completely different
386 $assigneeContacts = array();
387 if (!empty($params['assigneeContactIds'])) {
388 $assigneeContacts = array_unique(explode(',', $params['assigneeContactIds']));
389 }
390 foreach ($assigneeContacts as $key => $value) {
391 $assigneeParams = array(
392 'activity_id' => $mainActivityId,
1d85d241 393 'contact_id' => $value,
a24b3694 394 'record_type_id' => $assigneeID
6a488035 395 );
1d85d241 396 CRM_Activity_BAO_ActivityContact::create($assigneeParams);
6a488035
TO
397 }
398
399 //attach newly created activity to case.
400 $caseActivity = new CRM_Case_DAO_CaseActivity();
401 $caseActivity->case_id = $params['caseID'];
402 $caseActivity->activity_id = $mainActivityId;
403 $caseActivity->save();
404 $error_msg = $caseActivity->_lastError;
405 $caseActivity->free();
406
407 $params['mainActivityId'] = $mainActivityId;
408 CRM_Activity_BAO_Activity::copyExtendedActivityData($params);
409
410 return (array('error_msg' => $error_msg, 'newId' => $mainActivity->id));
411 }
412
413 static function getContactActivity() {
414 $contactID = CRM_Utils_Type::escape($_POST['contact_id'], 'Integer');
415 $context = CRM_Utils_Type::escape(CRM_Utils_Array::value('context', $_GET), 'String');
416
417 $sortMapper = array(
f3548d18
BS
418 0 => 'activity_type',
419 1 => 'subject',
420 2 => 'source_contact_name',
421 3 => '',
422 4 => 'activity_date_time',
423 5 => 'status_id',
6a488035
TO
424 );
425
f3548d18
BS
426 $sEcho = CRM_Utils_Type::escape($_REQUEST['sEcho'], 'Integer');
427 $offset = isset($_REQUEST['iDisplayStart']) ? CRM_Utils_Type::escape($_REQUEST['iDisplayStart'], 'Integer') : 0;
428 $rowCount = isset($_REQUEST['iDisplayLength']) ? CRM_Utils_Type::escape($_REQUEST['iDisplayLength'], 'Integer') : 25;
429 $sort = isset($_REQUEST['iSortCol_0']) ? CRM_Utils_Array::value(CRM_Utils_Type::escape($_REQUEST['iSortCol_0'], 'Integer'), $sortMapper) : NULL;
6a488035
TO
430 $sortOrder = isset($_REQUEST['sSortDir_0']) ? CRM_Utils_Type::escape($_REQUEST['sSortDir_0'], 'String') : 'asc';
431
432 $params = $_POST;
433 if ($sort && $sortOrder) {
434 $params['sortBy'] = $sort . ' ' . $sortOrder;
435 }
436
437 $params['page'] = ($offset / $rowCount) + 1;
438 $params['rp'] = $rowCount;
439
440 $params['contact_id'] = $contactID;
441 $params['context'] = $context;
442
443 // get the contact activities
444 $activities = CRM_Activity_BAO_Activity::getContactActivitySelector($params);
445
446 // store the activity filter preference CRM-11761
447 $session = CRM_Core_Session::singleton();
448 $userID = $session->get('userID');
449 if ($userID) {
f3548d18
BS
450 //flush cache before setting filter to account for global cache (memcache)
451 $domainID = CRM_Core_Config::domainID();
452 $cacheKey = CRM_Core_BAO_Setting::inCache(
453 CRM_Core_BAO_Setting::PERSONAL_PREFERENCES_NAME,
454 'activity_tab_filter',
455 NULL,
456 $userID,
457 TRUE,
458 $domainID,
459 TRUE
460 );
461 if ( $cacheKey ) {
462 CRM_Core_BAO_Setting::flushCache($cacheKey);
463 }
464
465 $activityFilter = array(
da0b2039
DL
466 'activity_type_filter_id' => empty($params['activity_type_id']) ? '' :
467 CRM_Utils_Type::escape($params['activity_type_id'], 'Integer'),
468 'activity_type_exclude_filter_id' => empty($params['activity_type_exclude_id']) ? '' :
469 CRM_Utils_Type::escape($params['activity_type_exclude_id'], 'Integer'),
f3548d18
BS
470 );
471
472 CRM_Core_BAO_Setting::setItem(
473 $activityFilter,
474 CRM_Core_BAO_Setting::PERSONAL_PREFERENCES_NAME,
475 'activity_tab_filter',
476 NULL,
477 $userID,
478 $userID
479 );
6a488035 480 }
1d85d241 481
6a488035
TO
482 $iFilteredTotal = $iTotal = $params['total'];
483 $selectorElements = array(
484 'activity_type', 'subject', 'source_contact',
485 'target_contact', 'assignee_contact',
50f5a393 486 'activity_date', 'status','links', 'class',
6a488035
TO
487 );
488
489 echo CRM_Utils_JSON::encodeDataTableSelector($activities, $sEcho, $iTotal, $iFilteredTotal, $selectorElements);
490 CRM_Utils_System::civiExit();
491 }
492}
493