3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
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
{
43 protected $keyword = 'event';
49 public function getInfo() {
51 'name' => 'CiviEvent',
52 'translatedName' => ts('CiviEvent'),
53 'title' => ts('CiviCRM Event Engine'),
55 'showActivitiesInCore' => 1,
61 * @param bool $getAllUnconditionally
65 public function getPermissions($getAllUnconditionally = FALSE) {
68 'edit event participants',
70 'register for events',
72 'view event participants',
73 'delete in CiviEvent',
80 public function getAnonymousPermissionWarnings() {
90 public function getUserDashboardElement() {
92 'name' => ts('Events'),
93 'title' => ts('Your Event(s)'),
94 'perm' => array('register for events'),
103 public function registerTab() {
105 'title' => ts('Events'),
106 'id' => 'participant',
107 'url' => 'participant',
116 public function registerAdvancedSearchPane() {
118 'title' => ts('Events'),
127 public function getActivityTypes() {
129 $types['Event'] = array(
130 'title' => ts('Event'),
131 'callback' => 'CRM_Event_Page_EventInfo::run()',
137 * add shortcut to Create New.
141 public function creatNewShortcut(&$shortCuts, $newCredit) {
142 if (CRM_Core_Permission
::check('access CiviEvent') &&
143 CRM_Core_Permission
::check('edit event participants')
146 'path' => 'civicrm/participant/add',
147 'query' => "reset=1&action=add&context=standalone",
148 'ref' => 'new-participant',
149 'title' => ts('Event Registration'),
152 $title = ts('Event Registration') . '<br /> (' . ts('credit card') . ')';
153 $shortCut[0]['shortCuts'][] = array(
154 'path' => 'civicrm/participant/add',
155 'query' => "reset=1&action=add&context=standalone&mode=live",
156 'ref' => 'new-participant-cc',
160 $shortCuts = array_merge($shortCuts, $shortCut);