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