470 lines
19 KiB
PHP
470 lines
19 KiB
PHP
|
<?php
|
||
|
/*
|
||
|
+--------------------------------------------------------------------+
|
||
|
| CiviCRM version 4.7 |
|
||
|
+--------------------------------------------------------------------+
|
||
|
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||
|
+--------------------------------------------------------------------+
|
||
|
| This file is a part of CiviCRM. |
|
||
|
| |
|
||
|
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||
|
| under the terms of the GNU Affero General Public License |
|
||
|
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||
|
| |
|
||
|
| CiviCRM is distributed in the hope that it will be useful, but |
|
||
|
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||
|
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||
|
| See the GNU Affero General Public License for more details. |
|
||
|
| |
|
||
|
| You should have received a copy of the GNU Affero General Public |
|
||
|
| License and the CiviCRM Licensing Exception along |
|
||
|
| with this program; if not, contact CiviCRM LLC |
|
||
|
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||
|
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||
|
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||
|
+--------------------------------------------------------------------+
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @package CRM
|
||
|
* @copyright CiviCRM LLC (c) 2004-2017
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* This class contains all the function that are called using AJAX (jQuery)
|
||
|
*/
|
||
|
class CRM_Activity_Page_AJAX {
|
||
|
public static function getCaseActivity() {
|
||
|
// Should those params be passed through the validateParams method?
|
||
|
$caseID = CRM_Utils_Type::validate($_GET['caseID'], 'Integer');
|
||
|
$contactID = CRM_Utils_Type::validate($_GET['cid'], 'Integer');
|
||
|
$userID = CRM_Utils_Type::validate($_GET['userID'], 'Integer');
|
||
|
$context = CRM_Utils_Type::validate(CRM_Utils_Array::value('context', $_GET), 'String');
|
||
|
|
||
|
$optionalParameters = array(
|
||
|
'source_contact_id' => 'Integer',
|
||
|
'status_id' => 'Integer',
|
||
|
'activity_deleted' => 'Boolean',
|
||
|
'activity_type_id' => 'Integer',
|
||
|
'activity_date_low' => 'Date',
|
||
|
'activity_date_high' => 'Date',
|
||
|
);
|
||
|
|
||
|
$params = CRM_Core_Page_AJAX::defaultSortAndPagerParams();
|
||
|
$params += CRM_Core_Page_AJAX::validateParams(array(), $optionalParameters);
|
||
|
|
||
|
// get the activities related to given case
|
||
|
$activities = CRM_Case_BAO_Case::getCaseActivity($caseID, $params, $contactID, $context, $userID);
|
||
|
|
||
|
CRM_Utils_JSON::output($activities);
|
||
|
}
|
||
|
|
||
|
public static function getCaseGlobalRelationships() {
|
||
|
$params = CRM_Core_Page_AJAX::defaultSortAndPagerParams();
|
||
|
|
||
|
// get the activities related to given case
|
||
|
$globalGroupInfo = array();
|
||
|
|
||
|
// get the total row count
|
||
|
CRM_Case_BAO_Case::getGlobalContacts($globalGroupInfo, NULL, FALSE, TRUE, NULL, NULL);
|
||
|
// limit the rows
|
||
|
$relGlobal = CRM_Case_BAO_Case::getGlobalContacts($globalGroupInfo, $params['sortBy'], $showLinks = TRUE, FALSE, $params['offset'], $params['rp']);
|
||
|
|
||
|
$relationships = array();
|
||
|
// after sort we can update username fields to be a url
|
||
|
foreach ($relGlobal as $key => $value) {
|
||
|
$relationship = array();
|
||
|
$relationship['sort_name'] = $value['sort_name'];
|
||
|
$relationship['phone'] = $value['phone'];
|
||
|
$relationship['email'] = $value['email'];
|
||
|
|
||
|
array_push($relationships, $relationship);
|
||
|
}
|
||
|
|
||
|
$globalRelationshipsDT = array();
|
||
|
$globalRelationshipsDT['data'] = $relationships;
|
||
|
$globalRelationshipsDT['recordsTotal'] = count($relationships);
|
||
|
$globalRelationshipsDT['recordsFiltered'] = count($relationships);
|
||
|
|
||
|
CRM_Utils_JSON::output($globalRelationshipsDT);
|
||
|
}
|
||
|
|
||
|
public static function getCaseClientRelationships() {
|
||
|
$caseID = CRM_Utils_Type::escape($_GET['caseID'], 'Integer');
|
||
|
$contactID = CRM_Utils_Type::escape($_GET['cid'], 'Integer');
|
||
|
|
||
|
$params = CRM_Core_Page_AJAX::defaultSortAndPagerParams();
|
||
|
|
||
|
// Retrieve ALL client relationships
|
||
|
$relClient = CRM_Contact_BAO_Relationship::getRelationship($contactID,
|
||
|
CRM_Contact_BAO_Relationship::CURRENT,
|
||
|
0, 0, 0, NULL, NULL, FALSE
|
||
|
);
|
||
|
|
||
|
$caseRelationships = CRM_Case_BAO_Case::getCaseRoles($contactID, $caseID);
|
||
|
|
||
|
// Now build 'Other Relationships' array by removing relationships that are already listed under Case Roles
|
||
|
// so they don't show up twice.
|
||
|
$clientRelationships = array();
|
||
|
foreach ($relClient as $r) {
|
||
|
if (!array_key_exists($r['id'], $caseRelationships)) {
|
||
|
$clientRelationships[] = $r;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// sort clientRelationships array using jquery call params
|
||
|
foreach ($clientRelationships as $key => $row) {
|
||
|
$sortArray[$key] = $row[$params['_raw_values']['sort'][0]];
|
||
|
}
|
||
|
$sort_type = "SORT_" . strtoupper($params['_raw_values']['order'][0]);
|
||
|
array_multisort($sortArray, constant($sort_type), $clientRelationships);
|
||
|
|
||
|
$relationships = array();
|
||
|
// after sort we can update username fields to be a url
|
||
|
foreach ($clientRelationships as $key => $value) {
|
||
|
$relationship = array();
|
||
|
$relationship['relation'] = $value['relation'];
|
||
|
$relationship['name'] = '<a href=' . CRM_Utils_System::url('civicrm/contact/view',
|
||
|
'action=view&reset=1&cid=' . $clientRelationships[$key]['cid']) . '>' . $clientRelationships[$key]['name'] . '</a>';
|
||
|
$relationship['phone'] = $value['phone'];
|
||
|
$relationship['email'] = $value['email'];
|
||
|
|
||
|
array_push($relationships, $relationship);
|
||
|
}
|
||
|
|
||
|
$clientRelationshipsDT = array();
|
||
|
$clientRelationshipsDT['data'] = $relationships;
|
||
|
$clientRelationshipsDT['recordsTotal'] = count($relationships);
|
||
|
$clientRelationshipsDT['recordsFiltered'] = count($relationships);
|
||
|
|
||
|
CRM_Utils_JSON::output($clientRelationshipsDT);
|
||
|
}
|
||
|
|
||
|
|
||
|
public static function getCaseRoles() {
|
||
|
$caseID = CRM_Utils_Type::escape($_GET['caseID'], 'Integer');
|
||
|
$contactID = CRM_Utils_Type::escape($_GET['cid'], 'Integer');
|
||
|
|
||
|
$params = CRM_Core_Page_AJAX::defaultSortAndPagerParams();
|
||
|
|
||
|
$caseRelationships = CRM_Case_BAO_Case::getCaseRoles($contactID, $caseID);
|
||
|
$caseTypeName = CRM_Case_BAO_Case::getCaseType($caseID, 'name');
|
||
|
$xmlProcessor = new CRM_Case_XMLProcessor_Process();
|
||
|
$caseRoles = $xmlProcessor->get($caseTypeName, 'CaseRoles');
|
||
|
|
||
|
$hasAccessToAllCases = CRM_Core_Permission::check('access all cases and activities');
|
||
|
|
||
|
$managerRoleId = $xmlProcessor->getCaseManagerRoleId($caseTypeName);
|
||
|
|
||
|
foreach ($caseRelationships as $key => $value) {
|
||
|
// This role has been filled
|
||
|
unset($caseRoles[$value['relation_type']]);
|
||
|
// mark original case relationships record to use on setting edit links below
|
||
|
$caseRelationships[$key]['source'] = 'caseRel';
|
||
|
}
|
||
|
|
||
|
$caseRoles['client'] = CRM_Case_BAO_Case::getContactNames($caseID);
|
||
|
|
||
|
// move/transform caseRoles array data to caseRelationships
|
||
|
// for sorting and display
|
||
|
// CRM-14466 added cid to the non-client array to avoid php notice
|
||
|
foreach ($caseRoles as $id => $value) {
|
||
|
if ($id != "client") {
|
||
|
$rel = array();
|
||
|
$rel['relation'] = $value;
|
||
|
$rel['relation_type'] = $id;
|
||
|
$rel['name'] = '(not assigned)';
|
||
|
$rel['phone'] = '';
|
||
|
$rel['email'] = '';
|
||
|
$rel['source'] = 'caseRoles';
|
||
|
$caseRelationships[] = $rel;
|
||
|
}
|
||
|
else {
|
||
|
foreach ($value as $clientRole) {
|
||
|
$relClient = array();
|
||
|
$relClient['relation'] = 'Client';
|
||
|
$relClient['name'] = $clientRole['sort_name'];
|
||
|
$relClient['phone'] = $clientRole['phone'];
|
||
|
$relClient['email'] = $clientRole['email'];
|
||
|
$relClient['cid'] = $clientRole['contact_id'];
|
||
|
$relClient['source'] = 'contact';
|
||
|
$caseRelationships[] = $relClient;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// sort clientRelationships array using jquery call params
|
||
|
foreach ($caseRelationships as $key => $row) {
|
||
|
$sortArray[$key] = $row[$params['_raw_values']['sort'][0]];
|
||
|
}
|
||
|
$sort_type = "SORT_" . strtoupper($params['_raw_values']['order'][0]);
|
||
|
array_multisort($sortArray, constant($sort_type), $caseRelationships);
|
||
|
|
||
|
$relationships = array();
|
||
|
|
||
|
// set user name, email and edit columns links
|
||
|
foreach ($caseRelationships as $key => &$row) {
|
||
|
$typeLabel = $row['relation'];
|
||
|
// Add "<br />(Case Manager)" to label
|
||
|
if (!empty($row['relation_type']) && $row['relation_type'] == $managerRoleId) {
|
||
|
$row['relation'] .= '<br />' . '(' . ts('Case Manager') . ')';
|
||
|
}
|
||
|
// view user links
|
||
|
if (!empty($row['cid'])) {
|
||
|
$row['name'] = '<a class="view-contact" title="' . ts('View Contact') . '" href=' . CRM_Utils_System::url('civicrm/contact/view',
|
||
|
'action=view&reset=1&cid=' . $row['cid']) . '>' . $row['name'] . '</a>';
|
||
|
}
|
||
|
// email column links/icon
|
||
|
if ($row['email']) {
|
||
|
$row['email'] = '<a class="crm-hover-button crm-popup" href="' . CRM_Utils_System::url('civicrm/activity/email/add', 'reset=1&action=add&atype=3&cid=' . $row['cid']) . '&caseid=' . $caseID . '" title="' . ts('Send an Email') . '"><i class="crm-i fa-envelope"></i></a>';
|
||
|
}
|
||
|
// edit links
|
||
|
$row['actions'] = '';
|
||
|
if ($hasAccessToAllCases) {
|
||
|
$contactType = empty($row['relation_type']) ? '' : (string) CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_RelationshipType', $row['relation_type'], 'contact_type_b');
|
||
|
$contactType = $contactType == 'Contact' ? '' : $contactType;
|
||
|
switch ($row['source']) {
|
||
|
case 'caseRel':
|
||
|
$row['actions'] = '<a href="#editCaseRoleDialog" title="' . ts('Reassign %1', array(1 => $typeLabel)) . '" class="crm-hover-button case-miniform" data-contact_type="' . $contactType . '" data-rel_type="' . $row['relation_type'] . '_' . $row['relationship_direction'] . '" data-cid="' . $row['cid'] . '" data-rel_id="' . $row['rel_id'] . '"data-key="' . CRM_Core_Key::get('civicrm/ajax/relation') . '">' .
|
||
|
'<i class="crm-i fa-pencil"></i>' .
|
||
|
'</a>' .
|
||
|
'<a href="#deleteCaseRoleDialog" title="' . ts('Remove %1', array(1 => $typeLabel)) . '" class="crm-hover-button case-miniform" data-contact_type="' . $contactType . '" data-rel_type="' . $row['relation_type'] . '_' . $row['relationship_direction'] . '" data-cid="' . $row['cid'] . '" data-key="' . CRM_Core_Key::get('civicrm/ajax/delcaserole') . '">' .
|
||
|
'<span class="icon delete-icon"></span>' .
|
||
|
'</a>';
|
||
|
break;
|
||
|
|
||
|
case 'caseRoles':
|
||
|
$row['actions'] = '<a href="#editCaseRoleDialog" title="' . ts('Assign %1', array(1 => $typeLabel)) . '" class="crm-hover-button case-miniform" data-contact_type="' . $contactType . '" data-rel_type="' . $row['relation_type'] . '_a_b" data-key="' . CRM_Core_Key::get('civicrm/ajax/relation') . '">' .
|
||
|
'<i class="crm-i fa-pencil"></i>' .
|
||
|
'</a>';
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
unset($row['cid']);
|
||
|
unset($row['relation_type']);
|
||
|
unset($row['rel_id']);
|
||
|
unset($row['client_id']);
|
||
|
unset($row['source']);
|
||
|
array_push($relationships, $row);
|
||
|
}
|
||
|
$params['total'] = count($relationships);
|
||
|
|
||
|
$caseRelationshipsDT = array();
|
||
|
$caseRelationshipsDT['data'] = $relationships;
|
||
|
$caseRelationshipsDT['recordsTotal'] = $params['total'];
|
||
|
$caseRelationshipsDT['recordsFiltered'] = $params['total'];
|
||
|
|
||
|
CRM_Utils_JSON::output($caseRelationshipsDT);
|
||
|
|
||
|
}
|
||
|
|
||
|
public static function convertToCaseActivity() {
|
||
|
$params = array('caseID', 'activityID', 'contactID', 'newSubject', 'targetContactIds', 'mode');
|
||
|
$vals = array();
|
||
|
foreach ($params as $param) {
|
||
|
$vals[$param] = CRM_Utils_Array::value($param, $_POST);
|
||
|
}
|
||
|
|
||
|
CRM_Utils_JSON::output(self::_convertToCaseActivity($vals));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param array $params
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
public static function _convertToCaseActivity($params) {
|
||
|
if (!$params['activityID'] || !$params['caseID']) {
|
||
|
return (array('error_msg' => 'required params missing.'));
|
||
|
}
|
||
|
|
||
|
$otherActivity = new CRM_Activity_DAO_Activity();
|
||
|
$otherActivity->id = $params['activityID'];
|
||
|
if (!$otherActivity->find(TRUE)) {
|
||
|
return (array('error_msg' => 'activity record is missing.'));
|
||
|
}
|
||
|
$actDateTime = CRM_Utils_Date::isoToMysql($otherActivity->activity_date_time);
|
||
|
|
||
|
// Create new activity record.
|
||
|
$mainActivity = new CRM_Activity_DAO_Activity();
|
||
|
$mainActVals = array();
|
||
|
CRM_Core_DAO::storeValues($otherActivity, $mainActVals);
|
||
|
|
||
|
// Get new activity subject.
|
||
|
if (!empty($params['newSubject'])) {
|
||
|
$mainActVals['subject'] = $params['newSubject'];
|
||
|
}
|
||
|
|
||
|
$mainActivity->copyValues($mainActVals);
|
||
|
$mainActivity->id = NULL;
|
||
|
$mainActivity->activity_date_time = $actDateTime;
|
||
|
// Make sure this is current revision.
|
||
|
$mainActivity->is_current_revision = TRUE;
|
||
|
// Drop all relations.
|
||
|
$mainActivity->parent_id = $mainActivity->original_id = NULL;
|
||
|
|
||
|
$mainActivity->save();
|
||
|
$mainActivityId = $mainActivity->id;
|
||
|
CRM_Activity_BAO_Activity::logActivityAction($mainActivity);
|
||
|
$mainActivity->free();
|
||
|
|
||
|
// Mark previous activity as deleted. If it was a non-case activity
|
||
|
// then just change the subject.
|
||
|
if (in_array($params['mode'], array(
|
||
|
'move',
|
||
|
'file',
|
||
|
))) {
|
||
|
$caseActivity = new CRM_Case_DAO_CaseActivity();
|
||
|
$caseActivity->case_id = $params['caseID'];
|
||
|
$caseActivity->activity_id = $otherActivity->id;
|
||
|
if ($params['mode'] == 'move' || $caseActivity->find(TRUE)) {
|
||
|
$otherActivity->is_deleted = 1;
|
||
|
}
|
||
|
else {
|
||
|
$otherActivity->subject = ts('(Filed on case %1)', array(
|
||
|
1 => $params['caseID'],
|
||
|
)) . ' ' . $otherActivity->subject;
|
||
|
}
|
||
|
$otherActivity->activity_date_time = $actDateTime;
|
||
|
$otherActivity->save();
|
||
|
|
||
|
$caseActivity->free();
|
||
|
}
|
||
|
$otherActivity->free();
|
||
|
|
||
|
$targetContacts = array();
|
||
|
if (!empty($params['targetContactIds'])) {
|
||
|
$targetContacts = array_unique(explode(',', $params['targetContactIds']));
|
||
|
}
|
||
|
|
||
|
$activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
|
||
|
$sourceID = CRM_Utils_Array::key('Activity Source', $activityContacts);
|
||
|
$assigneeID = CRM_Utils_Array::key('Activity Assignees', $activityContacts);
|
||
|
$targetID = CRM_Utils_Array::key('Activity Targets', $activityContacts);
|
||
|
|
||
|
$sourceContactID = CRM_Activity_BAO_Activity::getSourceContactID($params['activityID']);
|
||
|
$src_params = array(
|
||
|
'activity_id' => $mainActivityId,
|
||
|
'contact_id' => $sourceContactID,
|
||
|
'record_type_id' => $sourceID,
|
||
|
);
|
||
|
CRM_Activity_BAO_ActivityContact::create($src_params);
|
||
|
|
||
|
foreach ($targetContacts as $key => $value) {
|
||
|
$targ_params = array(
|
||
|
'activity_id' => $mainActivityId,
|
||
|
'contact_id' => $value,
|
||
|
'record_type_id' => $targetID,
|
||
|
);
|
||
|
CRM_Activity_BAO_ActivityContact::create($targ_params);
|
||
|
}
|
||
|
|
||
|
//CRM-21114 retrieve assignee contacts from original case; allow overriding from params
|
||
|
$assigneeContacts = CRM_Activity_BAO_ActivityContact::retrieveContactIdsByActivityId($params['activityID'], $assigneeID);
|
||
|
if (!empty($params['assigneeContactIds'])) {
|
||
|
$assigneeContacts = array_unique(explode(',', $params['assigneeContactIds']));
|
||
|
}
|
||
|
foreach ($assigneeContacts as $key => $value) {
|
||
|
$assigneeParams = array(
|
||
|
'activity_id' => $mainActivityId,
|
||
|
'contact_id' => $value,
|
||
|
'record_type_id' => $assigneeID,
|
||
|
);
|
||
|
CRM_Activity_BAO_ActivityContact::create($assigneeParams);
|
||
|
}
|
||
|
|
||
|
// Attach newly created activity to case.
|
||
|
$caseActivity = new CRM_Case_DAO_CaseActivity();
|
||
|
$caseActivity->case_id = $params['caseID'];
|
||
|
$caseActivity->activity_id = $mainActivityId;
|
||
|
$caseActivity->save();
|
||
|
$error_msg = $caseActivity->_lastError;
|
||
|
$caseActivity->free();
|
||
|
|
||
|
$params['mainActivityId'] = $mainActivityId;
|
||
|
CRM_Activity_BAO_Activity::copyExtendedActivityData($params);
|
||
|
|
||
|
return (array('error_msg' => $error_msg, 'newId' => $mainActivity->id));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get activities for the contact.
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
public static function getContactActivity() {
|
||
|
$requiredParameters = array(
|
||
|
'cid' => 'Integer',
|
||
|
);
|
||
|
|
||
|
$optionalParameters = array(
|
||
|
'context' => 'String',
|
||
|
'activity_type_id' => 'Integer',
|
||
|
'activity_type_exclude_id' => 'Integer',
|
||
|
'activity_status_id' => 'String',
|
||
|
'activity_date_relative' => 'String',
|
||
|
'activity_date_low' => 'String',
|
||
|
'activity_date_high' => 'String',
|
||
|
);
|
||
|
|
||
|
$params = CRM_Core_Page_AJAX::defaultSortAndPagerParams();
|
||
|
$params += CRM_Core_Page_AJAX::validateParams($requiredParameters, $optionalParameters);
|
||
|
|
||
|
// To be consistent, the cid parameter should be renamed to contact_id in
|
||
|
// the template file, see templates/CRM/Activity/Selector/Selector.tpl
|
||
|
$params['contact_id'] = $params['cid'];
|
||
|
unset($params['cid']);
|
||
|
|
||
|
// get the contact activities
|
||
|
$activities = CRM_Activity_BAO_Activity::getContactActivitySelector($params);
|
||
|
|
||
|
foreach ($activities['data'] as $key => $value) {
|
||
|
// Check if recurring activity.
|
||
|
if (!empty($value['is_recurring_activity'])) {
|
||
|
$repeat = $value['is_recurring_activity'];
|
||
|
$activities['data'][$key]['activity_type'] .= '<br/><span class="bold">' . ts('Repeating (%1 of %2)', array(1 => $repeat[0], 2 => $repeat[1])) . '</span>';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// store the activity filter preference CRM-11761
|
||
|
if (Civi::settings()->get('preserve_activity_tab_filter') && ($userID = CRM_Core_Session::getLoggedInContactID())) {
|
||
|
unset($optionalParameters['context']);
|
||
|
foreach ($optionalParameters as $searchField => $dataType) {
|
||
|
$formSearchField = $searchField;
|
||
|
if ($searchField == 'activity_type_id') {
|
||
|
$formSearchField = 'activity_type_filter_id';
|
||
|
}
|
||
|
elseif ($searchField == 'activity_type_exclude_id') {
|
||
|
$formSearchField = 'activity_type_exclude_filter_id';
|
||
|
}
|
||
|
if (!empty($params[$searchField])) {
|
||
|
$activityFilter[$formSearchField] = CRM_Utils_Type::escape($params[$searchField], $dataType);
|
||
|
if (in_array($searchField, array('activity_date_low', 'activity_date_high'))) {
|
||
|
$activityFilter['activity_date_relative'] = 0;
|
||
|
}
|
||
|
elseif ($searchField == 'activity_status_id') {
|
||
|
$activityFilter['status_id'] = explode(',', $activityFilter[$searchField]);
|
||
|
}
|
||
|
}
|
||
|
elseif (in_array($searchField, array('activity_type_id', 'activity_type_exclude_id'))) {
|
||
|
$activityFilter[$formSearchField] = '';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @var \Civi\Core\SettingsBag $cSettings
|
||
|
*/
|
||
|
$cSettings = Civi::service('settings_manager')->getBagByContact(CRM_Core_Config::domainID(), $userID);
|
||
|
$cSettings->set('activity_tab_filter', $activityFilter);
|
||
|
}
|
||
|
if (!empty($_GET['is_unit_test'])) {
|
||
|
return array($activities, $activityFilter);
|
||
|
}
|
||
|
|
||
|
CRM_Utils_JSON::output($activities);
|
||
|
}
|
||
|
|
||
|
}
|