X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCore%2FAction.php;h=638976ea32831afba220f0b4e638c8bead94f141;hb=518fa0ee1556723e8e67e02a59e8e7f51ed76f6b;hp=8381d7d0224e04a086e5e01320467b6570fdea35;hpb=b8ebe34c530297a2c8b6a7380ac204c6153ff74c;p=civicrm-core.git diff --git a/CRM/Core/Action.php b/CRM/Core/Action.php index 8381d7d022..638976ea32 100644 --- a/CRM/Core/Action.php +++ b/CRM/Core/Action.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. | | | @@ -31,7 +31,7 @@ * and similar across all objects (thus providing both reuse and standards) * * @package CRM - * @copyright CiviCRM LLC (c) 2004-2018 + * @copyright CiviCRM LLC (c) 2004-2019 * $Id$ * */ @@ -74,10 +74,10 @@ class CRM_Core_Action { * bit manipulation operations so we can perform multiple * actions on the same object if needed * - * @var array $_names type of variable name to action constant + * @var array * */ - static $_names = array( + public static $_names = [ 'add' => self::ADD, 'update' => self::UPDATE, 'view' => self::VIEW, @@ -95,14 +95,14 @@ class CRM_Core_Action { 'revert' => self::REVERT, 'close' => self::CLOSE, 'reopen' => self::REOPEN, - ); + ]; /** * The flipped version of the names array, initialized when used * * @var array */ - static $_description; + public static $_description; /** * Called by the request object to translate a string into a mask. @@ -216,7 +216,7 @@ class CRM_Core_Action { // make links indexed sequentially instead of by bitmask // otherwise it's next to impossible to reliably add new ones - $seqLinks = array(); + $seqLinks = []; foreach ($links as $bit => $link) { $link['bit'] = $bit; $seqLinks[] = $link; @@ -226,7 +226,7 @@ class CRM_Core_Action { CRM_Utils_Hook::links($op, $objectName, $objectId, $seqLinks, $mask, $values); } - $url = array(); + $url = []; foreach ($seqLinks as $i => $link) { if (!$mask || !array_key_exists('bit', $link) || ($mask & $link['bit'])) {