Merge pull request #12003 from vinuvarshith/dev/core/69-fix-state-province-name-token...
[civicrm-core.git] / CRM / Grant / Info.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
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
8c9251b3 34 * @copyright CiviCRM LLC (c) 2004-2018
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
TO
119 'url' => 'grant',
120 'weight' => 50,
121 );
122 }
123
e0ef6999 124 /**
e7c15cb6 125 * @inheritDoc
e0ef6999
EM
126 * @return array
127 */
6a488035 128 public function registerAdvancedSearchPane() {
1afc557a 129 return array(
353ffa53 130 'title' => ts('Grants'),
6a488035
TO
131 'weight' => 50,
132 );
133 }
134
e0ef6999 135 /**
e7c15cb6 136 * @inheritDoc
e0ef6999
EM
137 * @return null
138 */
6a488035
TO
139 public function getActivityTypes() {
140 return NULL;
141 }
142
e0ef6999 143 /**
fe482240 144 * add shortcut to Create New.
e0ef6999
EM
145 * @param $shortCuts
146 */
6a488035
TO
147 public function creatNewShortcut(&$shortCuts) {
148 if (CRM_Core_Permission::check('access CiviGrant') &&
149 CRM_Core_Permission::check('edit grants')
150 ) {
151 $shortCuts = array_merge($shortCuts, array(
1afc557a 152 array(
353ffa53
TO
153 'path' => 'civicrm/grant/add',
154 'query' => "reset=1&action=add&context=standalone",
155 'ref' => 'new-grant',
156 'title' => ts('Grant'),
a130e045 157 ),
353ffa53 158 ));
6a488035
TO
159 }
160 }
96025800 161
6a488035 162}