Merge remote-tracking branch 'upstream/4.3' into 4.3-master-2013-08-14-04-44-13
[civicrm-core.git] / CRM / Contribute / Form / Task / PickProfile.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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-2013
32 * $Id$
33 *
34 */
35
36 /**
37 * This class provides the functionality for batch profile update for contribution
38 */
39 class CRM_Contribute_Form_Task_PickProfile extends CRM_Contribute_Form_Task {
40
41 /**
42 * the title of the group
43 *
44 * @var string
45 */
46 protected $_title;
47
48 /**
49 * maximum contributions that should be allowed to update
50 *
51 */
52 protected $_maxContributions = 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 * @access public
65 */
66 function preProcess() {
67 /*
68 * initialize the task and row fields
69 */
70 parent::preProcess();
71 $session = CRM_Core_Session::singleton();
72 $this->_userContext = $session->readUserContext();
73
74 CRM_Utils_System::setTitle(ts('Batch Update Contributions via Profile'));
75
76 $validate = FALSE;
77 //validations
78 if (count($this->_contributionIds) > $this->_maxContributions) {
79 CRM_Core_Session::setStatus(ts("The maximum number of contributions you can select for Batch Update is %1. You have selected %2. Please select fewer contributions from your search results and try again.", array(1 => $this->_maxContributions, 2 => count($this->_contributionIds))), ts('Batch Update Error'), 'error');
80 $validate = TRUE;
81 }
82
83 // than redirect
84 if ($validate) {
85 CRM_Utils_System::redirect($this->_userContext);
86 }
87 }
88
89 /**
90 * Build the form
91 *
92 * @access public
93 *
94 * @return void
95 */
96 function buildQuickForm() {
97
98 $types = array('Contribution');
99 $profiles = CRM_Core_BAO_UFGroup::getProfiles($types, TRUE);
100
101 if (empty($profiles)) {
102 CRM_Core_Session::setStatus(ts("You will need to create a Profile containing the %1 fields you want to edit before you can use Batch Update via Profile. Navigate to Administer CiviCRM >> CiviCRM Profile to configure a Profile. Consult the online Administrator documentation for more information.", array(1 => $types[0])), 'Profile Required', 'error');
103 CRM_Utils_System::redirect($this->_userContext);
104 }
105
106 $ufGroupElement = $this->add('select', 'uf_group_id', ts('Select Profile'),
107 array(
108 '' => ts('- select profile -')) + $profiles, TRUE
109 );
110 $this->addDefaultButtons(ts('Continue >>'));
111 }
112
113 /**
114 * Add local and global form rules
115 *
116 * @access protected
117 *
118 * @return void
119 */
120 function addRules() {
121 $this->addFormRule(array('CRM_Contribute_Form_Task_PickProfile', 'formRule'));
122 }
123
124 /**
125 * global validation rules for the form
126 *
127 * @param array $fields posted values of the form
128 *
129 * @return array list of errors to be posted back to the form
130 * @static
131 * @access public
132 */
133 static function formRule($fields) {
134 return TRUE;
135 }
136
137 /**
138 * process the form after the input has been submitted and validated
139 *
140 * @access public
141 *
142 * @return None
143 */
144 public function postProcess() {
145 $params = $this->exportValues();
146
147 $this->set('ufGroupId', $params['uf_group_id']);
148
149 // also reset the batch page so it gets new values from the db
150 $this->controller->resetPage('Batch');
151 }
152 //end of function
153 }
154