Merge pull request #11495 from yashodha/CRM-21637
[civicrm-core.git] / CRM / Activity / Form / Task / FileOnCase.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2018 |
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-2018
32 */
33
34 /**
35 * This class provides the functionality to email a group of contacts
36 */
37 class CRM_Activity_Form_Task_FileOnCase extends CRM_Activity_Form_Task {
38
39 /**
40 * The title of the group.
41 *
42 * @var string
43 */
44 protected $_title;
45
46 /**
47 * Variable to store redirect path.
48 */
49 protected $_userContext;
50
51 /**
52 * Variable to store contact Ids.
53 */
54 public $_contacts;
55
56 /**
57 * Build all the data structures needed to build the form.
58 */
59 public function preProcess() {
60 parent::preProcess();
61 $session = CRM_Core_Session::singleton();
62 $this->_userContext = $session->readUserContext();
63
64 CRM_Utils_System::setTitle(ts('File on Case'));
65 }
66
67 /**
68 * Build the form object.
69 */
70 public function buildQuickForm() {
71 $this->addEntityRef('unclosed_case_id', ts('Select Case'), array('entity' => 'Case'), TRUE);
72 $this->addDefaultButtons(ts('Save'));
73 }
74
75 /**
76 * Process the form after the input has been submitted and validated.
77 */
78 public function postProcess() {
79 $formparams = $this->exportValues();
80 $caseId = $formparams['unclosed_case_id'];
81 $filedActivities = 0;
82 foreach ($this->_activityHolderIds as $key => $id) {
83 $targetContactValues = $defaults = array();
84 $params = array('id' => $id);
85 CRM_Activity_BAO_Activity::retrieve($params, $defaults);
86 if (CRM_Case_BAO_Case::checkPermission($id, 'File On Case', $defaults['activity_type_id'])) {
87
88 if (!CRM_Utils_Array::crmIsEmptyArray($defaults['target_contact'])) {
89 $targetContactValues = array_combine(array_unique($defaults['target_contact']),
90 explode(';', trim($defaults['target_contact_value']))
91 );
92 $targetContactValues = implode(',', array_keys($targetContactValues));
93 }
94
95 $params = array(
96 'caseID' => $caseId,
97 'activityID' => $id,
98 'newSubject' => empty($defaults['subject']) ? '' : $defaults['subject'],
99 'targetContactIds' => $targetContactValues,
100 'mode' => 'file',
101 );
102
103 $error_msg = CRM_Activity_Page_AJAX::_convertToCaseActivity($params);
104 if (empty($error_msg['error_msg'])) {
105 $filedActivities++;
106 }
107 else {
108 CRM_Core_Session::setStatus($error_msg['error_msg'], ts("Error"), "error");
109 }
110 }
111 else {
112 CRM_Core_Session::setStatus(ts('Not permitted to file activity %1 %2.', array(
113 1 => empty($defaults['subject']) ? '' : $defaults['subject'],
114 2 => $defaults['activity_date_time'],
115 )),
116 ts("Error"), "error");
117 }
118 }
119
120 CRM_Core_Session::setStatus($filedActivities, ts("Filed Activities"), "success");
121 CRM_Core_Session::setStatus("", ts('Total Selected Activities: %1', array(1 => count($this->_activityHolderIds))), "info");
122 }
123
124 }