INFRA-132 - @param type fixes
[civicrm-core.git] / CRM / Grant / Info.php
index 5f279844baabc7b7144566fa2442dd7ae0da7e8c..127456278d13fc3ab93378ea36fc26d2ae0c684a 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.5                                                |
+ | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
  | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
@@ -93,7 +93,8 @@ class CRM_Grant_Info extends CRM_Core_Component_Info {
    * @return array
    */
   public function registerTab() {
-    return array('title' => ts('Grants'),
+    return array(
+    'title' => ts('Grants'),
       'url' => 'grant',
       'weight' => 50,
     );
@@ -104,7 +105,8 @@ class CRM_Grant_Info extends CRM_Core_Component_Info {
    * @return array
    */
   public function registerAdvancedSearchPane() {
-    return array('title' => ts('Grants'),
+    return array(
+    'title' => ts('Grants'),
       'weight' => 50,
     );
   }
@@ -126,7 +128,8 @@ class CRM_Grant_Info extends CRM_Core_Component_Info {
       CRM_Core_Permission::check('edit grants')
     ) {
       $shortCuts = array_merge($shortCuts, array(
-        array('path' => 'civicrm/grant/add',
+        array(
+      'path' => 'civicrm/grant/add',
             'query' => "reset=1&action=add&context=standalone",
             'ref' => 'new-grant',
             'title' => ts('Grant'),
@@ -134,4 +137,3 @@ class CRM_Grant_Info extends CRM_Core_Component_Info {
     }
   }
 }
-