Merge pull request #4822 from kurund/indentation-fixes
[civicrm-core.git] / CRM / Event / Form / Task / PickProfile.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 for batch profile update for event participations
38 */
39 class CRM_Event_Form_Task_PickProfile extends CRM_Event_Form_Task {
40
41 /**
42 * The title of the group
43 *
44 * @var string
45 */
46 protected $_title;
47
48 /**
49 * Maximum event participations that should be allowed to update
50 *
51 */
52 protected $_maxParticipations = 100;
53
54 /**
55 * Variable to store redirect path
56 *
57 */
58 protected $_userContext;
59
60 /**
61 * Build all the data structures needed to build the form
62 *
63 * @return void
64 */
65 public function preProcess() {
66 // initialize the task and row fields
67 parent::preProcess();
68
69 $session = CRM_Core_Session::singleton();
70 $this->_userContext = $session->readUserContext();
71
72 CRM_Utils_System::setTitle(ts('Batch Update for Event Participants'));
73
74 $validate = FALSE;
75 //validations
76 if (count($this->_participantIds) > $this->_maxParticipations) {
77 CRM_Core_Session::setStatus("The maximum number of event participations you can select for Batch Update is {$this->_maxParticipations}. You have selected " . count($this->_participantIds) . ". Please select fewer participantions from your search results and try again.");
78 $validate = TRUE;
79 }
80
81 // then redirect
82 if ($validate) {
83 CRM_Utils_System::redirect($this->_userContext);
84 }
85 }
86
87 /**
88 * Build the form object
89 *
90 *
91 * @return void
92 */
93 public function buildQuickForm() {
94 $types = array('Participant');
95 $profiles = CRM_Core_BAO_UFGroup::getProfiles($types, TRUE);
96
97 if (empty($profiles)) {
98 CRM_Core_Session::setStatus("To use Batch Update for event participants, you need to configure a profile containing only Participant fields (e.g. Participant Status, Participant Role, etc.). Configure a profile at 'Administer CiviCRM >> Customize >> CiviCRM Profile'.");
99 CRM_Utils_System::redirect($this->_userContext);
100 }
101
102 $ufGroupElement = $this->add('select', 'uf_group_id', ts('Select Profile'),
103 array(
104 '' => ts('- select profile -')) + $profiles, TRUE
105 );
106 $this->addDefaultButtons(ts('Continue >>'));
107 }
108
109 /**
110 * Add local and global form rules
111 *
112 *
113 * @return void
114 */
115 public function addRules() {
116 $this->addFormRule(array('CRM_Event_Form_Task_PickProfile', 'formRule'));
117 }
118
119 /**
120 * Global validation rules for the form
121 *
122 * @param array $fields posted values of the form
123 *
124 * @return array list of errors to be posted back to the form
125 * @static
126 */
127 public static function formRule($fields) {
128 return TRUE;
129 }
130
131 /**
132 * Process the form after the input has been submitted and validated
133 *
134 *
135 * @return void
136 */
137 public function postProcess() {
138 $params = $this->exportValues();
139
140 $this->set('ufGroupId', $params['uf_group_id']);
141
142 // also reset the batch page so it gets new values from the db
143 $this->controller->resetPage('Batch');
144 }
145 }