_userContext = $session->readUserContext(); CRM_Utils_System::setTitle(ts('Update multiple memberships')); $validate = FALSE; //validations if (count($this->_memberIds) > $this->_maxMembers) { CRM_Core_Session::setStatus(ts("The maximum number of members you can select for Update multiple memberships is %1. You have selected %2. Please select fewer members from your search results and try again.", array( 1 => $this->_maxMembers, 2 => count($this->_memberIds), )), ts('Update multiple records error'), 'error'); $validate = TRUE; } // than redirect if ($validate) { CRM_Utils_System::redirect($this->_userContext); } } /** * Build the form object. * * * @return void */ public function buildQuickForm() { $types = array('Membership'); $profiles = CRM_Core_BAO_UFGroup::getProfiles($types, TRUE); if (empty($profiles)) { CRM_Core_Session::setStatus(ts("You will need to create a Profile containing the %1 fields you want to edit before you can use Update multiple memberships. Navigate to Administer CiviCRM >> CiviCRM Profile to configure a Profile. Consult the online Administrator documentation for more information.", array(1 => $types[0])), ts('Update multiple records error'), 'error'); CRM_Utils_System::redirect($this->_userContext); } $ufGroupElement = $this->add('select', 'uf_group_id', ts('Select Profile'), array( '' => ts('- select profile -'), ) + $profiles, TRUE ); $this->addDefaultButtons(ts('Continue')); } /** * Add local and global form rules. * * * @return void */ public function addRules() { $this->addFormRule(array('CRM_Member_Form_Task_PickProfile', 'formRule')); } /** * Global validation rules for the form. * * @param array $fields * Posted values of the form. * * @return array * list of errors to be posted back to the form */ public static function formRule($fields) { return TRUE; } /** * Process the form after the input has been submitted and validated. * * * @return void */ public function postProcess() { $params = $this->exportValues(); $this->set('ufGroupId', $params['uf_group_id']); // also reset the batch page so it gets new values from the db $this->controller->resetPage('Batch'); } }