-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathwp-event-manager.php
477 lines (410 loc) · 21.2 KB
/
wp-event-manager.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
<?php
/**
* Plugin Name: WP Event Manager
* Plugin URI: https://www.wp-eventmanager.com/
* Description: Lightweight, scalable and full-featured event listings & management plugin for managing event listings from the Frontend and Backend.
* Author: WP Event Manager
* Author URI: https://www.wp-eventmanager.com
* Text Domain: wp-event-manager
* Domain Path: /languages
* Version: 3.1.46
* Since: 1.0.0
* Requires WordPress Version at least: 5.4.1
* Copyright: 2019 WP Event Manager
* License: GNU General Public License v3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
*
**/
// Exit if accessed directly
if(!defined('ABSPATH')) {
exit;
}
/**
* A class that defines the main features of the WP event manager plugin.
*/
class WP_Event_Manager {
public $forms;
public $post_types;
/**
* The single instance of the class.
*
* @var self
* @since 2.5
*/
private static $_instance = null;
/**
* version of plugin.
*
* @var plugin version
* @since 3.1.33
*/
private static $wpem_verion = '3.1.46';
/**
* REST API instance.
*
* @var WP_Event_Manager_REST_API
*/
private $rest_api = null;
/**
* Main WP Event Manager Instance.
*
* Ensures only one instance of WP Event Manager is loaded or can be loaded.
*
* @since 2.5
* @static
* @see WP_Event_Manager()
* @return self Main instance.
*/
public static function instance() {
if(is_null(self::$_instance)) {
self::$_instance = new self();
}
return self::$_instance;
}
/**
* Constructor - get the plugin hooked in and ready.
*
* @since 1.0.0
*/
public function __construct() {
// Define constants
define('EVENT_MANAGER_VERSION', self::$wpem_verion);
define('EVENT_MANAGER_PLUGIN_DIR', untrailingslashit(plugin_dir_path(__FILE__)));
define('EVENT_MANAGER_PLUGIN_URL', untrailingslashit(plugins_url(basename(plugin_dir_path(__FILE__)), basename(__FILE__))));
// Here are all the files for the admin side of WP Event Manager.
include('includes/wp-event-manager-install.php');
include('includes/wp-event-manager-post-types.php');
include('includes/wp-event-manager-ajax.php');
include('includes/wp-event-manager-geocode.php');
include('includes/wp-event-manager-filters.php');
include('includes/wp-event-manager-cache-helper.php');
include('includes/wp-event-manager-date-time.php');
// Here is the list of all the shortcodes for WP Event Manager.
include('shortcodes/wp-event-manager-shortcodes.php');
// Forms of WP Event manager.
include('forms/wp-event-manager-forms.php');
if(is_admin()) {
include('admin/wp-event-manager-admin.php');
}
// In the case of third party support, use this.
include('external/external.php');
// Init classes
$this->forms = WP_Event_Manager_Forms::instance();
$this->post_types = WP_Event_Manager_Post_Types::instance();
// Activation hooks provide ways to perform actions when plugins are activated.
register_activation_hook(basename(dirname(__FILE__)) . '/' . basename(__FILE__), array($this, 'activate'));
// Hide dashboard pages from non organizer user
add_action('event_manager_organizer_dashboard_before', array($this, 'wpem_restrict_non_organizer_access_to_dashboard'));
add_action('event_manager_venue_dashboard_before',array($this, 'wpem_restrict_non_organizer_access_to_dashboard'));
add_action('event_manager_event_dashboard_before',array($this, 'wpem_restrict_non_organizer_access_to_dashboard'));
// Restrict to add venue, organizer, event form for non organizer user.
add_action('wp_event_manager_venue_submit_before', array($this, 'wpem_restrict_non_organizer_access_to_dashboard'));
add_action('wp_event_manager_organizer_submit_before', array($this, 'wpem_restrict_non_organizer_access_to_dashboard'));
add_action('wp_event_manager_event_submit_before', array($this, 'wpem_restrict_non_organizer_access_to_dashboard'));
// Switch theme
add_action('after_switch_theme', array('WP_Event_Manager_Ajax', 'add_endpoint'), 10);
add_action('after_switch_theme', array($this->post_types, 'register_post_types'), 11);
add_action('after_switch_theme', 'flush_rewrite_rules', 15);
add_action('after_setup_theme', array($this, 'load_plugin_textdomain'));
add_action('after_setup_theme', array($this, 'include_template_functions'), 11);
add_action('widgets_init', array($this, 'widgets_init'));
add_action('wp_enqueue_scripts', array($this, 'frontend_scripts'));
add_action('admin_init', array($this, 'updater'));
add_action('wp_logout', array($this, 'cleanup_event_posting_cookies'));
// Defaults for core actions
add_action('event_manager_notify_new_user', 'wp_event_manager_notify_new_user', 10, 2);
// Duplicate the_content filter for Wp event Manager plugin
global $wp_embed;
add_filter('wpem_the_content', array($wp_embed, 'run_shortcode'), 8);
add_filter('wpem_the_content', array($wp_embed, 'autoembed' ), 8);
add_filter('wpem_the_content', 'wptexturize' );
add_filter('wpem_the_content', 'convert_chars' );
add_filter('wpem_the_content', 'wpautop' );
add_filter('wpem_the_content', 'shortcode_unautop' );
add_filter('wpem_the_content', 'do_shortcode' );
add_filter('wpem_the_content', 'wpem_embed_oembed_html' );
// Schedule cron events
self::check_schedule_crons();
}
/**
* Provide ways to perform actions when plugins are activated.
*
* @since 1.0.0
*/
public function activate() {
WP_Event_Manager_Ajax::add_endpoint();
unregister_post_type('event_listing');
add_filter('pre_option_event_manager_enable_categories', '__return_true');
add_filter('pre_option_event_manager_enable_event_types', '__return_true');
$this->post_types->register_post_types();
remove_filter('pre_option_event_manager_enable_categories', '__return_true');
remove_filter('pre_option_event_manager_enable_event_types', '__return_true');
WP_Event_Manager_Install::install();
// Show notice after activating plugin
update_option('event_manager_rating_showcase_admin_notices_dismiss','0');
// 3.1.37.1 change field option name
if(!empty(get_option('event_manager_form_fields', true))) {
$all_fields = get_option('event_manager_form_fields', true);
if(isset($all_fields) && !empty($all_fields) && is_array($all_fields)) {
// 3.1.37.1 change field option name
if(isset($all_fields['event']['event_registration_email']))
unset($all_fields['event']['event_registration_email']);
update_option('event_manager_submit_event_form_fields', array('event' =>$all_fields['event']));
}
}
flush_rewrite_rules();
}
/**
* Handle Updates.
* @since 1.0.0
*/
public function updater() {
if(version_compare(EVENT_MANAGER_VERSION, get_option('wp_event_manager_version'), '>')) {
WP_Event_Manager_Install::update();
flush_rewrite_rules();
}
}
/**
* Loads a plugin's translated strings.
* @since 1.0.0
*/
public function load_plugin_textdomain() {
$domain = 'wp-event-manager';
$locale = apply_filters('plugin_locale', get_locale(), $domain);
load_textdomain($domain, WP_LANG_DIR . "/wp-event-manager/".$domain."-" .$locale. ".mo");
load_plugin_textdomain($domain, false, dirname(plugin_basename(__FILE__)) . '/languages/');
}
/**
* Load the functions files for WP Event Manager.
* @since 1.0.0
*/
public function include_template_functions() {
include('wp-event-manager-functions.php');
include('wp-event-manager-template.php');
}
/**
* Manage WordPress widgets.
* @since 1.0.0
*/
public function widgets_init() {
include_once('widgets/wp-event-manager-widgets.php');
}
/**
* Format array for the datepicker.
*
* WordPress stores the locale information in an array with a alphanumeric index, and
* the datepicker wants a numerical index. This function replaces the index with a number
*/
public function strip_array_indices($ArrayToStrip) {
foreach($ArrayToStrip as $objArrayItem) {
$NewArray[] = $objArrayItem;
}
return($NewArray);
}
/**
* Register and enqueue scripts and css.
*/
public function frontend_scripts() {
$ajax_url = WP_Event_Manager_Ajax::get_endpoint();
$ajax_filter_deps = array('jquery', 'jquery-deserialize');
$chosen_shortcodes = array('submit_event_form', 'event_dashboard', 'events');
$chosen_used_on_page = has_wpem_shortcode(null, $chosen_shortcodes);
// jQuery Chosen - vendor
if(apply_filters('event_manager_chosen_enabled', $chosen_used_on_page)) {
wp_register_script('chosen', EVENT_MANAGER_PLUGIN_URL . '/assets/js/jquery-chosen/chosen.jquery.min.js', array('jquery'), '1.1.0', true);
wp_register_script('wp-event-manager-term-multiselect', EVENT_MANAGER_PLUGIN_URL . '/assets/js/term-multiselect.min.js', array('jquery', 'chosen'), EVENT_MANAGER_VERSION, true);
wp_register_script('wp-event-manager-multiselect', EVENT_MANAGER_PLUGIN_URL . '/assets/js/multiselect.min.js', array('jquery', 'chosen'), EVENT_MANAGER_VERSION, true);
wp_enqueue_style('chosen', EVENT_MANAGER_PLUGIN_URL . '/assets/css/chosen.css');
$ajax_filter_deps[] = 'chosen';
}
// File upload - vendor
if(apply_filters('event_manager_ajax_file_upload_enabled', true)) {
wp_register_script('jquery-iframe-transport', EVENT_MANAGER_PLUGIN_URL . '/assets/js/jquery-fileupload/jquery.iframe-transport.js', array('jquery'), '1.8.3', true);
wp_register_script('jquery-fileupload', EVENT_MANAGER_PLUGIN_URL . '/assets/js/jquery-fileupload/jquery.fileupload.js', array('jquery', 'jquery-iframe-transport', 'jquery-ui-widget'), '5.42.3', true);
wp_register_script('wp-event-manager-ajax-file-upload', EVENT_MANAGER_PLUGIN_URL . '/assets/js/ajax-file-upload.min.js', array('jquery', 'jquery-fileupload'), EVENT_MANAGER_VERSION, true);
ob_start();
get_event_manager_template('form-fields/uploaded-file-html.php', array('name' => '', 'value' => '', 'extension' => 'jpg'));
$js_field_html_img = ob_get_clean();
ob_start();
get_event_manager_template('form-fields/uploaded-file-html.php', array('name' => '', 'value' => '', 'extension' => 'zip'));
$js_field_html = ob_get_clean();
wp_localize_script('wp-event-manager-ajax-file-upload', 'event_manager_ajax_file_upload', array(
'ajax_url' => $ajax_url,
'js_field_html_img' => esc_js(str_replace("\n", "", $js_field_html_img)),
'js_field_html' => esc_js(str_replace("\n", "", $js_field_html)),
'i18n_invalid_file_type' => __('Invalid file type. Accepted types:', 'wp-event-manager')
));
}
// jQuery Deserialize - vendor
wp_register_script('jquery-deserialize', EVENT_MANAGER_PLUGIN_URL . '/assets/js/jquery-deserialize/jquery.deserialize.js', array('jquery'), '1.2.1', true);
// Common js
wp_register_script('wp-event-manager-common', EVENT_MANAGER_PLUGIN_URL . '/assets/js/common.min.js', array('jquery'), EVENT_MANAGER_VERSION, true);
wp_enqueue_style('wp-event-manager-frontend', EVENT_MANAGER_PLUGIN_URL . '/assets/css/frontend.min.css');
wp_enqueue_script('wp-event-manager-common');
// event submission forms and validation js
global $wp_locale; //
wp_register_script('wp-event-manager-event-submission', EVENT_MANAGER_PLUGIN_URL . '/assets/js/event-submission.min.js', array('jquery','jquery-ui-core','jquery-ui-datepicker') , EVENT_MANAGER_VERSION, true);
wp_localize_script('wp-event-manager-event-submission', 'wp_event_manager_event_submission', array(
'start_of_week' => get_option('start_of_week'),
'i18n_datepicker_format' => WP_Event_Manager_Date_Time::get_datepicker_format(),
'i18n_timepicker_format' => WP_Event_Manager_Date_Time::get_timepicker_format(),
'i18n_timepicker_step' => WP_Event_Manager_Date_Time::get_timepicker_step(),
'monthNames' => $this->strip_array_indices($wp_locale->month),
'i18n_dayNames' => $this->strip_array_indices($wp_locale->weekday),
'i18n_dayNamesMin' => $this->strip_array_indices($wp_locale->weekday_abbrev),
'ajax_url' => admin_url('admin-ajax.php'),
'show_past_date' => apply_filters('event_manager_show_past_date_frontend', false),
));
// Lightpick Date range picker
wp_register_style('wp-event-manager-lightpick-datepicker-style', EVENT_MANAGER_PLUGIN_URL . '/assets/js/lightpick-datepicker/lightpick.css');
wp_register_script('wp-event-manager-lightpick-datepicker', EVENT_MANAGER_PLUGIN_URL . '/assets/js/lightpick-datepicker/lightpick.js', array('jquery-ui-core', 'jquery-ui-button', 'jquery-ui-datepicker', 'jquery-ui-menu', 'jquery-ui-widget', 'moment') , EVENT_MANAGER_VERSION, true);
// jQuery UI date rang picker
wp_register_style('wp-event-manager-jquery-ui-daterangepicker', EVENT_MANAGER_PLUGIN_URL . '/assets/js/jquery-ui-daterangepicker/jquery.comiseo.daterangepicker.css');
wp_register_style('wp-event-manager-jquery-ui-daterangepicker-style', EVENT_MANAGER_PLUGIN_URL . '/assets/js/jquery-ui-daterangepicker/styles.css');
wp_register_script('wp-event-manager-jquery-ui-daterangepicker', EVENT_MANAGER_PLUGIN_URL . '/assets/js/jquery-ui-daterangepicker/jquery.comiseo.daterangepicker.js', array('jquery-ui-core', 'jquery-ui-button', 'jquery-ui-datepicker', 'jquery-ui-menu', 'jquery-ui-widget', 'moment') , EVENT_MANAGER_VERSION, true);
wp_register_script('wp-event-manager-content-event-listing', EVENT_MANAGER_PLUGIN_URL . '/assets/js/content-event-listing.min.js', array('jquery','wp-event-manager-common'), EVENT_MANAGER_VERSION, true);
wp_localize_script('wp-event-manager-content-event-listing', 'event_manager_content_event_listing', array(
'i18n_datepicker_format' => WP_Event_Manager_Date_Time::get_datepicker_format(),
'i18n_initialText' => __('Select Date Range', 'wp-event-manager'),
'i18n_applyButtonText' => __('Apply', 'wp-event-manager'),
'i18n_clearButtonText' => __('Clear', 'wp-event-manager'),
'i18n_cancelButtonText' => __('Cancel', 'wp-event-manager'),
'i18n_monthNames' => $this->strip_array_indices($wp_locale->month),
'i18n_dayNames' => $this->strip_array_indices($wp_locale->weekday),
'i18n_dayNamesMin' => $this->strip_array_indices($wp_locale->weekday_abbrev),
'i18n_today' => __('Today', 'wp-event-manager'),
'i18n_tomorrow' => __('Tomorrow', 'wp-event-manager'),
'i18n_thisWeek' => __('This Week', 'wp-event-manager'),
'i18n_nextWeek' => __('Next Week', 'wp-event-manager'),
'i18n_thisMonth' => __('This Month', 'wp-event-manager'),
'i18n_nextMonth' => __('Next Month', 'wp-event-manager'),
'i18n_thisYear' => __('This Year', 'wp-event-manager'),
'i18n_nextYear' => __('Next Year', 'wp-event-manager')
));
// Ajax filters js
wp_register_script('wp-event-manager-ajax-filters', EVENT_MANAGER_PLUGIN_URL . '/assets/js/event-ajax-filters.min.js', $ajax_filter_deps, EVENT_MANAGER_VERSION, true);
wp_localize_script('wp-event-manager-ajax-filters', 'event_manager_ajax_filters', array(
'ajax_url' => $ajax_url,
'is_rtl' => is_rtl() ? 1 : 0,
'lang' => apply_filters('wpem_lang', null) //defined('ICL_LANGUAGE_CODE') ? ICL_LANGUAGE_CODE : '', // WPML workaround until this is standardized
));
// Use for dashboard
wp_register_script('wp-event-manager-event-dashboard', EVENT_MANAGER_PLUGIN_URL . '/assets/js/event-dashboard.min.js', array('jquery'), EVENT_MANAGER_VERSION, true);
wp_localize_script('wp-event-manager-event-dashboard', 'event_manager_event_dashboard', array(
'i18n_btnOkLabel' => __('Delete', 'wp-event-manager'),
'i18n_btnCancelLabel' => __('Cancel', 'wp-event-manager'),
'i18n_confirm_delete' => __('Are you sure you want to delete this event?', 'wp-event-manager')
));
// Use for organizer dashboard
wp_register_script('wp-event-manager-organizer-dashboard', EVENT_MANAGER_PLUGIN_URL . '/assets/js/organizer-dashboard.min.js', array('jquery'), EVENT_MANAGER_VERSION, true);
wp_localize_script('wp-event-manager-organizer-dashboard', 'event_manager_organizer_dashboard', array(
'i18n_btnOkLabel' => __('Delete', 'wp-event-manager'),
'i18n_btnCancelLabel' => __('Cancel', 'wp-event-manager'),
'i18n_confirm_delete' => __('Are you sure you want to delete this organizer?', 'wp-event-manager')
));
// Use for venue dashboard
wp_register_script('wp-event-manager-venue-dashboard', EVENT_MANAGER_PLUGIN_URL . '/assets/js/venue-dashboard.min.js', array('jquery'), EVENT_MANAGER_VERSION, true);
wp_localize_script('wp-event-manager-venue-dashboard', 'event_manager_venue_dashboard', array(
'i18n_btnOkLabel' => __('Delete', 'wp-event-manager'),
'i18n_btnCancelLabel' => __('Cancel', 'wp-event-manager'),
'i18n_confirm_delete' => __('Are you sure you want to delete this venue?', 'wp-event-manager')
));
// Use for organizer
wp_register_script('wp-event-manager-organizer', EVENT_MANAGER_PLUGIN_URL . '/assets/js/organizer.min.js', array('jquery','wp-event-manager-common'), EVENT_MANAGER_VERSION, true);
wp_localize_script('wp-event-manager-organizer', 'event_manager_organizer', array(
'i18n_upcomingEventsTitle' => __('Upcoming Events', 'wp-event-manager'),
'i18n_pastEventsTitle' => __('Past Events', 'wp-event-manager'),
'i18n_currentEventsTitle' => __('Current Events', 'wp-event-manager')
));
// Use for venue
wp_register_script('wp-event-manager-venue', EVENT_MANAGER_PLUGIN_URL . '/assets/js/venue.min.js', array('jquery','wp-event-manager-common'), EVENT_MANAGER_VERSION, true);
wp_localize_script('wp-event-manager-venue', 'event_manager_venue', array(
'i18n_upcomingEventsTitle' => __('Upcoming Events', 'wp-event-manager'),
'i18n_pastEventsTitle' => __('Past Events', 'wp-event-manager'),
'i18n_currentEventsTitle' => __('Current Events', 'wp-event-manager')
));
// Use for registration
wp_register_script('wp-event-manager-event-registration', EVENT_MANAGER_PLUGIN_URL . '/assets/js/event-registration.min.js', array('jquery'), EVENT_MANAGER_VERSION, true);
wp_enqueue_style('wp-event-manager-jquery-ui-css', EVENT_MANAGER_PLUGIN_URL . '/assets/js/jquery-ui/jquery-ui.css');
wp_enqueue_style('wp-event-manager-jquery-timepicker-css', EVENT_MANAGER_PLUGIN_URL . '/assets/js/jquery-timepicker/jquery.timepicker.min.css');
wp_register_script('wp-event-manager-jquery-timepicker', EVENT_MANAGER_PLUGIN_URL. '/assets/js/jquery-timepicker/jquery.timepicker.min.js', array('jquery' ,'jquery-ui-core'), EVENT_MANAGER_VERSION, true);
wp_enqueue_script('wp-event-manager-jquery-timepicker');
wp_register_script('wp-event-manager-slick-script', EVENT_MANAGER_PLUGIN_URL . '/assets/js/slick/slick.min.js', array('jquery'));
wp_register_style('wp-event-manager-slick-style', EVENT_MANAGER_PLUGIN_URL . '/assets/js/slick/slick.css' , array());
wp_register_style('wp-event-manager-grid-style', EVENT_MANAGER_PLUGIN_URL . '/assets/css/wpem-grid.min.css');
wp_register_style('wp-event-manager-font-style', EVENT_MANAGER_PLUGIN_URL . '/assets/fonts/style.css');
wp_enqueue_style('wp-event-manager-grid-style');
wp_enqueue_style('wp-event-manager-font-style');
}
/**
* Cleanup event posting cookies.
* @since 1.0.0
*/
public function cleanup_event_posting_cookies() {
if(isset($_COOKIE['wp-event-manager-submitting-event-id'])) {
setcookie('wp-event-manager-submitting-event-id', '', 0, COOKIEPATH, COOKIE_DOMAIN, false);
}
if(isset($_COOKIE['wp-event-manager-submitting-event-key'])) {
setcookie('wp-event-manager-submitting-event-key', '', 0, COOKIEPATH, COOKIE_DOMAIN, false);
}
}
/**
* Check cron status.
* @since 1.0.0
**/
public function check_schedule_crons(){
if(!wp_next_scheduled('event_manager_check_for_expired_events')) {
wp_schedule_event(time(), 'hourly', 'event_manager_check_for_expired_events');
}
if(!wp_next_scheduled('event_manager_delete_old_previews')) {
wp_schedule_event(time(), 'daily', 'event_manager_delete_old_previews');
}
if(!wp_next_scheduled('event_manager_clear_expired_transients')) {
wp_schedule_event(time(), 'twicedaily', 'event_manager_clear_expired_transients');
}
}
/**
* Restrict access to the dashboard for non-organizer and non-administrator users.
*
* This function checks if the current user has the 'organizer' or 'administrator' role.
* If the user lacks both capabilities, an informational message is displayed,
* and further access to the dashboard is restricted.
*
* @return void
*/
public function wpem_restrict_non_organizer_access_to_dashboard() {
if ( is_user_logged_in() ) {
if (!current_user_can('organizer') && !current_user_can('administrator')) {
?>
<p class="account-sign-in wpem-alert wpem-alert-info">
<?php
esc_html_e('You do not have permission to manage this dashboard.', 'wp-event-manager'); ?>
</p>
<?php
exit;
}
}
}
}
/**
* Create link on plugin page for event manager plugin settings.
*/
function add_plugin_page_event_manager_settings_link($links) {
$links[] = '<a href="' .
admin_url('edit.php?post_type=event_listing&page=event-manager-settings') .
'">' . __('Settings', 'wp-event-manager') . '</a>';
return $links;
}
add_filter('plugin_action_links_'.plugin_basename(__FILE__), 'add_plugin_page_event_manager_settings_link');
/**
* Main instance of WP Event Manager.
*
* Returns the main instance of WP Event Manager to prevent the need to use globals.
*
* @since 2.5
* @return WP_Event_Manager
*/
function WPEM() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName
return WP_Event_Manager::instance();
}
$GLOBALS['event_manager'] = WPEM();