X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FUtils%2FCheck%2FMessage.php;h=bad0321c6ad3bc555bc27bf85723c6c86458f9e9;hb=701fd7a63eb4b10a6b91a91c0c05dba1bbaf8b69;hp=9dd18299fc58a24035d74a001d363fa10258190b;hpb=1c0292589f295e7d3babd0f8f5f5b3b6d2cff54a;p=civicrm-core.git diff --git a/CRM/Utils/Check/Message.php b/CRM/Utils/Check/Message.php index 9dd18299fc..bad0321c6a 100644 --- a/CRM/Utils/Check/Message.php +++ b/CRM/Utils/Check/Message.php @@ -3,7 +3,7 @@ +--------------------------------------------------------------------+ | CiviCRM version 5 | +--------------------------------------------------------------------+ - | Copyright CiviCRM LLC (c) 2004-2018 | + | Copyright CiviCRM LLC (c) 2004-2019 | +--------------------------------------------------------------------+ | This file is a part of CiviCRM. | | | @@ -28,7 +28,7 @@ /** * * @package CRM - * @copyright CiviCRM LLC (c) 2004-2018 + * @copyright CiviCRM LLC (c) 2004-2019 */ class CRM_Utils_Check_Message { /** @@ -62,7 +62,7 @@ class CRM_Utils_Check_Message { * @var array * actions which can be performed with this message */ - private $actions = array(); + private $actions = []; /** * @var string @@ -173,12 +173,12 @@ class CRM_Utils_Check_Message { * Params to be passed to CRM.api3 or CRM.url depending on type */ public function addAction($title, $confirmation, $type, $params) { - $this->actions[] = array( + $this->actions[] = [ 'title' => $title, 'confirm' => $confirmation, 'type' => $type, 'params' => $params, - ); + ]; } /** @@ -207,7 +207,7 @@ class CRM_Utils_Check_Message { * @return array */ public function toArray() { - $array = array( + $array = [ 'name' => $this->name, 'message' => $this->message, 'title' => $this->title, @@ -215,7 +215,7 @@ class CRM_Utils_Check_Message { 'severity_id' => $this->level, 'is_visible' => (int) $this->isVisible(), 'icon' => $this->icon, - ); + ]; if ($this->getHiddenUntil()) { $array['hidden_until'] = $this->getHiddenUntil(); } @@ -267,14 +267,14 @@ class CRM_Utils_Check_Message { if ($this->level < 2) { return FALSE; } - $statusPreferenceParams = array( + $statusPreferenceParams = [ 'name' => $this->getName(), 'domain_id' => CRM_Core_Config::domainID(), 'sequential' => 1, - ); + ]; // Check if there's a StatusPreference matching this name/domain. $statusPreference = civicrm_api3('StatusPreference', 'get', $statusPreferenceParams); - $prefs = CRM_Utils_Array::value('values', $statusPreference, array()); + $prefs = CRM_Utils_Array::value('values', $statusPreference, []); if ($prefs) { // If so, compare severity to StatusPreference->severity. if ($this->level <= $prefs[0]['ignore_severity']) {