Merge pull request #15759 from tunbola/active-option-values-for-custom-group
[civicrm-core.git] / CRM / Admin / Form / ParticipantStatusType.php
index 5fc9c7e5bad84ab5415cbb38340791f94b32250e..c193d251d8c1dbfda08f2fee579aa4667c06b11c 100644 (file)
@@ -1,34 +1,18 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 5                                                  |
- +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2019                                |
- +--------------------------------------------------------------------+
- | This file is a part of CiviCRM.                                    |
- |                                                                    |
- | CiviCRM is free software; you can copy, modify, and distribute it  |
- | under the terms of the GNU Affero General Public License           |
- | Version 3, 19 November 2007 and the CiviCRM Licensing Exception.   |
- |                                                                    |
- | CiviCRM is distributed in the hope that it will be useful, but     |
- | WITHOUT ANY WARRANTY; without even the implied warranty of         |
- | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.               |
- | See the GNU Affero General Public License for more details.        |
+ | Copyright CiviCRM LLC. All rights reserved.                        |
  |                                                                    |
- | You should have received a copy of the GNU Affero General Public   |
- | License and the CiviCRM Licensing Exception along                  |
- | with this program; if not, contact CiviCRM LLC                     |
- | at info[AT]civicrm[DOT]org. If you have questions about the        |
- | GNU Affero General Public License or the licensing of CiviCRM,     |
- | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
+ | This work is published under the GNU AGPLv3 license with some      |
+ | permitted exceptions and without any warranty. For full license    |
+ | and copyright information, see https://civicrm.org/licensing       |
  +--------------------------------------------------------------------+
  */
 
 /**
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2019
+ * @copyright CiviCRM LLC https://civicrm.org/licensing
  */
 class CRM_Admin_Form_ParticipantStatusType extends CRM_Admin_Form {
 
@@ -59,14 +43,14 @@ class CRM_Admin_Form_ParticipantStatusType extends CRM_Admin_Form {
 
     $this->add('text', 'label', ts('Label'), $attributes['label'], TRUE);
 
-    $this->addSelect('class', array('required' => TRUE));
+    $this->addSelect('class', ['required' => TRUE]);
 
     $this->add('checkbox', 'is_active', ts('Active?'));
     $this->add('checkbox', 'is_counted', ts('Counted?'));
 
     $this->add('number', 'weight', ts('Order'), $attributes['weight'], TRUE);
 
-    $this->addSelect('visibility_id', array('label' => ts('Visibility'), 'required' => TRUE));
+    $this->addSelect('visibility_id', ['label' => ts('Visibility'), 'required' => TRUE]);
 
     $this->assign('id', $this->_id);
   }
@@ -83,7 +67,7 @@ class CRM_Admin_Form_ParticipantStatusType extends CRM_Admin_Form {
     }
     $this->_isReserved = CRM_Utils_Array::value('is_reserved', $defaults);
     if ($this->_isReserved) {
-      $this->freeze(array('name', 'class', 'is_active'));
+      $this->freeze(['name', 'class', 'is_active']);
     }
     return $defaults;
   }
@@ -101,7 +85,7 @@ class CRM_Admin_Form_ParticipantStatusType extends CRM_Admin_Form {
 
     $formValues = $this->controller->exportValues($this->_name);
 
-    $params = array(
+    $params = [
       'name' => CRM_Utils_Array::value('name', $formValues),
       'label' => CRM_Utils_Array::value('label', $formValues),
       'class' => CRM_Utils_Array::value('class', $formValues),
@@ -109,7 +93,7 @@ class CRM_Admin_Form_ParticipantStatusType extends CRM_Admin_Form {
       'is_counted' => CRM_Utils_Array::value('is_counted', $formValues, FALSE),
       'weight' => CRM_Utils_Array::value('weight', $formValues),
       'visibility_id' => CRM_Utils_Array::value('visibility_id', $formValues),
-    );
+    ];
 
     // make sure a malicious POST does not change these on reserved statuses
     if ($this->_isReserved) {