Merge pull request #13270 from civicrm/5.9
[civicrm-core.git] / CRM / Activity / Form / Task / PickProfile.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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-2019
32 */
33
34 /**
35 * This class provides the functionality for batch profile update for Activity.
36 */
37 class CRM_Activity_Form_Task_PickProfile extends CRM_Activity_Form_Task {
38
39 /**
40 * The title of the group.
41 *
42 * @var string
43 */
44 protected $_title;
45
46 /**
47 * Maximum Activities that should be allowed to update.
48 */
49 protected $_maxActivities = 100;
50
51 /**
52 * Variable to store redirect path.
53 */
54 protected $_userContext;
55
56 /**
57 * Build all the data structures needed to build the form.
58 */
59 public function preProcess() {
60
61 // Initialize the task and row fields.
62 parent::preProcess();
63 $session = CRM_Core_Session::singleton();
64 $this->_userContext = $session->readUserContext();
65
66 CRM_Utils_System::setTitle(ts('Update multiple activities'));
67
68 $validate = FALSE;
69 // Validations.
70 if (count($this->_activityHolderIds) > $this->_maxActivities) {
71 CRM_Core_Session::setStatus(ts("The maximum number of activities you can select for Update multiple activities is %1. You have selected %2. Please select fewer Activities from your search results and try again.", array(
72 1 => $this->_maxActivities,
73 2 => count($this->_activityHolderIds),
74 )), ts('Maximum Exceeded'), 'error');
75 $validate = TRUE;
76 }
77
78 // Then redirect.
79 if ($validate) {
80 CRM_Utils_System::redirect($this->_userContext);
81 }
82 }
83
84 /**
85 * Build the form object.
86 */
87 public function buildQuickForm() {
88 $types = array('Activity');
89 $profiles = CRM_Core_BAO_UFGroup::getProfiles($types, TRUE);
90
91 $activityTypeIds = array_flip(CRM_Core_PseudoConstant::activityType(TRUE, FALSE, FALSE, 'name'));
92 $nonEditableActivityTypeIds = array(
93 $activityTypeIds['Email'],
94 $activityTypeIds['Bulk Email'],
95 $activityTypeIds['Contribution'],
96 $activityTypeIds['Inbound Email'],
97 $activityTypeIds['Pledge Reminder'],
98 $activityTypeIds['Membership Signup'],
99 $activityTypeIds['Membership Renewal'],
100 $activityTypeIds['Event Registration'],
101 $activityTypeIds['Pledge Acknowledgment'],
102 );
103 $notEditable = FALSE;
104 foreach ($this->_activityHolderIds as $activityId) {
105 $typeId = CRM_Core_DAO::getFieldValue("CRM_Activity_DAO_Activity", $activityId, 'activity_type_id');
106 if (in_array($typeId, $nonEditableActivityTypeIds)) {
107 $notEditable = TRUE;
108 break;
109 }
110 }
111
112 if (empty($profiles)) {
113 CRM_Core_Session::setStatus(ts("You will need to create a Profile containing the %1 fields you want to edit before you can use Update multiple activities. Navigate to Administer > Customize Data and Screens > Profiles to configure a Profile. Consult the online Administrator documentation for more information.", array(1 => $types[0])), ts("No Profile Configured"), "alert");
114 CRM_Utils_System::redirect($this->_userContext);
115 }
116 elseif ($notEditable) {
117 CRM_Core_Session::setStatus("", ts("Some of the selected activities are not editable."), "alert");
118 CRM_Utils_System::redirect($this->_userContext);
119 }
120
121 $ufGroupElement = $this->add('select', 'uf_group_id', ts('Select Profile'),
122 array(
123 '' => ts('- select profile -'),
124 ) + $profiles, TRUE
125 );
126 $this->addDefaultButtons(ts('Continue'));
127 }
128
129 /**
130 * Add local and global form rules.
131 */
132 public function addRules() {
133 $this->addFormRule(array('CRM_Activity_Form_Task_PickProfile', 'formRule'));
134 }
135
136 /**
137 * Global validation rules for the form.
138 *
139 * @param array $fields
140 * Posted values of the form.
141 *
142 * @return array
143 * list of errors to be posted back to the form
144 */
145 public static function formRule($fields) {
146 return TRUE;
147 }
148
149 /**
150 * Process the form after the input has been submitted and validated.
151 */
152 public function postProcess() {
153 $params = $this->exportValues();
154
155 $this->set('ufGroupId', $params['uf_group_id']);
156
157 // also reset the batch page so it gets new values from the db
158 $this->controller->resetPage('Batch');
159 }
160
161 }