'CiviPledge', 'translatedName' => ts('CiviPledge'), 'title' => ts('CiviCRM Pledge Engine'), 'search' => 1, 'showActivitiesInCore' => 1, ]; } /** * @inheritDoc * Provides permissions that are used by component. * Needs to be implemented in component's information * class. * * NOTE: if using conditionally permission return, * implementation of $getAllUnconditionally is required. * * @param bool $getAllUnconditionally * @param bool $descriptions * Whether to return permission descriptions * * @return array|null * collection of permissions, null if none */ public function getPermissions($getAllUnconditionally = FALSE, $descriptions = FALSE) { $permissions = [ 'access CiviPledge' => [ ts('access CiviPledge'), ts('View pledges'), ], 'edit pledges' => [ ts('edit pledges'), ts('Create and update pledges'), ], 'delete in CiviPledge' => [ ts('delete in CiviPledge'), ts('Delete pledges'), ], ]; if (!$descriptions) { foreach ($permissions as $name => $attr) { $permissions[$name] = array_shift($attr); } } return $permissions; } /** * @inheritDoc * Provides information about user dashboard element * offered by this component. * * @return array|null * collection of required dashboard settings, * null if no element offered */ public function getUserDashboardElement() { return [ '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' => ['make online contributions'], 'weight' => 15, ]; } /** * @inheritDoc * Provides information about user dashboard element * offered by this component. * * @return array|null * collection of required dashboard settings, * null if no element offered */ public function registerTab() { return [ 'title' => ts('Pledges'), 'url' => 'pledge', 'weight' => 25, ]; } /** * @inheritDoc * @return string */ public function getIcon() { return 'crm-i fa-paper-plane'; } /** * @inheritDoc * Provides information about advanced search pane * offered by this component. * * @return array|null * collection of required pane settings, * null if no element offered */ public function registerAdvancedSearchPane() { return [ 'title' => ts('Pledges'), 'weight' => 25, ]; } /** * @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 */ public function getActivityTypes() { return NULL; } /** * add shortcut to Create New. * @param $shortCuts */ public function creatNewShortcut(&$shortCuts) { if (CRM_Core_Permission::check('access CiviPledge') && CRM_Core_Permission::check('edit pledges') ) { $shortCuts = array_merge($shortCuts, [ [ 'path' => 'civicrm/pledge/add', 'query' => 'reset=1&action=add&context=standalone', 'ref' => 'new-pledge', 'title' => ts('Pledge'), ], ]); } } }