3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
29 * This class introduces component to the system and provides all the
30 * information about it. It needs to extend CRM_Core_Component_Info
34 * @copyright CiviCRM LLC (c) 2004-2014
38 class CRM_Event_Info
extends CRM_Core_Component_Info
{
40 // docs inherited from interface
41 protected $keyword = 'event';
43 // docs inherited from interface
44 public function getInfo() {
46 'name' => 'CiviEvent',
47 'translatedName' => ts('CiviEvent'),
48 'title' => ts('CiviCRM Event Engine'),
50 'showActivitiesInCore' => 1,
54 // docs inherited from interface
55 public function getPermissions($getAllUnconditionally = FALSE) {
58 'edit event participants',
60 'register for events',
62 'view event participants',
63 'delete in CiviEvent',
67 public function getAnonymousPermissionWarnings() {
73 // docs inherited from interface
74 public function getUserDashboardElement() {
75 return array('name' => ts('Events'),
76 'title' => ts('Your Event(s)'),
77 'perm' => array('register for events'),
82 // docs inherited from interface
83 public function registerTab() {
84 return array('title' => ts('Events'),
85 'id' => 'participant',
86 'url' => 'participant',
91 // docs inherited from interface
92 public function registerAdvancedSearchPane() {
93 return array('title' => ts('Events'),
98 // docs inherited from interface
99 public function getActivityTypes() {
101 $types['Event'] = array('title' => ts('Event'),
102 'callback' => 'CRM_Event_Page_EventInfo::run()',
107 // add shortcut to Create New
108 public function creatNewShortcut(&$shortCuts, $newCredit) {
109 if (CRM_Core_Permission
::check('access CiviEvent') &&
110 CRM_Core_Permission
::check('edit event participants')
113 'path' => 'civicrm/participant/add',
114 'query' => "reset=1&action=add&context=standalone",
115 'ref' => 'new-participant',
116 'title' => ts('Event Registration'),
119 $title = ts('Event Registration') . '<br /> (' . ts('credit card') . ')';
120 $shortCut[0]['shortCuts'][] = array(
121 'path' => 'civicrm/participant/add',
122 'query' => "reset=1&action=add&context=standalone&mode=live",
123 'ref' => 'new-participant-cc',
127 $shortCuts = array_merge($shortCuts, $shortCut);