X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FPledge%2FInfo.php;h=d0c36c6056bb2a67a60cb81d8cdaf9d74c388025;hb=af9b09df30058b7ec63c65eecd75b75326772403;hp=822f2e7a37559061ad5b57d9e44cb8b57c9a3546;hpb=a5d44edbee5498fa4195c5f3571db6b820185fa8;p=civicrm-core.git diff --git a/CRM/Pledge/Info.php b/CRM/Pledge/Info.php index 822f2e7a37..d0c36c6056 100644 --- a/CRM/Pledge/Info.php +++ b/CRM/Pledge/Info.php @@ -1,7 +1,7 @@ ts('Pledges'), + return array( + 'name' => ts('Pledges'), 'title' => ts('Your Pledge(s)'), // we need to check this permission since you can click on contribution page link for making payment 'perm' => array('make online contributions'), @@ -108,55 +110,54 @@ class CRM_Pledge_Info extends CRM_Core_Component_Info { ); } - // docs inherited from interface /** + * @inheritDoc * Provides information about user dashboard element * offered by this component. * - * @return array|null collection of required dashboard settings, + * @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('Pledges'), + return array( + 'title' => ts('Pledges'), 'url' => 'pledge', 'weight' => 25, ); } - // docs inherited from interface /** + * @inheritDoc * Provides information about advanced search pane * offered by this component. * - * @return array|null collection of required pane settings, + * @return array|null + * collection of required pane settings, * null if no element offered - * @access public - * */ /** * @return array|null */ public function registerAdvancedSearchPane() { - return array('title' => ts('Pledges'), + return array( + 'title' => ts('Pledges'), 'weight' => 25, ); } - // docs inherited from interface /** + * @inheritDoc * Provides potential activity types that this * component might want to register in activity history. * Needs to be implemented in component's information * class. * - * @return array|null collection of activity types - * @access public - * + * @return array|null + * collection of activity types */ /** * @return array|null @@ -165,8 +166,8 @@ class CRM_Pledge_Info extends CRM_Core_Component_Info { return NULL; } - // add shortcut to Create New /** + * add shortcut to Create New * @param $shortCuts */ public function creatNewShortcut(&$shortCuts) { @@ -174,12 +175,14 @@ class CRM_Pledge_Info extends CRM_Core_Component_Info { CRM_Core_Permission::check('edit pledges') ) { $shortCuts = array_merge($shortCuts, array( - array('path' => 'civicrm/pledge/add', - 'query' => 'reset=1&action=add&context=standalone', - 'ref' => 'new-pledge', - 'title' => ts('Pledge'), - ))); + array( + 'path' => 'civicrm/pledge/add', + 'query' => 'reset=1&action=add&context=standalone', + 'ref' => 'new-pledge', + 'title' => ts('Pledge'), + ), + )); } } -} +}