CRM-16119: Fix Contact custom data multiple save/more buttons translation.
[civicrm-core.git] / CRM / Contribute / Form / Task / PickProfile.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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
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 provides the functionality for batch profile update for contribution
38 */
39class CRM_Contribute_Form_Task_PickProfile extends CRM_Contribute_Form_Task {
40
41 /**
100fef9d 42 * The title of the group
6a488035
TO
43 *
44 * @var string
45 */
46 protected $_title;
47
48 /**
100fef9d 49 * Maximum contributions that should be allowed to update
6a488035
TO
50 */
51 protected $_maxContributions = 100;
52
53 /**
100fef9d 54 * Variable to store redirect path
6a488035
TO
55 */
56 protected $_userContext;
57
58 /**
fe482240 59 * Build all the data structures needed to build the form.
6a488035
TO
60 *
61 * @return void
6a488035 62 */
00be9182 63 public function preProcess() {
d424ffde 64 // initialize the task and row fields
6a488035
TO
65 parent::preProcess();
66 $session = CRM_Core_Session::singleton();
67 $this->_userContext = $session->readUserContext();
68
151ccd5e 69 CRM_Utils_System::setTitle(ts('Batch Update Contributions Via Profile'));
6a488035
TO
70
71 $validate = FALSE;
72 //validations
73 if (count($this->_contributionIds) > $this->_maxContributions) {
353ffa53
TO
74 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(
75 1 => $this->_maxContributions,
389bcebf 76 2 => count($this->_contributionIds),
353ffa53 77 )), ts('Batch Update Error'), 'error');
6a488035
TO
78 $validate = TRUE;
79 }
80
81 // than redirect
82 if ($validate) {
83 CRM_Utils_System::redirect($this->_userContext);
84 }
85 }
86
87 /**
fe482240 88 * Build the form object.
6a488035 89 *
6a488035
TO
90 *
91 * @return void
92 */
00be9182 93 public function buildQuickForm() {
6a488035
TO
94
95 $types = array('Contribution');
96 $profiles = CRM_Core_BAO_UFGroup::getProfiles($types, TRUE);
97
98 if (empty($profiles)) {
6c6a08db 99 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 > 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');
6a488035
TO
100 CRM_Utils_System::redirect($this->_userContext);
101 }
102
103 $ufGroupElement = $this->add('select', 'uf_group_id', ts('Select Profile'),
104 array(
389bcebf 105 '' => ts('- select profile -'),
353ffa53 106 ) + $profiles, TRUE
6a488035 107 );
f212d37d 108 $this->addDefaultButtons(ts('Continue'));
6a488035
TO
109 }
110
111 /**
fe482240 112 * Add local and global form rules.
6a488035 113 *
6a488035
TO
114 *
115 * @return void
116 */
00be9182 117 public function addRules() {
6a488035
TO
118 $this->addFormRule(array('CRM_Contribute_Form_Task_PickProfile', 'formRule'));
119 }
120
121 /**
fe482240 122 * Global validation rules for the form.
6a488035 123 *
014c4014
TO
124 * @param array $fields
125 * Posted values of the form.
6a488035 126 *
a6c01b45
CW
127 * @return array
128 * list of errors to be posted back to the form
6a488035 129 */
00be9182 130 public static function formRule($fields) {
6a488035
TO
131 return TRUE;
132 }
133
134 /**
fe482240 135 * Process the form after the input has been submitted and validated.
6a488035 136 *
6a488035 137 *
355ba699 138 * @return void
6a488035
TO
139 */
140 public function postProcess() {
141 $params = $this->exportValues();
142
143 $this->set('ufGroupId', $params['uf_group_id']);
144
145 // also reset the batch page so it gets new values from the db
146 $this->controller->resetPage('Batch');
147 }
96025800 148
6a488035 149}