CRM-15789 - Remove ascii art from button text
[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('Save'));
82 }
83
84 /**
85 * Add local and global form rules
86 *
87 *
88 * @return void
89 */
90 public function addRules() {
91 }
92
93 /**
94 * Process the form after the input has been submitted and validated
95 *
96 *
97 * @return void
98 */
99
100 public function postProcess() {
101 $formparams = $this->exportValues();
102 $caseId = $formparams['unclosed_case_id'];
103 $filedActivities = 0;
104 foreach ($this->_activityHolderIds as $key => $id) {
105 $targetContactValues = $defaults = array();
106 $params = array('id' => $id);
107 CRM_Activity_BAO_Activity::retrieve($params, $defaults);
108 if (CRM_Case_BAO_Case::checkPermission($id, 'File On Case', $defaults['activity_type_id'])) {
109
110 if (!CRM_Utils_Array::crmIsEmptyArray($defaults['target_contact'])) {
111 $targetContactValues = array_combine(array_unique($defaults['target_contact']),
112 explode(';', trim($defaults['target_contact_value']))
113 );
114 $targetContactValues = implode(',', array_keys($targetContactValues));
115 }
116
117 $params = array(
118 'caseID' => $caseId,
119 'activityID' => $id,
120 'newSubject' => empty($defaults['subject']) ? '' : $defaults['subject'],
121 'targetContactIds' => $targetContactValues,
122 'mode' => 'file',
123 );
124
125 $error_msg = CRM_Activity_Page_AJAX::_convertToCaseActivity($params);
126 if (empty($error_msg['error_msg'])) {
127 $filedActivities++;
128 }
129 else {
130 CRM_Core_Session::setStatus($error_msg['error_msg'], ts("Error"), "error");
131 }
132 }
133 else {
134 CRM_Core_Session::setStatus(ts('Not permitted to file activity %1 %2.', array(
135 1 => empty($defaults['subject']) ? '' : $defaults['subject'],
136 2 => $defaults['activity_date_time'])),
137 ts("Error"), "error");
138 }
139 }
140
141 CRM_Core_Session::setStatus($filedActivities, ts("Filed Activities"), "success");
142 CRM_Core_Session::setStatus("", ts('Total Selected Activities: %1', array(1 => count($this->_activityHolderIds))), "info");
143 }
144 }