Merge pull request #15815 from artfulrobot/issue-1108-fix-unsubscribe
[civicrm-core.git] / CRM / Grant / Info.php
index ba61b19666fb28e7395c03de511dc2ce84bb658e..fea61808aa3ca3c383bad294d4190c2ed603c310 100644 (file)
@@ -1,27 +1,11 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 5                                                  |
- +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2019                                |
- +--------------------------------------------------------------------+
- | This file is a part of CiviCRM.                                    |
- |                                                                    |
- | CiviCRM is free software; you can copy, modify, and distribute it  |
- | under the terms of the GNU Affero General Public License           |
- | Version 3, 19 November 2007 and the CiviCRM Licensing Exception.   |
+ | Copyright CiviCRM LLC. All rights reserved.                        |
  |                                                                    |
- | CiviCRM is distributed in the hope that it will be useful, but     |
- | WITHOUT ANY WARRANTY; without even the implied warranty of         |
- | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.               |
- | See the GNU Affero General Public License for more details.        |
- |                                                                    |
- | You should have received a copy of the GNU Affero General Public   |
- | License and the CiviCRM Licensing Exception along                  |
- | with this program; if not, contact CiviCRM LLC                     |
- | at info[AT]civicrm[DOT]org. If you have questions about the        |
- | GNU Affero General Public License or the licensing of CiviCRM,     |
- | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
+ | This work is published under the GNU AGPLv3 license with some      |
+ | permitted exceptions and without any warranty. For full license    |
+ | and copyright information, see https://civicrm.org/licensing       |
  +--------------------------------------------------------------------+
  */
 
  * abstract class.
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2019
+ * @copyright CiviCRM LLC https://civicrm.org/licensing
  * $Id$
  *
  */
 class CRM_Grant_Info extends CRM_Core_Component_Info {
 
   /**
+   * @var string
    * @inheritDoc
    */
   protected $keyword = 'grant';
@@ -47,17 +32,16 @@ class CRM_Grant_Info extends CRM_Core_Component_Info {
    * @return array
    */
   public function getInfo() {
-    return array(
+    return [
       'name' => 'CiviGrant',
       'translatedName' => ts('CiviGrant'),
       'title' => 'CiviCRM Grant Management Engine',
       'path' => 'CRM_Grant_',
       'search' => 1,
       'showActivitiesInCore' => 1,
-    );
+    ];
   }
 
-
   /**
    * @inheritDoc
    * @param bool $getAllUnconditionally
@@ -67,20 +51,20 @@ class CRM_Grant_Info extends CRM_Core_Component_Info {
    * @return array
    */
   public function getPermissions($getAllUnconditionally = FALSE, $descriptions = FALSE) {
-    $permissions = array(
-      'access CiviGrant' => array(
+    $permissions = [
+      'access CiviGrant' => [
         ts('access CiviGrant'),
         ts('View all grants'),
-      ),
-      'edit grants' => array(
+      ],
+      'edit grants' => [
         ts('edit grants'),
         ts('Create and update grants'),
-      ),
-      'delete in CiviGrant' => array(
+      ],
+      'delete in CiviGrant' => [
         ts('delete in CiviGrant'),
         ts('Delete grants'),
-      ),
-    );
+      ],
+    ];
 
     if (!$descriptions) {
       foreach ($permissions as $name => $attr) {
@@ -114,11 +98,11 @@ class CRM_Grant_Info extends CRM_Core_Component_Info {
    * @return array
    */
   public function registerTab() {
-    return array(
+    return [
       'title' => ts('Grants'),
       'url' => 'grant',
       'weight' => 60,
-    );
+    ];
   }
 
   /**
@@ -134,10 +118,10 @@ class CRM_Grant_Info extends CRM_Core_Component_Info {
    * @return array
    */
   public function registerAdvancedSearchPane() {
-    return array(
+    return [
       'title' => ts('Grants'),
       'weight' => 50,
-    );
+    ];
   }
 
   /**
@@ -156,14 +140,14 @@ class CRM_Grant_Info extends CRM_Core_Component_Info {
     if (CRM_Core_Permission::check('access CiviGrant') &&
       CRM_Core_Permission::check('edit grants')
     ) {
-      $shortCuts = array_merge($shortCuts, array(
-        array(
+      $shortCuts = array_merge($shortCuts, [
+        [
           'path' => 'civicrm/grant/add',
           'query' => "reset=1&action=add&context=standalone",
           'ref' => 'new-grant',
           'title' => ts('Grant'),
-        ),
-      ));
+        ],
+      ]);
     }
   }