X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FEvent%2FPseudoConstant.php;h=23143f637d0bb08889f50d2b5584e9cc565f8b67;hb=d48669c33083785178028c56352f2c1e839829a4;hp=abdcb05708b7b9b8ae743865f4900092ef052e57;hpb=f6af7e6f06447f2725f5878bb824b8e792d3cc30;p=civicrm-core.git diff --git a/CRM/Event/PseudoConstant.php b/CRM/Event/PseudoConstant.php index abdcb05708..23143f637d 100644 --- a/CRM/Event/PseudoConstant.php +++ b/CRM/Event/PseudoConstant.php @@ -101,7 +101,7 @@ class CRM_Event_PseudoConstant extends CRM_Core_PseudoConstant { $key = "{$id}_{$all}_{$condition}"; if (!isset(self::$event[$key])) { - self::$event[$key] = array(); + self::$event[$key] = []; } if (!self::$event[$key]) { @@ -136,13 +136,13 @@ class CRM_Event_PseudoConstant extends CRM_Core_PseudoConstant { */ public static function &participantStatus($id = NULL, $cond = NULL, $retColumn = 'name') { if (self::$participantStatus === NULL) { - self::$participantStatus = array(); + self::$participantStatus = []; } $index = $cond ? $cond : 'No Condition'; $index = "{$index}_{$retColumn}"; if (!CRM_Utils_Array::value($index, self::$participantStatus)) { - self::$participantStatus[$index] = array(); + self::$participantStatus[$index] = []; CRM_Core_PseudoConstant::populate(self::$participantStatus[$index], 'CRM_Event_DAO_ParticipantStatusType', FALSE, $retColumn, 'is_active', $cond, 'weight' @@ -162,12 +162,12 @@ class CRM_Event_PseudoConstant extends CRM_Core_PseudoConstant { * @return array */ public static function participantStatusClassOptions() { - return array( + return [ 'Positive' => ts('Positive'), 'Pending' => ts('Pending'), 'Waiting' => ts('Waiting'), 'Negative' => ts('Negative'), - ); + ]; } /** @@ -199,7 +199,7 @@ class CRM_Event_PseudoConstant extends CRM_Core_PseudoConstant { public static function &participantRole($id = NULL, $cond = NULL) { $index = $cond ? $cond : 'No Condition'; if (!CRM_Utils_Array::value($index, self::$participantRole)) { - self::$participantRole[$index] = array(); + self::$participantRole[$index] = []; $condition = NULL; @@ -229,7 +229,7 @@ class CRM_Event_PseudoConstant extends CRM_Core_PseudoConstant { */ public static function &participantListing($id = NULL) { if (!self::$participantListing) { - self::$participantListing = array(); + self::$participantListing = []; self::$participantListing = CRM_Core_OptionGroup::values('participant_listing'); } @@ -250,7 +250,7 @@ class CRM_Event_PseudoConstant extends CRM_Core_PseudoConstant { */ public static function &eventType($id = NULL) { if (!self::$eventType) { - self::$eventType = array(); + self::$eventType = []; self::$eventType = CRM_Core_OptionGroup::values('event_type'); }