X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FUtils%2FCheck%2FMessage.php;h=139ab43ff3dda3c9e1a68d582b185f2ac288e30a;hb=ac439a0617d2a9d7bf661b615928a6f50c3ad5a9;hp=288b85bafd670103f8ee861004143b0e22b31348;hpb=832f3e1f078d2ae5fcd1ea70276f16716080af6d;p=civicrm-core.git diff --git a/CRM/Utils/Check/Message.php b/CRM/Utils/Check/Message.php index 288b85bafd..139ab43ff3 100644 --- a/CRM/Utils/Check/Message.php +++ b/CRM/Utils/Check/Message.php @@ -1,34 +1,18 @@ actions[] = array( + $this->actions[] = [ 'title' => $title, 'confirm' => $confirmation, 'type' => $type, 'params' => $params, - ); + ]; } /** @@ -207,7 +191,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 +199,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 +251,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']) {