X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCore%2FShowHideBlocks.php;h=ca66329ca81cf4d336acabed50ae0f99af960a0e;hb=9853731c2578d7eedfc0ec0cb442520081da9966;hp=626074941f503b657bc539e9daf11a679ab5cee3;hpb=5c22567ff39bf585b2da7920620666f4aef2cc92;p=civicrm-core.git diff --git a/CRM/Core/ShowHideBlocks.php b/CRM/Core/ShowHideBlocks.php index 626074941f..ca66329ca8 100644 --- a/CRM/Core/ShowHideBlocks.php +++ b/CRM/Core/ShowHideBlocks.php @@ -37,7 +37,8 @@ class CRM_Core_ShowHideBlocks { * * @var string */ - static $_showIcon, $_hideIcon; + public static $_showIcon; + public static $_hideIcon; /** * The array of ids of blocks that will be shown. @@ -68,14 +69,14 @@ class CRM_Core_ShowHideBlocks { $this->_show = $show; } else { - $this->_show = array(); + $this->_show = []; } if (!empty($hide)) { $this->_hide = $hide; } else { - $this->_hide = array(); + $this->_hide = []; } } @@ -182,7 +183,7 @@ class CRM_Core_ShowHideBlocks { $hideCode = "if(event.preventDefault) event.preventDefault(); else event.returnValue = false; cj('#id_{$prefix}').hide(); cj('#id_{$prefix}_show').show();"; self::setIcons(); - $values = array(); + $values = []; $values['show'] = self::linkHtml("${prefix}_show", "#${prefix}_hide", self::$_showIcon . $showLinkText, "onclick=\"$showCode\""); $values['hide'] = self::linkHtml("${prefix}_hide", "#${prefix}", self::$_hideIcon . $hideLinkText, "onclick=\"$hideCode\""); @@ -215,7 +216,7 @@ class CRM_Core_ShowHideBlocks { * The hide block string. */ public function linksForArray(&$form, $index, $maxIndex, $prefix, $showLinkText, $hideLinkText, $elementType = NULL, $hideLink = NULL) { - $showHidePrefix = str_replace(array("]", "["), array("", "_"), $prefix); + $showHidePrefix = str_replace(["]", "["], ["", "_"], $prefix); $showHidePrefix = "id_" . $showHidePrefix; if ($index == $maxIndex) { $showCode = $hideCode = "return false;"; @@ -240,18 +241,18 @@ class CRM_Core_ShowHideBlocks { self::setIcons(); if ($elementType) { $form->addElement('link', "${prefix}[${index}][show]", NULL, "#${prefix}_${index}", self::$_showIcon . $showLinkText, - array('onclick' => "cj('#${prefix}_${index}_show').hide(); cj('#${prefix}_${index}').show();" . $showCode) + ['onclick' => "cj('#${prefix}_${index}_show').hide(); cj('#${prefix}_${index}').show();" . $showCode] ); $form->addElement('link', "${prefix}[${index}][hide]", NULL, "#${prefix}_${index}", self::$_hideIcon . $hideLinkText, - array('onclick' => "cj('#${prefix}_${index}').hide(); cj('#${prefix}_${index}_show').show();" . $hideCode) + ['onclick' => "cj('#${prefix}_${index}').hide(); cj('#${prefix}_${index}_show').show();" . $hideCode] ); } else { $form->addElement('link', "${prefix}[${index}][show]", NULL, "#${prefix}_${index}", self::$_showIcon . $showLinkText, - array('onclick' => "cj('#{$showHidePrefix}_{$index}_show').hide(); cj('#{$showHidePrefix}_{$index}').show();" . $showCode) + ['onclick' => "cj('#{$showHidePrefix}_{$index}_show').hide(); cj('#{$showHidePrefix}_{$index}').show();" . $showCode] ); $form->addElement('link', "${prefix}[${index}][hide]", NULL, "#${prefix}_${index}", self::$_hideIcon . $hideLinkText, - array('onclick' => "cj('#{$showHidePrefix}_{$index}').hide(); cj('#{$showHidePrefix}_{$index}_show').show();" . $hideCode) + ['onclick' => "cj('#{$showHidePrefix}_{$index}').hide(); cj('#{$showHidePrefix}_{$index}_show').show();" . $hideCode] ); } }