Merge pull request #5830 from davecivicrm/CRM-16502
[civicrm-core.git] / CRM / Event / Info.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
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
e7112fa7 34 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
35 * $Id$
36 *
37 */
38class CRM_Event_Info extends CRM_Core_Component_Info {
39
e7c15cb6
CW
40 /**
41 * @inheritDoc
42 */
6a488035
TO
43 protected $keyword = 'event';
44
0cf587a7 45 /**
e7c15cb6 46 * @inheritDoc
0cf587a7
EM
47 * @return array
48 */
6a488035
TO
49 public function getInfo() {
50 return array(
51 'name' => 'CiviEvent',
52 'translatedName' => ts('CiviEvent'),
53 'title' => ts('CiviCRM Event Engine'),
54 'search' => 1,
55 'showActivitiesInCore' => 1,
56 );
57 }
58
0cf587a7 59 /**
e7c15cb6 60 * @inheritDoc
0cf587a7 61 * @param bool $getAllUnconditionally
221b21b4
AH
62 * @param bool $descriptions
63 * Whether to return permission descriptions
0cf587a7
EM
64 *
65 * @return array
66 */
221b21b4
AH
67 public function getPermissions($getAllUnconditionally = FALSE, $descriptions = FALSE) {
68 $permissions = array(
69 'access CiviEvent' => array(
70 ts('access CiviEvent'),
71 ts('Create events, view all events, and view participant records (for visible contacts)'),
72 ),
73 'edit event participants' => array(
74 ts('edit event participants'),
75 ts('Record and update backend event registrations'),
76 ),
77 'edit all events' => array(
78 ts('edit all events'),
79 ts('Edit events even without specific ACL granted'),
80 ),
81 'register for events' => array(
82 ts('register for events'),
83 ts('Register for events online'),
84 ),
85 'view event info' => array(
86 ts('view event info'),
87 ts('View online event information pages'),
88 ),
89 'view event participants' => array(
90 ts('view event participants'),
91 ),
92 'delete in CiviEvent' => array(
93 ts('delete in CiviEvent'),
94 ts('Delete participants and events that you can edit'),
95 ),
6a488035 96 );
221b21b4
AH
97
98 if (!$descriptions) {
99 foreach ($permissions as $name => $attr) {
100 $permissions[$name] = array_shift($attr);
101 }
102 }
103
104 return $permissions;
6a488035
TO
105 }
106
0cf587a7
EM
107 /**
108 * @return array
109 */
81bb85ea
AC
110 public function getAnonymousPermissionWarnings() {
111 return array(
112 'access CiviEvent',
113 );
114 }
115
0cf587a7 116 /**
e7c15cb6 117 * @inheritDoc
0cf587a7
EM
118 * @return array
119 */
6a488035 120 public function getUserDashboardElement() {
6ea503d4
TO
121 return array(
122 'name' => ts('Events'),
6a488035
TO
123 'title' => ts('Your Event(s)'),
124 'perm' => array('register for events'),
125 'weight' => 20,
126 );
127 }
128
0cf587a7 129 /**
e7c15cb6 130 * @inheritDoc
0cf587a7
EM
131 * @return array
132 */
6a488035 133 public function registerTab() {
6ea503d4
TO
134 return array(
135 'title' => ts('Events'),
6a488035
TO
136 'id' => 'participant',
137 'url' => 'participant',
138 'weight' => 40,
139 );
140 }
141
0cf587a7 142 /**
e7c15cb6 143 * @inheritDoc
0cf587a7
EM
144 * @return array
145 */
6a488035 146 public function registerAdvancedSearchPane() {
6ea503d4
TO
147 return array(
148 'title' => ts('Events'),
6a488035
TO
149 'weight' => 40,
150 );
151 }
152
0cf587a7 153 /**
e7c15cb6 154 * @inheritDoc
0cf587a7
EM
155 * @return array
156 */
6a488035
TO
157 public function getActivityTypes() {
158 $types = array();
6ea503d4
TO
159 $types['Event'] = array(
160 'title' => ts('Event'),
6a488035
TO
161 'callback' => 'CRM_Event_Page_EventInfo::run()',
162 );
163 return $types;
164 }
165
0cf587a7 166 /**
fe482240 167 * add shortcut to Create New.
0cf587a7
EM
168 * @param $shortCuts
169 * @param $newCredit
170 */
6a488035
TO
171 public function creatNewShortcut(&$shortCuts, $newCredit) {
172 if (CRM_Core_Permission::check('access CiviEvent') &&
173 CRM_Core_Permission::check('edit event participants')
174 ) {
6b5ca1ea 175 $shortCut[] = array(
176 'path' => 'civicrm/participant/add',
177 'query' => "reset=1&action=add&context=standalone",
178 'ref' => 'new-participant',
179 'title' => ts('Event Registration'),
180 );
6a488035
TO
181 if ($newCredit) {
182 $title = ts('Event Registration') . '<br />&nbsp;&nbsp;(' . ts('credit card') . ')';
6b5ca1ea 183 $shortCut[0]['shortCuts'][] = array(
184 'path' => 'civicrm/participant/add',
185 'query' => "reset=1&action=add&context=standalone&mode=live",
186 'ref' => 'new-participant-cc',
187 'title' => $title,
188 );
6a488035 189 }
6b5ca1ea 190 $shortCuts = array_merge($shortCuts, $shortCut);
6a488035
TO
191 }
192 }
96025800 193
6a488035 194}