Merge pull request #4893 from colemanw/INFRA-132
[civicrm-core.git] / CRM / Contribute / Info.php
index 8c95978dc9f43cd0dc27eebaf438e5dbae71f0a5..36af5e6983e5ac4b6273ca535bc36d7581e3c618 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.5                                                |
+ | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
  | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
@@ -47,9 +47,8 @@ class CRM_Contribute_Info extends CRM_Core_Component_Info {
    * Needs to be implemented in component's information
    * class.
    *
-   * @return array collection of required component settings
-   * @access public
-   *
+   * @return array
+   *   collection of required component settings
    */
   /**
    * @return array
@@ -76,7 +75,6 @@ class CRM_Contribute_Info extends CRM_Core_Component_Info {
    * @param bool $getAllUnconditionally
    *
    * @return array|null collection of permissions, null if none
-   * @access public
    */
   /**
    * @param bool $getAllUnconditionally
@@ -95,7 +93,8 @@ class CRM_Contribute_Info extends CRM_Core_Component_Info {
   /**
    * Provides permissions that are unwise for Anonymous Roles to have
    *
-   * @return array list of permissions
+   * @return array
+   *   list of permissions
    * @see CRM_Component_Info::getPermissions
    */
   /**
@@ -114,14 +113,13 @@ class CRM_Contribute_Info extends CRM_Core_Component_Info {
    *
    * @return array|null collection of required dashboard settings,
    *                    null if no element offered
-   * @access public
-   *
    */
   /**
    * @return array|null
    */
   public function getUserDashboardElement() {
-    return array('name' => ts('Contributions'),
+    return array(
+    'name' => ts('Contributions'),
       'title' => ts('Your Contribution(s)'),
       'perm' => array('make online contributions'),
       'weight' => 10,
@@ -135,14 +133,13 @@ class CRM_Contribute_Info extends CRM_Core_Component_Info {
    *
    * @return array|null collection of required dashboard settings,
    *                    null if no element offered
-   * @access public
-   *
    */
   /**
    * @return array|null
    */
   public function registerTab() {
-    return array('title' => ts('Contributions'),
+    return array(
+    'title' => ts('Contributions'),
       'url' => 'contribution',
       'weight' => 20,
     );
@@ -155,8 +152,6 @@ class CRM_Contribute_Info extends CRM_Core_Component_Info {
    *
    * @return array|null collection of required pane settings,
    *                    null if no element offered
-   * @access public
-   *
    */
   /**
    * @return array|null
@@ -176,8 +171,6 @@ class CRM_Contribute_Info extends CRM_Core_Component_Info {
    * class.
    *
    * @return array|null collection of activity types
-   * @access public
-   *
    */
   /**
    * @return array|null
@@ -214,4 +207,3 @@ class CRM_Contribute_Info extends CRM_Core_Component_Info {
     }
   }
 }
-