INFRA-132 - @param type fixes
[civicrm-core.git] / CRM / Grant / Info.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26*/
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
06b69b18 34 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
35 * $Id$
36 *
37 */
38class CRM_Grant_Info extends CRM_Core_Component_Info {
39
40 // docs inherited from interface
41 protected $keyword = 'grant';
42
43 // docs inherited from interface
e0ef6999
EM
44 /**
45 * @return array
46 */
6a488035
TO
47 public function getInfo() {
48 return array(
49 'name' => 'CiviGrant',
50 'translatedName' => ts('CiviGrant'),
51 'title' => 'CiviCRM Grant Management Engine',
52 'path' => 'CRM_Grant_',
53 'search' => 1,
54 'showActivitiesInCore' => 1,
55 );
56 }
57
58
59 // docs inherited from interface
e0ef6999
EM
60 /**
61 * @param bool $getAllUnconditionally
62 *
63 * @return array
64 */
33777e4a 65 public function getPermissions($getAllUnconditionally = FALSE) {
6a488035
TO
66 return array(
67 'access CiviGrant',
68 'edit grants',
69 'delete in CiviGrant',
70 );
71 }
72
73 // docs inherited from interface
e0ef6999
EM
74 /**
75 * @return null
76 */
6a488035
TO
77 public function getUserDashboardElement() {
78 // no dashboard element for this component
79 return NULL;
80 }
81
82 // docs inherited from interface
e0ef6999
EM
83 /**
84 * @return null
85 */
6a488035
TO
86 public function getUserDashboardObject() {
87 // no dashboard element for this component
88 return NULL;
89 }
90
91 // docs inherited from interface
e0ef6999
EM
92 /**
93 * @return array
94 */
6a488035 95 public function registerTab() {
1afc557a
TO
96 return array(
97 'title' => ts('Grants'),
6a488035
TO
98 'url' => 'grant',
99 'weight' => 50,
100 );
101 }
102
103 // docs inherited from interface
e0ef6999
EM
104 /**
105 * @return array
106 */
6a488035 107 public function registerAdvancedSearchPane() {
1afc557a
TO
108 return array(
109 'title' => ts('Grants'),
6a488035
TO
110 'weight' => 50,
111 );
112 }
113
114 // docs inherited from interface
e0ef6999
EM
115 /**
116 * @return null
117 */
6a488035
TO
118 public function getActivityTypes() {
119 return NULL;
120 }
121
122 // add shortcut to Create New
e0ef6999
EM
123 /**
124 * @param $shortCuts
125 */
6a488035
TO
126 public function creatNewShortcut(&$shortCuts) {
127 if (CRM_Core_Permission::check('access CiviGrant') &&
128 CRM_Core_Permission::check('edit grants')
129 ) {
130 $shortCuts = array_merge($shortCuts, array(
1afc557a
TO
131 array(
132 'path' => 'civicrm/grant/add',
6a488035
TO
133 'query' => "reset=1&action=add&context=standalone",
134 'ref' => 'new-grant',
135 'title' => ts('Grant'),
136 )));
137 }
138 }
139}