Tag form cleanup
[civicrm-core.git] / CRM / Case / Form / Case.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
fa938177 6 | Copyright CiviCRM LLC (c) 2004-2016 |
6a488035
TO
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
fa938177 31 * @copyright CiviCRM LLC (c) 2004-2016
6a488035
TO
32 */
33
34/**
df371444 35 * This class generates form components for case activity.
6a488035
TO
36 */
37class CRM_Case_Form_Case extends CRM_Core_Form {
38
39 /**
40 * The context
41 *
42 * @var string
43 */
44 public $_context = 'case';
45
46 /**
47 * Case Id
48 */
49 public $_caseId = NULL;
50
51 /**
52 * Client Id
53 */
54 public $_currentlyViewedContactId = NULL;
55
56 /**
57 * Activity Type File
58 */
59 public $_activityTypeFile = NULL;
60
61 /**
100fef9d 62 * Logged in contact Id
6a488035
TO
63 */
64 public $_currentUserId = NULL;
65
66 /**
100fef9d 67 * Activity type Id
6a488035
TO
68 */
69 public $_activityTypeId = NULL;
70
71 /**
100fef9d 72 * Activity type Id
6a488035
TO
73 */
74 public $_activityId = NULL;
75
76 /**
100fef9d 77 * Action
6a488035
TO
78 */
79 public $_action;
80
74fb6e99 81 /**
100fef9d 82 * Case type id
74fb6e99
PJ
83 */
84 public $_caseTypeId = NULL;
85
6a488035 86 /**
fe482240 87 * Build the form object.
6a488035 88 */
00be9182 89 public function preProcess() {
6a488035
TO
90
91 $this->_caseId = CRM_Utils_Request::retrieve('id', 'Positive', $this);
92
93 $this->_currentlyViewedContactId = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
94
95 if ($this->_action & CRM_Core_Action::ADD && !$this->_currentlyViewedContactId) {
96 // check for add contacts permissions
97 if (!CRM_Core_Permission::check('add contacts')) {
98 CRM_Utils_System::permissionDenied();
99 return;
100 }
101 }
102
103 //CRM-4418
104 if (!CRM_Core_Permission::checkActionPermission('CiviCase', $this->_action)) {
0499b0ad 105 CRM_Core_Error::fatal(ts('You do not have permission to access this page.'));
6a488035
TO
106 }
107
108 if ($this->_action & CRM_Core_Action::DELETE || $this->_action & CRM_Core_Action::RENEW) {
109 return TRUE;
110 }
111
112 if (!$this->_caseId) {
e547f744 113 $caseAttributes = array(
7a5c0c6c
CW
114 'case_type_id' => ts('Case Type'),
115 'status_id' => ts('Case Status'),
116 'medium_id' => ts('Activity Medium'),
6a488035
TO
117 );
118
7a5c0c6c
CW
119 foreach ($caseAttributes as $key => $label) {
120 if (!CRM_Case_BAO_Case::buildOptions($key, 'create')) {
121 CRM_Core_Error::fatal(ts('You do not have any active %1', array(1 => $label)));
6a488035
TO
122 }
123 }
124 }
125
126 if ($this->_action & CRM_Core_Action::ADD) {
127 $this->_activityTypeId = CRM_Core_OptionGroup::getValue('activity_type',
128 'Open Case',
129 'name'
130 );
131 if (!$this->_activityTypeId) {
132 CRM_Core_Error::fatal(ts('The Open Case activity type is missing or disabled. Please have your site administrator check Administer > Option Lists > Activity Types for the CiviCase component.'));
133 }
134 }
135
136 //check for case permissions.
137 if (!CRM_Case_BAO_Case::accessCiviCase()) {
138 CRM_Core_Error::fatal(ts('You are not authorized to access this page.'));
139 }
140 if (($this->_action & CRM_Core_Action::ADD) &&
141 (!CRM_Core_Permission::check('access all cases and activities') &&
142 !CRM_Core_Permission::check('add cases')
143 )
144 ) {
145 CRM_Core_Error::fatal(ts('You are not authorized to access this page.'));
146 }
147
28a04ea9 148 if ($this->_activityTypeFile = CRM_Activity_BAO_Activity::getFileForActivityTypeId($this->_activityTypeId,
6a488035
TO
149 'Case'
150 )
151 ) {
152 $this->assign('activityTypeFile', $this->_activityTypeFile);
153 }
154
155 $details = CRM_Case_PseudoConstant::caseActivityType(FALSE);
156
157 CRM_Utils_System::setTitle($details[$this->_activityTypeId]['label']);
158 $this->assign('activityType', $details[$this->_activityTypeId]['label']);
159 $this->assign('activityTypeDescription', $details[$this->_activityTypeId]['description']);
160
161 if (isset($this->_currentlyViewedContactId)) {
162 $contact = new CRM_Contact_DAO_Contact();
163 $contact->id = $this->_currentlyViewedContactId;
164 if (!$contact->find(TRUE)) {
165 CRM_Core_Error::statusBounce(ts('Client contact does not exist: %1', array(1 => $this->_currentlyViewedContactId)));
166 }
167 $this->assign('clientName', $contact->display_name);
168 }
169
6a488035
TO
170 $session = CRM_Core_Session::singleton();
171 $this->_currentUserId = $session->get('userID');
172
173 //when custom data is included in this page
174 CRM_Custom_Form_CustomData::preProcess($this, NULL, $this->_activityTypeId, 1, 'Activity');
0e6e8724
DL
175 $className = "CRM_Case_Form_Activity_{$this->_activityTypeFile}";
176 $className::preProcess($this);
6a488035
TO
177 $activityGroupTree = $this->_groupTree;
178
179 // for case custom fields to populate with defaults
a7488080 180 if (!empty($_POST['hidden_custom'])) {
5548f5f9 181 $params = CRM_Utils_Request::exportValues();
182 CRM_Custom_Form_CustomData::preProcess($this, NULL, CRM_Utils_Array::value('case_type_id', $params, $this->_caseTypeId), 1, 'Case', $this->_caseId);
6a488035
TO
183 CRM_Custom_Form_CustomData::buildQuickForm($this);
184 }
185
186 // so that grouptree is not populated with case fields, since the grouptree is used
187 // for populating activity custom fields.
188 $this->_groupTree = $activityGroupTree;
189 }
190
191 /**
df371444 192 * Set default values for the form.
6a488035 193 */
00be9182 194 public function setDefaultValues() {
39082712 195 if ($this->_action & CRM_Core_Action::DELETE || $this->_action & CRM_Core_Action::RENEW) {
6a488035
TO
196 return TRUE;
197 }
0e6e8724
DL
198 $className = "CRM_Case_Form_Activity_{$this->_activityTypeFile}";
199 $defaults = $className::setDefaultValues($this);
6a488035
TO
200 $defaults = array_merge($defaults, CRM_Custom_Form_CustomData::setDefaultValues($this));
201 return $defaults;
202 }
203
204 public function buildQuickForm() {
205 $xmlProcessorProcess = new CRM_Case_XMLProcessor_Process();
206 $isMultiClient = $xmlProcessorProcess->getAllowMultipleCaseClients();
207 $this->assign('multiClient', $isMultiClient);
208
209 if ($this->_action & CRM_Core_Action::DELETE || $this->_action & CRM_Core_Action::RENEW) {
210 $title = 'Delete';
211 if ($this->_action & CRM_Core_Action::RENEW) {
212 $title = 'Restore';
213 }
214 $this->addButtons(array(
215 array(
216 'type' => 'next',
217 'name' => $title,
218 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
219 'isDefault' => TRUE,
220 ),
221 array(
222 'type' => 'cancel',
223 'name' => ts('Cancel'),
224 ),
225 )
226 );
227 return;
228 }
229
6a488035
TO
230 //need to assign custom data type and subtype to the template
231 $this->assign('customDataType', 'Case');
232
233 CRM_Custom_Form_CustomData::buildQuickForm($this);
234 // we don't want to show button on top of custom form
235 $this->assign('noPreCustomButton', TRUE);
236
237 $s = CRM_Core_DAO::getAttribute('CRM_Activity_DAO_Activity', 'subject');
238 if (!is_array($s)) {
239 $s = array();
240 }
241 $this->add('text', 'activity_subject', ts('Subject'),
242 array_merge($s, array(
28a04ea9 243 'maxlength' => '128',
353ffa53 244 )), TRUE
6a488035
TO
245 );
246
e0f9d6a2 247 CRM_Core_BAO_Tag::getTags('civicrm_case', $tags, NULL,
47358d92 248 '&nbsp;&nbsp;', TRUE);
249
6a488035
TO
250 if (!empty($tags)) {
251 $this->add('select', 'tag', ts('Select Tags'), $tags, FALSE,
ab345ca5 252 array('id' => 'tags', 'multiple' => 'multiple', 'class' => 'crm-select2')
6a488035
TO
253 );
254 }
255
256 // build tag widget
257 $parentNames = CRM_Core_BAO_Tag::getTagSet('civicrm_case');
95ef220a 258 CRM_Core_Form_Tag::buildQuickForm($this, $parentNames, 'civicrm_case', NULL, FALSE, TRUE);
6a488035
TO
259
260 $this->addButtons(array(
261 array(
262 'type' => 'next',
263 'name' => ts('Save'),
264 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
265 'isDefault' => TRUE,
266 ),
267 array(
268 'type' => 'cancel',
269 'name' => ts('Cancel'),
270 ),
271 )
272 );
273
0e6e8724
DL
274 $className = "CRM_Case_Form_Activity_{$this->_activityTypeFile}";
275 $className::buildQuickForm($this);
6a488035
TO
276 }
277
278 /**
fe482240 279 * Add local and global form rules.
6a488035 280 *
df371444 281 * @return bool
6a488035 282 */
00be9182 283 public function addRules() {
39082712 284 if ($this->_action & CRM_Core_Action::DELETE || $this->_action & CRM_Core_Action::RENEW) {
6a488035
TO
285 return TRUE;
286 }
0e6e8724
DL
287 $className = "CRM_Case_Form_Activity_{$this->_activityTypeFile}";
288 $this->addFormRule(array($className, 'formRule'), $this);
6a488035
TO
289 $this->addFormRule(array('CRM_Case_Form_Case', 'formRule'), $this);
290 }
291
292 /**
fe482240 293 * Global validation rules for the form.
6a488035 294 *
64bd5a0e
TO
295 * @param array $values
296 * Posted values of the form.
6a488035 297 *
da6b46f4 298 * @param $files
c490a46a 299 * @param CRM_Core_Form $form
da6b46f4 300 *
a6c01b45
CW
301 * @return array
302 * list of errors to be posted back to the form
6a488035 303 */
00be9182 304 public static function formRule($values, $files, $form) {
6a488035
TO
305 return TRUE;
306 }
307
308 /**
fe482240 309 * Process the form submission.
6a488035
TO
310 */
311 public function postProcess() {
312 $transaction = new CRM_Core_Transaction();
313
314 // check if dedupe button, if so return.
315 $buttonName = $this->controller->getButtonName();
316 if (isset($this->_dedupeButtonName) && $buttonName == $this->_dedupeButtonName) {
317 return;
318 }
319
320 if ($this->_action & CRM_Core_Action::DELETE) {
321 $statusMsg = NULL;
322 $caseDelete = CRM_Case_BAO_Case::deleteCase($this->_caseId, TRUE);
323 if ($caseDelete) {
324 $statusMsg = ts('The selected case has been moved to the Trash. You can view and / or restore deleted cases by checking the "Deleted Cases" option under Find Cases.<br />');
325 }
326 CRM_Core_Session::setStatus($statusMsg, ts('Case Deleted'), 'success');
327 return;
328 }
329
330 if ($this->_action & CRM_Core_Action::RENEW) {
331 $statusMsg = NULL;
332 $caseRestore = CRM_Case_BAO_Case::restoreCase($this->_caseId);
333 if ($caseRestore) {
334 $statusMsg = ts('The selected case has been restored.<br />');
335 }
336 CRM_Core_Session::setStatus($statusMsg, ts('Restored'), 'success');
337 return;
338 }
339 // store the submitted values in an array
340 $params = $this->controller->exportValues($this->_name);
341 $params['now'] = date("Ymd");
342
6a488035
TO
343 // 1. call begin post process
344 if ($this->_activityTypeFile) {
0e6e8724 345 $className = "CRM_Case_Form_Activity_{$this->_activityTypeFile}";
481a74f4 346 $className::beginPostProcess($this, $params);
6a488035
TO
347 }
348
a7488080 349 if (!empty($params['hidden_custom']) &&
6a488035
TO
350 !isset($params['custom'])
351 ) {
352 $customFields = array();
0e6e8724
DL
353 $params['custom'] = CRM_Core_BAO_CustomField::postProcess(
354 $params,
6a488035
TO
355 NULL,
356 'Case'
357 );
358 }
359
360 // 2. create/edit case
a7488080 361 if (!empty($params['case_type_id'])) {
d14b35a4 362 $params['case_type'] = CRM_Core_DAO::getFieldValue('CRM_Case_DAO_CaseType', $params['case_type_id'], 'name', 'id');
6a488035 363 $params['subject'] = $params['activity_subject'];
6a488035
TO
364 }
365 $caseObj = CRM_Case_BAO_Case::create($params);
366 $params['case_id'] = $caseObj->id;
367 // unset any ids, custom data
368 unset($params['id'], $params['custom']);
369
370 // add tags if exists
371 $tagParams = array();
372 if (!empty($params['tag'])) {
373 $tagParams = array();
374 foreach ($params['tag'] as $tag) {
375 $tagParams[$tag] = 1;
376 }
377 }
378 CRM_Core_BAO_EntityTag::create($tagParams, 'civicrm_case', $caseObj->id);
379
380 //save free tags
381 if (isset($params['case_taglist']) && !empty($params['case_taglist'])) {
382 CRM_Core_Form_Tag::postProcess($params['case_taglist'], $caseObj->id, 'civicrm_case', $this);
383 }
384
385 // user context
386 $url = CRM_Utils_System::url('civicrm/contact/view/case',
387 "reset=1&action=view&cid={$this->_currentlyViewedContactId}&id={$caseObj->id}"
388 );
389 $session = CRM_Core_Session::singleton();
390 $session->pushUserContext($url);
391
392 // 3. format activity custom data
a7488080 393 if (!empty($params['hidden_custom'])) {
6a488035
TO
394 $customFields = CRM_Core_BAO_CustomField::getFields('Activity', FALSE, FALSE, $this->_activityTypeId);
395 $customFields = CRM_Utils_Array::crmArrayMerge($customFields,
396 CRM_Core_BAO_CustomField::getFields('Activity', FALSE, FALSE,
397 NULL, NULL, TRUE
398 )
399 );
400 $params['custom'] = CRM_Core_BAO_CustomField::postProcess($params,
6a488035
TO
401 $this->_activityId,
402 'Activity'
403 );
404 }
405
406 // 4. call end post process
407 if ($this->_activityTypeFile) {
481a74f4 408 $className::endPostProcess($this, $params);
6a488035
TO
409 }
410
b44e3f84 411 // 5. auto populate activities
6a488035
TO
412
413 // 6. set status
79dc2175 414 CRM_Core_Session::setStatus($params['statusMsg'], ts('Saved'), 'success');
6a488035 415 }
96025800 416
6a488035 417}