Merge pull request #13346 from mfb/geocode-job-db-error
[civicrm-core.git] / CRM / Grant / Info.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 * This class introduces component to the system and provides all the
30 * information about it. It needs to extend CRM_Core_Component_Info
31 * abstract class.
32 *
33 * @package CRM
6b83d5bd 34 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
35 * $Id$
36 *
37 */
38class CRM_Grant_Info extends CRM_Core_Component_Info {
39
e7c15cb6
CW
40 /**
41 * @inheritDoc
42 */
6a488035
TO
43 protected $keyword = 'grant';
44
e0ef6999 45 /**
e7c15cb6 46 * @inheritDoc
e0ef6999
EM
47 * @return array
48 */
6a488035
TO
49 public function getInfo() {
50 return array(
51 'name' => 'CiviGrant',
52 'translatedName' => ts('CiviGrant'),
53 'title' => 'CiviCRM Grant Management Engine',
54 'path' => 'CRM_Grant_',
55 'search' => 1,
56 'showActivitiesInCore' => 1,
57 );
58 }
59
60
e0ef6999 61 /**
e7c15cb6 62 * @inheritDoc
e0ef6999 63 * @param bool $getAllUnconditionally
221b21b4
AH
64 * @param bool $descriptions
65 * Whether to return permission descriptions
e0ef6999
EM
66 *
67 * @return array
68 */
221b21b4
AH
69 public function getPermissions($getAllUnconditionally = FALSE, $descriptions = FALSE) {
70 $permissions = array(
71 'access CiviGrant' => array(
72 ts('access CiviGrant'),
73 ts('View all grants'),
74 ),
75 'edit grants' => array(
76 ts('edit grants'),
77 ts('Create and update grants'),
78 ),
79 'delete in CiviGrant' => array(
80 ts('delete in CiviGrant'),
81 ts('Delete grants'),
82 ),
6a488035 83 );
221b21b4
AH
84
85 if (!$descriptions) {
86 foreach ($permissions as $name => $attr) {
87 $permissions[$name] = array_shift($attr);
88 }
89 }
90
91 return $permissions;
6a488035
TO
92 }
93
e0ef6999 94 /**
e7c15cb6 95 * @inheritDoc
e0ef6999
EM
96 * @return null
97 */
6a488035
TO
98 public function getUserDashboardElement() {
99 // no dashboard element for this component
100 return NULL;
101 }
102
e0ef6999 103 /**
e7c15cb6 104 * @inheritDoc
e0ef6999
EM
105 * @return null
106 */
6a488035
TO
107 public function getUserDashboardObject() {
108 // no dashboard element for this component
109 return NULL;
110 }
111
e0ef6999 112 /**
e7c15cb6 113 * @inheritDoc
e0ef6999
EM
114 * @return array
115 */
6a488035 116 public function registerTab() {
1afc557a 117 return array(
353ffa53 118 'title' => ts('Grants'),
6a488035 119 'url' => 'grant',
42e86792 120 'weight' => 60,
6a488035
TO
121 );
122 }
123
b04115b4
CW
124 /**
125 * @inheritDoc
126 * @return string
127 */
128 public function getIcon() {
129 return 'crm-i fa-money';
130 }
131
e0ef6999 132 /**
e7c15cb6 133 * @inheritDoc
e0ef6999
EM
134 * @return array
135 */
6a488035 136 public function registerAdvancedSearchPane() {
1afc557a 137 return array(
353ffa53 138 'title' => ts('Grants'),
6a488035
TO
139 'weight' => 50,
140 );
141 }
142
e0ef6999 143 /**
e7c15cb6 144 * @inheritDoc
e0ef6999
EM
145 * @return null
146 */
6a488035
TO
147 public function getActivityTypes() {
148 return NULL;
149 }
150
e0ef6999 151 /**
fe482240 152 * add shortcut to Create New.
e0ef6999
EM
153 * @param $shortCuts
154 */
6a488035
TO
155 public function creatNewShortcut(&$shortCuts) {
156 if (CRM_Core_Permission::check('access CiviGrant') &&
157 CRM_Core_Permission::check('edit grants')
158 ) {
159 $shortCuts = array_merge($shortCuts, array(
1afc557a 160 array(
353ffa53
TO
161 'path' => 'civicrm/grant/add',
162 'query' => "reset=1&action=add&context=standalone",
163 'ref' => 'new-grant',
164 'title' => ts('Grant'),
a130e045 165 ),
353ffa53 166 ));
6a488035
TO
167 }
168 }
96025800 169
6a488035 170}