my-calendar-install.php
22.8 KB
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
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
<?php
/**
* Installation process. Create tables, default options, etc.
*
* @category Core
* @package My Calendar
* @author Joe Dolson
* @license GPLv2 or later
* @link https://www.joedolson.com/my-calendar/
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Default settings for widgets.
*
* @return array
*/
function mc_widget_defaults() {
$default_template = '<strong>{timerange after=", "}{daterange}</strong> – {linking_title}';
$defaults = array(
'upcoming' => array(
'type' => 'event',
'before' => 0,
'after' => 5,
'template' => $default_template,
'category' => '',
'text' => '',
'title' => 'Upcoming Events',
),
'today' => array(
'template' => $default_template,
'category' => '',
'title' => 'Today\'s Events',
'text' => '',
),
);
/**
* Customize the default values used for Upcoming and Today's events widgets.
*
* @hook mc_widget_defaults
*
* @param {array} $defaults Array of values used to set up upcoming and today's events lists in widgets.
*
* @return {array}
*/
return apply_filters( 'mc_widget_defaults', $defaults );
}
/**
* Define variables to be saved in settings. (Formerly globals.)
*
* @param string $data Type of data to return.
*
* @return array
*/
function mc_globals( $data = 'all' ) {
$grid_template = '
<span class="event-time value-title">{time}{endtime before="<span class=\'time-separator\'> - </span><span class=\'end-time\'>" after="</span>"}</span>
{image before="<div class=\'mc-event-image\'>" after="</div>"}
<div class="sub-details">
{hcard before="<div class=\'mc-location\'>" after="</div>"}
{excerpt before="<div class=\'mc-excerpt\'>" after="</div>"}
</div>';
$single_template = '
<span class="event-time value-title" title="{dtstart}">{time}<span class="time-separator"> - </span><span class="end-time value-title" title="{dtend}">{endtime}</span></span>
{image before="<div class=\'mc-event-image\'>" after="</div>"}
<div class="event-data">
{runtime before="<p class=\'mc-runtime\'>" after="</p>"}
{categories before="<p class=\'mc-categories\'>" after="</p>"}
</div>
<div class="sub-details">
{hcard before="<div class=\'mc-location\'>" after="</div>"}
{description before="<div class=\'mc-description\'>" after="</div>"}
{map before="<div class=\'mc-map\'>" after="</div>"}
</div>';
if ( 'templates' === $data ) {
$templates = array(
'grid_template' => addslashes( $grid_template ),
'list_template' => addslashes( $grid_template ),
'mini_template' => addslashes( $grid_template ),
'single_template' => addslashes( $single_template ),
);
return $templates;
}
global $wpdb;
$charset_collate = $wpdb->get_charset_collate();
$event_fifth_week = ( mc_no_fifth_week() ) ? 1 : 0;
$initial_db = 'CREATE TABLE ' . my_calendar_table() . " (
event_id INT(11) NOT NULL AUTO_INCREMENT,
event_begin DATE NOT NULL,
event_end DATE NOT NULL,
event_title VARCHAR(255) NOT NULL,
event_desc TEXT NOT NULL,
event_short TEXT NOT NULL,
event_registration TEXT NOT NULL,
event_tickets VARCHAR(255) NOT NULL,
event_time TIME,
event_endtime TIME,
event_recur CHAR(3),
event_repeats TEXT,
event_status INT(1) NOT NULL DEFAULT '1',
event_author BIGINT(20) UNSIGNED,
event_host BIGINT(20) UNSIGNED,
event_category BIGINT(20) UNSIGNED NOT NULL DEFAULT '1',
event_link TEXT,
event_post BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
event_link_expires TINYINT(1) NOT NULL,
event_location BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
event_label VARCHAR(255) NOT NULL,
event_street VARCHAR(255) NOT NULL,
event_street2 VARCHAR(255) NOT NULL,
event_city VARCHAR(255) NOT NULL,
event_state VARCHAR(255) NOT NULL,
event_postcode VARCHAR(10) NOT NULL,
event_region VARCHAR(255) NOT NULL,
event_country VARCHAR(255) NOT NULL,
event_url TEXT,
event_longitude FLOAT(10,6) NOT NULL DEFAULT '0',
event_latitude FLOAT(10,6) NOT NULL DEFAULT '0',
event_zoom INT(2) NOT NULL DEFAULT '14',
event_phone VARCHAR(32) NOT NULL,
event_phone2 VARCHAR(32) NOT NULL,
event_access TEXT,
event_group_id INT(11) NOT NULL DEFAULT '0',
event_span INT(1) NOT NULL DEFAULT '0',
event_approved INT(1) NOT NULL DEFAULT '1',
event_flagged INT(1) NOT NULL DEFAULT '0',
event_hide_end INT(1) NOT NULL DEFAULT '0',
event_holiday INT(1) NOT NULL DEFAULT '0',
event_fifth_week INT(1) NOT NULL DEFAULT '$event_fifth_week',
event_image TEXT,
event_added TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (event_id),
KEY event_category (event_category)
) $charset_collate;";
$initial_occur_db = 'CREATE TABLE ' . my_calendar_event_table() . " (
occur_id INT(11) NOT NULL AUTO_INCREMENT,
occur_event_id INT(11) NOT NULL,
occur_begin DATETIME NOT NULL,
occur_end DATETIME NOT NULL,
occur_group_id INT(11) NOT NULL DEFAULT '0',
PRIMARY KEY (occur_id),
KEY occur_event_id (occur_event_id)
) $charset_collate;";
$initial_cat_db = 'CREATE TABLE ' . my_calendar_categories_table() . " (
category_id INT(11) NOT NULL AUTO_INCREMENT,
category_name VARCHAR(255) NOT NULL,
category_color VARCHAR(7) NOT NULL,
category_icon VARCHAR(128) NOT NULL,
category_private INT(1) NOT NULL DEFAULT '0',
category_term INT(11) NOT NULL DEFAULT '0',
PRIMARY KEY (category_id)
) $charset_collate;";
$initial_loc_rel_db = 'CREATE TABLE ' . my_calendar_location_relationships_table() . " (
relationship_id INT(11) NOT NULL AUTO_INCREMENT,
location_id INT(11) NOT NULL,
post_id INT(11) NOT NULL DEFAULT '1',
PRIMARY KEY (relationship_id),
KEY location_id (location_id)
) $charset_collate;";
$initial_rel_db = 'CREATE TABLE ' . my_calendar_category_relationships_table() . " (
relationship_id INT(11) NOT NULL AUTO_INCREMENT,
event_id INT(11) NOT NULL,
category_id INT(11) NOT NULL DEFAULT '1',
PRIMARY KEY (relationship_id),
KEY event_id (event_id)
) $charset_collate;";
$initial_loc_db = 'CREATE TABLE ' . my_calendar_locations_table() . " (
location_id INT(11) NOT NULL AUTO_INCREMENT,
location_label VARCHAR(255) NOT NULL,
location_street VARCHAR(255) NOT NULL,
location_street2 VARCHAR(255) NOT NULL,
location_city VARCHAR(255) NOT NULL,
location_state VARCHAR(255) NOT NULL,
location_postcode VARCHAR(10) NOT NULL,
location_region VARCHAR(255) NOT NULL,
location_url TEXT,
location_country VARCHAR(255) NOT NULL,
location_longitude FLOAT(10,6) NOT NULL DEFAULT '0',
location_latitude FLOAT(10,6) NOT NULL DEFAULT '0',
location_zoom INT(2) NOT NULL DEFAULT '14',
location_phone VARCHAR(32) NOT NULL,
location_phone2 VARCHAR(32) NOT NULL,
location_access TEXT,
PRIMARY KEY (location_id)
) $charset_collate;";
$globals = array(
'initial_db' => $initial_db,
'initial_occur_db' => $initial_occur_db,
'initial_rel_db' => $initial_rel_db,
'initial_loc_db' => $initial_loc_db,
'initial_loc_rel_db' => $initial_loc_rel_db,
'initial_cat_db' => $initial_cat_db,
'grid_template' => addslashes( $grid_template ),
'list_template' => addslashes( $grid_template ),
'mini_template' => addslashes( $grid_template ),
'single_template' => addslashes( $single_template ),
);
return $globals;
}
/**
* Create demo content for new installs.
*/
function mc_create_demo_content() {
global $wpdb;
// If site has no categories, this is a new install.
$categories = $wpdb->get_results( 'SELECT category_id FROM ' . my_calendar_categories_table() ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
if ( empty( $categories ) ) {
// Insert a category.
mc_create_category(
array(
'category_name' => 'General',
'category_color' => '#243f82',
'category_icon' => 'event.svg',
)
);
// Insert a location.
$access = array( 1, 2, 3, 4, 6, 8, 9 );
$add = array(
'location_label' => 'Demo: Minnesota Orchestra',
'location_street' => '1111 Nicollet Mall',
'location_street2' => '',
'location_city' => 'Minneapolis',
'location_state' => 'MN',
'location_postcode' => '55403',
'location_region' => '',
'location_country' => 'United States',
'location_url' => 'https://www.minnesotaorchestra.org',
'location_latitude' => '44.9722',
'location_longitude' => '-93.2749',
'location_zoom' => 16,
'location_phone' => '612-371-5600',
'location_phone2' => '',
'location_access' => serialize( $access ),
);
$results = mc_insert_location( $add );
/**
* Executed an action when the demo location is saved at installation.
*
* @hook mc_save_location
*
* @param {int|false} $results Result of database insertion. Row ID or false.
* @param {array} $add Array of location parameters to add.
* @param {array} $add Demo location array.
*/
do_action( 'mc_save_location', $results, $add, $add );
// Insert an event.
$submit = array(
// Begin strings.
'event_begin' => date( 'Y-m-d', strtotime( '+1 day' ) ), // phpcs:ignore WordPress.DateTime.RestrictedFunctions.date_date
'event_end' => date( 'Y-m-d', strtotime( '+1 day' ) ), // phpcs:ignore WordPress.DateTime.RestrictedFunctions.date_date
'event_title' => 'Demo: Florence Price: Symphony No. 3 in c minor',
'event_desc' => "<p>Florence Price's <a href='https://en.wikipedia.org/wiki/Symphony_No._3_(Price)'>Symphony No. 3</a> was commissioned by the Works Progress Administration's <a href='https://en.wikipedia.org/wiki/Federal_Music_Project'>Federal Music Project</a> during the height of the Great Depression. It was first performed at the Detroit Institute of Arts on November 6, 1940, by the Detroit Civic Orchestra under the conductor Valter Poole.</p><p>The composition is Price's third symphony, following her Symphony in E minor—the first symphony by a black woman to be performed by a major American orchestra—and her lost Symphony No. 2.</p>",
'event_short' => "Florence Price's Symphony No.3 was first performed on November 6th, 1940. It was Ms. Price's third symphony, following her lost Symphony No. 2",
'event_time' => '19:30:00',
'event_endtime' => '21:00:00',
'event_link' => 'https://www.youtube.com/watch?v=1jgJ1OkjnaI&list=OLAK5uy_lKldgbFTYBDa7WN6jf2ubB595wncDU7yc&index=2',
'event_label' => '',
'event_street' => '',
'event_street2' => '',
'event_city' => '',
'event_state' => '',
'event_postcode' => '',
'event_region' => '',
'event_country' => '',
'event_url' => '',
'event_recur' => 'S1',
'event_image' => plugins_url( '/images/demo/event.jpg', __FILE__ ),
'event_phone' => '',
'event_phone2' => '',
'event_access' => '',
'event_tickets' => '',
'event_registration' => '',
'event_repeats' => '',
// Begin integers.
'event_author' => wp_get_current_user()->ID,
'event_category' => 1,
'event_link_expires' => 0,
'event_zoom' => 16,
'event_approved' => 1,
'event_host' => wp_get_current_user()->ID,
'event_flagged' => 0,
'event_fifth_week' => 0,
'event_holiday' => 0,
'event_group_id' => 1,
'event_span' => 0,
'event_hide_end' => 0,
// Begin floats.
'event_longitude' => '',
'event_latitude' => '',
// Array: removed before DB insertion.
'event_categories' => array( 1 ),
);
$event = array( true, false, $submit, false );
$response = my_calendar_save( 'add', $event );
$event_id = $response['event_id'];
mc_update_event( 'event_location', (int) $results, $event_id );
$e = mc_get_first_event( $event_id );
$post_id = $e->event_post;
$image = media_sideload_image( plugins_url( '/images/demo/event.jpg', __FILE__ ), $post_id, null, 'id' );
set_post_thumbnail( $post_id, $image );
}
}
/**
* Get template values.
*/
function mc_template_settings() {
$globals = mc_globals( 'templates' );
$templates = array(
'title' => '{time}: {title}',
'title_list' => '{title}',
'title_solo' => '{title}',
'link' => '', // Empty because usage has a fallback value.
'grid' => $globals['grid_template'],
'list' => $globals['list_template'],
'mini' => $globals['mini_template'],
'details' => $globals['single_template'],
'label' => '', // Empty because usage has a fallback value.
);
return $templates;
}
/**
* Fetch My Calendar's default settings array.
*
* @return array
*/
function mc_default_options() {
$options = array(
'display_single' => array( 'ical', 'address', 'gcal', 'description', 'image', 'tickets', 'access', 'link', 'gmap_link' ),
'display_main' => array( 'address', 'excerpt', 'image', 'tickets', 'access', 'gmap_link', 'more' ),
'display_mini' => array( 'excerpt', 'image', 'more' ),
'use_permalinks' => 'true',
'use_styles' => 'false',
'show_months' => '1',
'calendar_javascript' => '0',
'list_javascript' => '0',
'mini_javascript' => '0',
'ajax_javascript' => '0',
'show_js' => '',
'notime_text' => '',
'hide_icons' => 'true',
'event_link_expires' => 'false',
'apply_color' => 'background',
'input_options' => mc_input_defaults(),
'input_options_administrators' => 'false',
'default_admin_view' => 'list',
'event_mail' => 'false',
'event_mail_to' => get_bloginfo( 'admin_email' ),
'event_mail_from' => get_bloginfo( 'admin_email' ),
'event_mail_subject' => '',
'event_mail_message' => '',
'event_mail_bcc' => '',
'html_email' => 'true',
'week_format' => '',
'date_format' => '',
'time_format' => '',
'templates' => mc_template_settings(),
'css_file' => 'twentytwentytwo.css',
'style_vars' => array(
'--primary-dark' => '#313233',
'--primary-light' => '#fff',
'--secondary-light' => '#fff',
'--secondary-dark' => '#000',
'--highlight-dark' => '#666',
'--highlight-light' => '#efefef',
),
'show_weekends' => 'true',
'convert' => 'true',
'topnav' => 'toggle,timeframe,jump,nav',
'bottomnav' => 'key,print',
'default_direction' => 'DESC',
'remote' => 'false',
'gmap_api_key' => '',
'uri' => '',
'uri_id' => '',
'open_uri' => '',
'use_permalinks' => 'true',
'drop_tables' => '',
'drop_settings' => '',
'api_enabled' => '',
'default_sort' => '',
'current_table' => '',
'open_day_uri' => '',
'mini_uri' => '',
'show_list_info' => '',
'show_list_events' => '',
'event_title_template' => '',
'heading_text' => '',
'notime_text' => '',
'hosted_by' => '',
'posted_by' => '',
'buy_tickets' => '',
'event_accessibility' => '',
'view_full' => '',
'week_caption' => '',
'next_events' => '',
'previous_events' => '',
'today_events' => '',
'caption' => '',
'month_format' => '',
'time_format' => '',
'location_controls' => '',
'cpt_base' => 'mc-events',
'location_cpt_base' => 'mc-locations',
'uri_query' => '',
'default_category' => '',
'skip_holidays_category' => '',
'hide_icons' => '',
'use_list_template' => '',
'use_mini_template' => '',
'use_details_template' => '',
'use_grid_template' => '',
'migrated' => '',
'list_link_titles' => 'true',
'default_location' => '',
'hide_past_dates' => 'false',
'map_service' => 'google',
);
/**
* Filter the default values for My Calendar settings.
*
* @hook mc_default_options
*
* @param {array} $options Array of My Calendar settings.
*
* @return {array}
*/
return apply_filters( 'mc_default_options', $options );
}
/**
* Save default settings.
*/
function mc_default_settings() {
delete_option( 'mc_uninstalled' );
$globals = mc_globals();
$options = mc_default_options();
add_option( 'my_calendar_options', $options );
add_site_option( 'mc_multisite', '0' );
mc_add_roles();
$has_uri = mc_locate_calendar();
if ( false === $has_uri['response'] ) {
// if mc_locate_calendar returns a string, no valid URI was found.
$slug = sanitize_title( __( 'My Calendar', 'my-calendar' ) );
mc_generate_calendar_page( $slug );
}
require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
dbDelta( $globals['initial_db'] );
dbDelta( $globals['initial_occur_db'] );
dbDelta( $globals['initial_cat_db'] );
dbDelta( $globals['initial_rel_db'] );
dbDelta( $globals['initial_loc_db'] );
dbDelta( $globals['initial_loc_rel_db'] );
}
/**
* Create new calendar page
*
* @param string $slug Intended page name.
*
* @return int $post_ID for new page or previously existing page with same name.
*/
function mc_generate_calendar_page( $slug ) {
global $current_user;
$current_user = wp_get_current_user();
if ( ! get_page_by_path( $slug ) ) {
$page = array(
'post_title' => __( 'My Calendar', 'my-calendar' ),
'post_status' => 'publish',
'post_type' => 'page',
'post_author' => $current_user->ID,
'ping_status' => 'closed',
'post_content' => '<!-- wp:shortcode -->[my_calendar id="my-calendar"]<!-- /wp:shortcode -->',
);
$post_ID = wp_insert_post( $page );
$post_slug = wp_unique_post_slug( $slug, $post_ID, 'publish', 'page', 0 );
wp_update_post(
array(
'ID' => $post_ID,
'post_name' => $post_slug,
)
);
} else {
$post = get_page_by_path( $slug );
$post_ID = $post->ID;
}
mc_update_option( 'uri', get_permalink( $post_ID ) );
mc_update_option( 'uri_id', $post_ID );
return $post_ID;
}
/**
* See whether there are importable calendars present.
*/
function mc_check_imports() {
$output = '';
if ( 'true' !== get_option( 'ko_calendar_imported' ) ) {
if ( function_exists( 'check_calendar' ) ) {
$output .= "
<div id='message' class='updated'>
<p>" . __( 'My Calendar has identified that you have the Calendar plugin by Kieran O\'Shea installed. You can import those events and categories into the My Calendar database. Would you like to import these events?', 'my-calendar' ) . '</p>
<form method="post" action="' . admin_url( 'admin.php?page=my-calendar-config' ) . '">
<div>
<input type="hidden" name="_wpnonce" value="' . wp_create_nonce( 'my-calendar-nonce' ) . '" />
</div>
<div>
<input type="hidden" name="import" value="true"/>
<input type="submit" value="' . __( 'Import from Calendar', 'my-calendar' ) . '" name="import-calendar" class="button-primary"/>
</div>
</form>
<p>' . __( 'Although it is possible that this import could fail to import your events correctly, it should not have any impact on your existing Calendar database.', 'my-calendar' ) . '</p>
</div>';
}
}
echo $output;
}
/**
* Transition event categories to category relationships
*
* @since 3.0.0
*/
function mc_transition_categories() {
global $wpdb;
$results = $wpdb->get_results( 'SELECT event_id, event_category FROM ' . my_calendar_table() ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
foreach ( $results as $result ) {
$event_id = $result->event_id;
$category = $result->event_category;
$wpdb->insert(
my_calendar_category_relationships_table(),
array(
'event_id' => $event_id,
'category_id' => $category,
),
array( '%d', '%d' )
);
}
}
/**
* Transition location relationships into own table.
*
* @param int $location_id Location ID from location table.
* @param int $location_post Post ID from posts table.
*
* @since 3.3.0
*/
function mc_transition_location( $location_id, $location_post ) {
global $wpdb;
if ( $location_post ) {
$wpdb->insert(
my_calendar_location_relationships_table(),
array(
'location_id' => $location_id,
'post_id' => $location_post,
),
array( '%d', '%d' )
);
delete_post_meta( $location_post, '_mc_location_id' );
}
}
/**
* Make a copy of modified CSS files and restore.
*
* @param string $source Source file.
* @param string $dest Destination file.
* @param string $parent Parent directory. Optional.
*
* @return boolean.
*/
function my_calendar_copyr( $source, $dest, $parent = '' ) {
if ( ! WP_Filesystem() ) {
exit;
}
global $wp_filesystem;
if ( ! file_exists( $source ) ) {
return false;
}
// If saving to a custom subdirectory, verify that parent directory exists.
if ( $parent && ! is_dir( $parent ) ) {
$wp_filesystem->mkdir( $parent );
}
if ( ! is_dir( $dest ) ) {
$wp_filesystem->mkdir( $dest );
}
// Copy directory into backup location using WP_Filesystem.
copy_dir( $source, $dest );
return true;
}
/**
* Backup styles and icons.
*
* @param string $process current process.
* @param array $plugin Current plugin.
*/
function my_calendar_backup( $process, $plugin ) {
if ( isset( $plugin['plugin'] ) && 'my-calendar/my-calendar.php' === $plugin['plugin'] ) {
$parent = plugin_dir_path( __DIR__ ) . '/my-calendar-custom/';
$to = plugin_dir_path( __DIR__ ) . '/my-calendar-custom/backup/';
$from = plugin_dir_path( __FILE__ ) . '/styles/';
my_calendar_copyr( $from, $to, $parent );
}
}
/**
* Restore styles and icons.
*
* @param string $process current process.
* @param array $plugin Current plugin.
*/
function my_calendar_recover( $process, $plugin ) {
if ( isset( $plugin['plugin'] ) && 'my-calendar/my-calendar.php' === $plugin['plugin'] ) {
$from = plugin_dir_path( __DIR__ ) . '/my-calendar-custom/backup/';
$to = plugin_dir_path( __FILE__ ) . '/styles/';
my_calendar_copyr( $from, $to );
}
}
add_filter( 'upgrader_pre_install', 'my_calendar_backup', 10, 2 );
add_filter( 'upgrader_post_install', 'my_calendar_recover', 10, 2 );