3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2014
37 * This class provides the functionality for batch profile update
39 class CRM_Contact_Form_Task_PickProfile
extends CRM_Contact_Form_Task
{
42 * The title of the group
49 * Maximum contacts that should be allowed to update
51 protected $_maxContacts = 100;
54 * Maximum profile fields that will be displayed
56 protected $_maxFields = 9;
59 * Variable to store redirect path
61 protected $_userContext;
64 * Build all the data structures needed to build the form
68 public function preProcess() {
69 // initialize the task and row fields
72 $session = CRM_Core_Session
::singleton();
73 $this->_userContext
= $session->readUserContext();
77 if (count($this->_contactIds
) > $this->_maxContacts
) {
78 CRM_Core_Session
::setStatus(ts("The maximum number of contacts you can select for Batch Update is %1. You have selected %2. Please select fewer contacts from your search results and try again.", array(
79 1 => $this->_maxContacts
,
80 2 => count($this->_contactIds
),
81 )), ts('Maximum Exceeded'), 'error');
85 if (CRM_Contact_BAO_Contact_Utils
::checkContactType($this->_contactIds
)) {
86 CRM_Core_Session
::setStatus(ts("Batch update requires that all selected contacts be the same basic type (e.g. all Individuals OR all Organizations...). Please modify your selection and try again."), ts('Contact Type Mismatch'), 'error');
92 CRM_Utils_System
::redirect($this->_userContext
);
97 * Build the form object
102 public function buildQuickForm() {
103 CRM_Utils_System
::setTitle(ts('Batch Profile Update for Contact'));
105 foreach ($this->_contactIds
as $id) {
106 $this->_contactTypes
= CRM_Contact_BAO_Contact
::getContactTypes($id);
109 //add Contact type profiles
110 $this->_contactTypes
[] = 'Contact';
112 $profiles = CRM_Core_BAO_UFGroup
::getProfiles($this->_contactTypes
);
114 if (empty($profiles)) {
115 $types = implode(' ' . ts('or') . ' ', $this->_contactTypes
);
116 CRM_Core_Session
::setStatus(ts("The contact type selected for Batch Update does not have a corresponding profile. Please set up a profile for %1s and try again.", array(1 => $types)), ts('No Profile Available'), 'error');
117 CRM_Utils_System
::redirect($this->_userContext
);
119 $ufGroupElement = $this->add('select', 'uf_group_id', ts('Select Profile'), array('' => ts('- select profile -')) +
$profiles, TRUE, array('class' => 'crm-select2 huge'));
121 $this->addDefaultButtons(ts('Continue'));
125 * Add local and global form rules
130 public function addRules() {
131 $this->addFormRule(array('CRM_Contact_Form_Task_PickProfile', 'formRule'));
135 * Global validation rules for the form
137 * @param array $fields
138 * Posted values of the form.
141 * list of errors to be posted back to the form
143 public static function formRule($fields) {
144 if (CRM_Core_BAO_UFField
::checkProfileType($fields['uf_group_id'])) {
145 $errorMsg['uf_group_id'] = "You cannot select mix profile for batch update.";
148 if (!empty($errorMsg)) {
156 * Process the form after the input has been submitted and validated
161 public function postProcess() {
162 $params = $this->exportValues();
164 $this->set('ufGroupId', $params['uf_group_id']);
166 // also reset the batch page so it gets new values from the db
167 $this->controller
->resetPage('Batch');