comment fixes
[civicrm-core.git] / CRM / Contribute / Form / Task / PickProfile.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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-2015
32 */
33
34 /**
35 * This class provides the functionality for batch profile update for contributions.
36 */
37 class CRM_Contribute_Form_Task_PickProfile extends CRM_Contribute_Form_Task {
38
39 /**
40 * The title of the group
41 *
42 * @var string
43 */
44 protected $_title;
45
46 /**
47 * Maximum contributions that should be allowed to update
48 */
49 protected $_maxContributions = 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 // initialize the task and row fields
61 parent::preProcess();
62 $session = CRM_Core_Session::singleton();
63 $this->_userContext = $session->readUserContext();
64
65 CRM_Utils_System::setTitle(ts('Batch Update Contributions Via Profile'));
66
67 $validate = FALSE;
68 //validations
69 if (count($this->_contributionIds) > $this->_maxContributions) {
70 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(
71 1 => $this->_maxContributions,
72 2 => count($this->_contributionIds),
73 )), ts('Batch Update Error'), 'error');
74 $validate = TRUE;
75 }
76
77 // than redirect
78 if ($validate) {
79 CRM_Utils_System::redirect($this->_userContext);
80 }
81 }
82
83 /**
84 * Build the form object.
85 *
86 *
87 * @return void
88 */
89 public function buildQuickForm() {
90
91 $types = array('Contribution');
92 $profiles = CRM_Core_BAO_UFGroup::getProfiles($types, TRUE);
93
94 if (empty($profiles)) {
95 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 contributions via profile. Navigate to Administer CiviCRM > Customize Data and Screens > CiviCRM Profile to configure a Profile. Consult the online Administrator documentation for more information.", array(1 => $types[0])), ts('Profile Required'), 'error');
96 CRM_Utils_System::redirect($this->_userContext);
97 }
98
99 $ufGroupElement = $this->add('select', 'uf_group_id', ts('Select Profile'),
100 array(
101 '' => ts('- select profile -'),
102 ) + $profiles, TRUE
103 );
104 $this->addDefaultButtons(ts('Continue'));
105 }
106
107 /**
108 * Add local and global form rules.
109 *
110 *
111 * @return void
112 */
113 public function addRules() {
114 $this->addFormRule(array('CRM_Contribute_Form_Task_PickProfile', 'formRule'));
115 }
116
117 /**
118 * Global validation rules for the form.
119 *
120 * @param array $fields
121 * Posted values of the form.
122 *
123 * @return array
124 * list of errors to be posted back to the form
125 */
126 public static function formRule($fields) {
127 return TRUE;
128 }
129
130 /**
131 * Process the form after the input has been submitted and validated.
132 *
133 *
134 * @return void
135 */
136 public function postProcess() {
137 $params = $this->exportValues();
138
139 $this->set('ufGroupId', $params['uf_group_id']);
140
141 // also reset the batch page so it gets new values from the db
142 $this->controller->resetPage('Batch');
143 }
144
145 }