composer.json - Move ezc components from packages to composer.json
[civicrm-core.git] / CRM / Event / Info.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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
34 * @copyright CiviCRM LLC (c) 2004-2015
35 * $Id$
36 *
37 */
38 class CRM_Event_Info extends CRM_Core_Component_Info {
39
40 /**
41 * @inheritDoc
42 */
43 protected $keyword = 'event';
44
45 /**
46 * @inheritDoc
47 * @return array
48 */
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
59 /**
60 * @inheritDoc
61 * @param bool $getAllUnconditionally
62 * @param bool $descriptions
63 * Whether to return permission descriptions
64 *
65 * @return array
66 */
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 ),
96 'manage event profiles' => array(
97 ts('manage event profiles'),
98 ts('Allow users to create, edit and copy event-related profile forms used for online event registration.'),
99 ),
100 );
101
102 if (!$descriptions) {
103 foreach ($permissions as $name => $attr) {
104 $permissions[$name] = array_shift($attr);
105 }
106 }
107
108 return $permissions;
109 }
110
111 /**
112 * @return array
113 */
114 public function getAnonymousPermissionWarnings() {
115 return array(
116 'access CiviEvent',
117 );
118 }
119
120 /**
121 * @inheritDoc
122 * @return array
123 */
124 public function getUserDashboardElement() {
125 return array(
126 'name' => ts('Events'),
127 'title' => ts('Your Event(s)'),
128 'perm' => array('register for events'),
129 'weight' => 20,
130 );
131 }
132
133 /**
134 * @inheritDoc
135 * @return array
136 */
137 public function registerTab() {
138 return array(
139 'title' => ts('Events'),
140 'id' => 'participant',
141 'url' => 'participant',
142 'weight' => 40,
143 );
144 }
145
146 /**
147 * @inheritDoc
148 * @return array
149 */
150 public function registerAdvancedSearchPane() {
151 return array(
152 'title' => ts('Events'),
153 'weight' => 40,
154 );
155 }
156
157 /**
158 * @inheritDoc
159 * @return array
160 */
161 public function getActivityTypes() {
162 $types = array();
163 $types['Event'] = array(
164 'title' => ts('Event'),
165 'callback' => 'CRM_Event_Page_EventInfo::run()',
166 );
167 return $types;
168 }
169
170 /**
171 * add shortcut to Create New.
172 * @param $shortCuts
173 * @param $newCredit
174 */
175 public function creatNewShortcut(&$shortCuts, $newCredit) {
176 if (CRM_Core_Permission::check('access CiviEvent') &&
177 CRM_Core_Permission::check('edit event participants')
178 ) {
179 $shortCut[] = array(
180 'path' => 'civicrm/participant/add',
181 'query' => "reset=1&action=add&context=standalone",
182 'ref' => 'new-participant',
183 'title' => ts('Event Registration'),
184 );
185 if ($newCredit) {
186 $title = ts('Event Registration') . '<br />&nbsp;&nbsp;(' . ts('credit card') . ')';
187 $shortCut[0]['shortCuts'][] = array(
188 'path' => 'civicrm/participant/add',
189 'query' => "reset=1&action=add&context=standalone&mode=live",
190 'ref' => 'new-participant-cc',
191 'title' => $title,
192 );
193 }
194 $shortCuts = array_merge($shortCuts, $shortCut);
195 }
196 }
197
198 }