whitepace y, std is => array( on same line,
[civicrm-core.git] / CRM / Admin / Form / Preferences / Member.php
index 13813b54f046e6c8d3d034658ec1dd78faad7941..00615251576be975413183c886a9743ad82daae5 100644 (file)
@@ -1,9 +1,9 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.4                                                |
+ | CiviCRM version 4.5                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2013                                |
+ | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
@@ -28,7 +28,7 @@
 /**
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2013
+ * @copyright CiviCRM LLC (c) 2004-2014
  * $Id: Display.php 36505 2011-10-03 14:19:56Z lobo $
  *
  */
@@ -41,11 +41,11 @@ class CRM_Admin_Form_Preferences_Member extends CRM_Admin_Form_Preferences {
   function preProcess() {
     CRM_Utils_System::setTitle(ts('CiviMember Component Settings'));
     $this->_varNames = array(
-      CRM_Core_BAO_Setting::MEMBER_PREFERENCES_NAME =>
-      array(
+      CRM_Core_BAO_Setting::MEMBER_PREFERENCES_NAME => array(
         'default_renewal_contribution_page' => array(
           'html_type' => 'select',
           'title' => ts('Default online membership renewal page'),
+          'option_values' => array('' => ts('- select -')) + CRM_Contribute_PseudoConstant::contributionPage(),
           'weight' => 1,
           'description' => ts('If you select a default online contribution page for self-service membership renewals, a "renew" link pointing to that page will be displayed on the Contact Dashboard for memberships which were entered offline. You will need to ensure that the membership block for the selected online contribution page includes any currently available memberships.'),
         ),
@@ -56,20 +56,12 @@ class CRM_Admin_Form_Preferences_Member extends CRM_Admin_Form_Preferences {
   }
 
   /**
-   * Function to build the form
+   * Build the form object
    *
    * @return void
    * @access public
    */
   function buildQuickForm() {
-
-    $this->add('select', 'default_renewal_contribution_page',
-      ts('Default Online Membership Renewal Page'),
-      array(
-        '' => ts('- select -')) +
-      CRM_Contribute_PseudoConstant::contributionPage()
-    );
-
     parent::buildQuickForm();
   }
 }