phpcs - Fix error, "Expected 1 newline at end of file; XXX found".
[civicrm-core.git] / CRM / Case / Form / CustomData.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * This class generates form components for custom data
38 *
39 * It delegates the work to lower level subclasses and integrates the changes
40 * back in. It also uses a lot of functionality with the CRM API's, so any change
41 * made here could potentially affect the API etc. Be careful, be aware, use unit tests.
42 *
43 */
44class CRM_Case_Form_CustomData extends CRM_Core_Form {
45
46 /**
47 * The entity id, used when editing/creating custom data
48 *
49 * @var int
50 */
51 protected $_entityID;
52
53 /**
54 * The custom data type
55 *
56 * @var int
57 */
58 protected $_cdType;
59
60 /**
100fef9d 61 * Entity sub type of the table id
6a488035
TO
62 *
63 * @var string
6a488035
TO
64 */
65 protected $_subTypeID;
66
67 /**
100fef9d 68 * Pre processing work done here.
6a488035
TO
69 *
70 * gets session variables for table name, id of entity in table, type of entity and stores them.
71 *
72 * @param
73 *
74 * @return void
75 *
6a488035
TO
76 *
77 */
00be9182 78 public function preProcess() {
6a488035
TO
79 $this->_groupID = CRM_Utils_Request::retrieve('groupID', 'Positive', $this, TRUE);
80 $this->_entityID = CRM_Utils_Request::retrieve('entityID', 'Positive', $this, TRUE);
81 $this->_subTypeID = CRM_Utils_Request::retrieve('subType', 'Positive', $this, TRUE);
82 $this->_contactID = CRM_Utils_Request::retrieve('cid', 'Positive', $this, TRUE);
83
84 $groupTree = &CRM_Core_BAO_CustomGroup::getTree('Case',
85 $this,
86 $this->_entityID,
87 $this->_groupID,
88 $this->_subTypeID
89 );
90 // simplified formatted groupTree
91 $groupTree = CRM_Core_BAO_CustomGroup::formatGroupTree($groupTree, 1, $this);
e08129f7 92 // Array contains only one item
6a488035
TO
93 foreach ($groupTree as $groupValues) {
94 $this->_customTitle = $groupValues['title'];
e08129f7 95 CRM_Utils_System::setTitle(ts('Edit %1', array(1 => $groupValues['title'])));
6a488035
TO
96 }
97
98 $this->_defaults = array();
99 CRM_Core_BAO_CustomGroup::setDefaults($groupTree, $this->_defaults);
100 $this->setDefaults($this->_defaults);
101
7b226831 102 CRM_Core_BAO_CustomGroup::buildQuickForm($this, $groupTree);
6a488035
TO
103
104 //need to assign custom data type and subtype to the template
105 $this->assign('entityID', $this->_entityID);
106 $this->assign('groupID', $this->_groupID);
107 $this->assign('subType', $this->_subTypeID);
108 $this->assign('contactID', $this->_contactID);
109 }
110
111 /**
c490a46a 112 * Build the form object
6a488035
TO
113 *
114 * @return void
6a488035
TO
115 */
116 public function buildQuickForm() {
117 // make this form an upload since we dont know if the custom data injected dynamically
118 // is of type file etc
119 $this->addButtons(array(
120 array(
121 'type' => 'upload',
122 'name' => ts('Save'),
123 'isDefault' => TRUE,
124 ),
125 array(
126 'type' => 'cancel',
127 'name' => ts('Cancel'),
128 ),
129 )
130 );
131 }
132
133 /**
134 * Process the user submitted custom data values.
135 *
6a488035
TO
136 *
137 * @return void
138 */
139 public function postProcess() {
140 $params = $this->controller->exportValues($this->_name);
141 $fields = array();
142
143 $transaction = new CRM_Core_Transaction();
144
145 CRM_Core_BAO_CustomValueTable::postProcess($params,
146 $fields,
147 'civicrm_case',
148 $this->_entityID,
149 'Case'
150 );
151
152 $session = CRM_Core_Session::singleton();
153 $session->pushUserContext(CRM_Utils_System::url('civicrm/contact/view/case', "reset=1&id={$this->_entityID}&cid={$this->_contactID}&action=view"));
154
155 $session = CRM_Core_Session::singleton();
156 $activityTypeID = CRM_Core_OptionGroup::getValue('activity_type', 'Change Custom Data', 'name');
157 $activityParams = array(
158 'activity_type_id' => $activityTypeID,
159 'source_contact_id' => $session->get('userID'),
160 'is_auto' => TRUE,
161 'subject' => $this->_customTitle . " : change data",
162 'status_id' => CRM_Core_OptionGroup::getValue('activity_status',
163 'Completed',
164 'name'
165 ),
166 'target_contact_id' => $this->_contactID,
167 'details' => json_encode($this->_defaults),
168 'activity_date_time' => date('YmdHis'),
169 );
170 $activity = CRM_Activity_BAO_Activity::create($activityParams);
171
172 $caseParams = array(
173 'activity_id' => $activity->id,
174 'case_id' => $this->_entityID,
175 );
176 CRM_Case_BAO_Case::processCaseActivity($caseParams);
177
178 $transaction->commit();
179 }
180}