CRM-15705, label sizes are now consistent
[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
TO
95 public function registerTab() {
96 return array('title' => ts('Grants'),
97 'url' => 'grant',
98 'weight' => 50,
99 );
100 }
101
102 // docs inherited from interface
e0ef6999
EM
103 /**
104 * @return array
105 */
6a488035
TO
106 public function registerAdvancedSearchPane() {
107 return array('title' => ts('Grants'),
108 'weight' => 50,
109 );
110 }
111
112 // docs inherited from interface
e0ef6999
EM
113 /**
114 * @return null
115 */
6a488035
TO
116 public function getActivityTypes() {
117 return NULL;
118 }
119
120 // add shortcut to Create New
e0ef6999
EM
121 /**
122 * @param $shortCuts
123 */
6a488035
TO
124 public function creatNewShortcut(&$shortCuts) {
125 if (CRM_Core_Permission::check('access CiviGrant') &&
126 CRM_Core_Permission::check('edit grants')
127 ) {
128 $shortCuts = array_merge($shortCuts, array(
129 array('path' => 'civicrm/grant/add',
130 'query' => "reset=1&action=add&context=standalone",
131 'ref' => 'new-grant',
132 'title' => ts('Grant'),
133 )));
134 }
135 }
136}
137