X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FMember%2FForm%2FTask%2FBatch.php;h=b17ebff90b47eb7ca12c9f67d5c05f0da64377d4;hb=b9331a134ecb82fb7a084ec3326896cca41f0758;hp=5c081ba222b40dce78d292759205c48eb97e25dc;hpb=1219e6af26646ad548b2d7e97a7f345af4655c21;p=civicrm-core.git diff --git a/CRM/Member/Form/Task/Batch.php b/CRM/Member/Form/Task/Batch.php index 5c081ba222..b17ebff90b 100644 --- a/CRM/Member/Form/Task/Batch.php +++ b/CRM/Member/Form/Task/Batch.php @@ -3,7 +3,7 @@ +--------------------------------------------------------------------+ | CiviCRM version 4.6 | +--------------------------------------------------------------------+ - | Copyright CiviCRM LLC (c) 2004-2014 | + | Copyright CiviCRM LLC (c) 2004-2015 | +--------------------------------------------------------------------+ | This file is a part of CiviCRM. | | | @@ -23,12 +23,12 @@ | GNU Affero General Public License or the licensing of CiviCRM, | | see the CiviCRM license FAQ at http://civicrm.org/licensing | +--------------------------------------------------------------------+ -*/ + */ /** * * @package CRM - * @copyright CiviCRM LLC (c) 2004-2014 + * @copyright CiviCRM LLC (c) 2004-2015 * $Id$ * */ @@ -39,33 +39,29 @@ class CRM_Member_Form_Task_Batch extends CRM_Member_Form_Task { /** - * The title of the group + * The title of the group. * * @var string */ protected $_title; /** - * Maximum profile fields that will be displayed - * + * Maximum profile fields that will be displayed. */ protected $_maxFields = 9; /** - * Variable to store redirect path - * + * Variable to store redirect path. */ protected $_userContext; /** - * Build all the data structures needed to build the form + * Build all the data structures needed to build the form. * * @return void */ public function preProcess() { - /* - * initialize the task and row fields - */ + // initialize the task and row fields parent::preProcess(); //get the contact read only fields to display. @@ -85,7 +81,7 @@ class CRM_Member_Form_Task_Batch extends CRM_Member_Form_Task { } /** - * Build the form object + * Build the form object. * * * @return void @@ -136,7 +132,6 @@ class CRM_Member_Form_Task_Batch extends CRM_Member_Form_Task { ) ); - $this->assign('profileTitle', $this->_title); $this->assign('componentIds', $this->_memberIds); $fileFieldExists = FALSE; @@ -208,7 +203,7 @@ class CRM_Member_Form_Task_Batch extends CRM_Member_Form_Task { } /** - * Process the form after the input has been submitted and validated + * Process the form after the input has been submitted and validated. * * * @return void @@ -219,7 +214,7 @@ class CRM_Member_Form_Task_Batch extends CRM_Member_Form_Task { 'join_date', 'membership_start_date', 'membership_end_date', - ); + ); if (isset($params['field'])) { $customFields = array(); foreach ($params['field'] as $key => $value) { @@ -259,7 +254,6 @@ class CRM_Member_Form_Task_Batch extends CRM_Member_Form_Task { } //check for custom data $value['custom'] = CRM_Core_BAO_CustomField::postProcess($params['field'][$key], - $customFields, $key, 'Membership', $membershipTypeId @@ -281,4 +275,5 @@ class CRM_Member_Form_Task_Batch extends CRM_Member_Form_Task { CRM_Core_Session::setStatus(ts("No updates have been saved."), ts('Not Saved'), 'alert'); } } + }