C:\xampp\htdocs\landing\wp-content\updraft\plugins-old\updraftplus\includes\class-commands.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
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
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
<?php

if (!defined('UPDRAFTPLUS_DIR')) die('No access.');

/*
    - A container for all the remote commands implemented. Commands map exactly onto method names (and hence this class should not implement anything else, beyond the constructor, and private methods)
    - Return format is either to return data (boolean, string, array), or an WP_Error object
    Commands are not allowed to begin with an underscore. So, any private methods can be prefixed with an underscore.
    TODO: Many of these just verify input, and then call back into a relevant method in UpdraftPlus_Admin. Once all commands have been ported over to go via this class, those methods in UpdraftPlus_Admin can generally be folded into the relevant method in here, and removed from UpdraftPlus_Admin. (Since this class is intended to become the official way of performing actions). As a bonus, we then won't need so much _load_ud(_admin) boilerplate.
*/

if (class_exists('UpdraftPlus_Commands')) return;

class 
UpdraftPlus_Commands {

    private 
$_uc_helper;

    
/**
     * Constructor
     *
     * @param Class $uc_helper The 'helper' needs to provide the method _updraftplus_background_operation_started
     */
    
public function __construct($uc_helper) {
        
$this->_uc_helper $uc_helper;
    }

    
/**
     * Get the Advanced Tools HTMl and return to Central
     *
     * @param  string $options Options for advanced settings
     * @return string
     */
    
public function get_advanced_settings($options) {
        
// load global updraftplus and admin
        
if (false === ($updraftplus_admin $this->_load_ud_admin())) return new WP_Error('no_updraftplus');
        if (
false === ($updraftplus $this->_load_ud())) return new WP_Error('no_updraftplus');// phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable

        
$html $updraftplus_admin->settings_advanced_tools(true, array('options' => $options));
        
        return 
$html;
    }

    public function 
get_download_status($items) {
        
// load global updraftplus and admin
        
if (false === ($updraftplus_admin $this->_load_ud_admin())) return new WP_Error('no_updraftplus');
        
        if (!
UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');
    
        if (!
is_array($items)) $items = array();

        return 
$updraftplus_admin->get_download_statuses($items);
    
    }
    
    
/**
     * Begin a download process
     *
     * @param Array $downloader_params - download parameters (findex, type, timestamp, stage)
     *
     * @return Array - as from UpdraftPlus_Admin::do_updraft_download_backup() (with 'request' key added, with value $downloader_params)
     */
    
public function downloader($downloader_params) {

        if (
false === ($updraftplus_admin $this->_load_ud_admin())) return new WP_Error('no_updraftplus');
        
        if (!
UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');
    
        
$findex $downloader_params['findex'];
        
$type $downloader_params['type'];
        
$timestamp $downloader_params['timestamp'];
        
// Valid stages: 2='spool the data'|'delete'='delete local copy'|anything else='make sure it is present'
        
$stage = empty($downloader_params['stage']) ? false $downloader_params['stage'];
    
        
// This may, or may not, return, depending upon whether the files are already downloaded
        // The response is usually an array with key 'result', and values deleted|downloaded|needs_download|download_failed
        
$response $updraftplus_admin->do_updraft_download_backup($findex$type$timestamp$stage, array($this->_uc_helper'_updraftplus_background_operation_started'));
    
        if (
is_array($response)) {
            
$response['request'] = $downloader_params;
        }
    
        return 
$response;
    }
    
    public function 
delete_downloaded($set_info) {
        
$set_info['stage'] = 'delete';
        return 
$this->downloader($set_info);
    }
    
    
/**
     * Get backup progress (as HTML) for a particular backup
     *
     * @param Array $params - should have a key 'job_id' with corresponding value
     *
     * @return String - the HTML
     */
    
public function backup_progress($params) {
    
        if (
false === ($updraftplus_admin $this->_load_ud_admin())) return new WP_Error('no_updraftplus');
        
        if (!
UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');
        
        
$request = array(
            
'thisjobonly' => $params['job_id']
        );
        
$activejobs_list $updraftplus_admin->get_activejobs_list($request);
        
        return 
$activejobs_list;
    
    }
    
    public function 
backupnow($params) {
        
        if (
false === ($updraftplus_admin $this->_load_ud_admin()) || false === ($updraftplus $this->_load_ud())) return new WP_Error('no_updraftplus');
        
        if (!
UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');

        if (!empty(
$params['updraftplus_clone_backup'])) {
            
add_filter('updraft_backupnow_options', array($updraftplus'updraftplus_clone_backup_options'), 102);
            
add_filter('updraftplus_initial_jobdata', array($updraftplus'updraftplus_clone_backup_jobdata'), 103);
        }

        if (!empty(
$params['db_anon_all']) || !empty($params['db_anon_non_staff'])) {
            if (!
class_exists('UpdraftPlus_Anonymisation_Functions')) include_once(UPDRAFTPLUS_DIR.'/addons/anonymisation.php');

            
add_filter('updraft_backupnow_options''UpdraftPlus_Anonymisation_Functions::updraftplus_backup_anonymisation_options'102);
            
add_filter('updraftplus_initial_jobdata''UpdraftPlus_Anonymisation_Functions::updraftplus_backup_anonymisation_jobdata'102);
        }

        
$background_operation_started_method_name = empty($params['background_operation_started_method_name']) ? '_updraftplus_background_operation_started' $params['background_operation_started_method_name'];
        
$updraftplus_admin->request_backupnow($params, array($this->_uc_helper$background_operation_started_method_name));
        
        
// Control returns when the backup finished; but, the browser connection should have been closed before
        
die;
    }
    
    
/**
     * Mark a backup as "do not delete"
     *
     * @param array $params this is an array of parameters sent via ajax it can include the following:
     * backup_key - Integer - backup timestamp
     * always_keep - Boolean - "Always keep" value
     * @return array which contains rawbackup html
     */
    
public function always_keep_this_backup($params) {
        if (
false === ($updraftplus_admin $this->_load_ud_admin())) return new WP_Error('no_updraftplus');
        
$backup_key $params['backup_key'];
        
$backup_history UpdraftPlus_Backup_History::get_history();
        if (empty(
$params['always_keep'])) {
            unset(
$backup_history[$backup_key]['always_keep']);
        } else {
            
$backup_history[$backup_key]['always_keep'] = true;
        }
        
UpdraftPlus_Backup_History::save_history($backup_history);
        
$nonce $backup_history[$backup_key]['nonce'];
        
$rawbackup $updraftplus_admin->raw_backup_info($backup_history$backup_key$nonce);
        return array(
            
'rawbackup' => html_entity_decode($rawbackup),
        );
    }
    
    private function 
_load_ud() {
        global 
$updraftplus;
        return 
is_a($updraftplus'UpdraftPlus') ? $updraftplus false;
    }
    
    private function 
_load_ud_admin() {
        if (!
defined('UPDRAFTPLUS_DIR') || !is_file(UPDRAFTPLUS_DIR.'/admin.php')) return false;
        include_once(
UPDRAFTPLUS_DIR.'/admin.php');
        global 
$updraftplus_admin;
        return 
$updraftplus_admin;
    }
    
    public function 
get_log($job_id '') {

        if (
false === ($updraftplus_admin $this->_load_ud_admin())) return new WP_Error('no_updraftplus');
    
        if (!
UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');

        if (
'' != $job_id && !preg_match("/^[0-9a-f]{12}$/"$job_id)) return new WP_Error('updraftplus_permission_invalid_jobid');
        
        return 
$updraftplus_admin->fetch_log($job_id);
    
    }
    
    public function 
activejobs_delete($job_id) {
    
        if (
false === ($updraftplus_admin $this->_load_ud_admin())) return new WP_Error('no_updraftplus');

        if (!
UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');

        return 
$updraftplus_admin->activejobs_delete((string) $job_id);

    }
    
    public function 
deleteset($what) {
    
        if (
false === ($updraftplus_admin $this->_load_ud_admin()) || false === ($updraftplus $this->_load_ud())) return new WP_Error('no_updraftplus');// phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable

        
if (!UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');
    
        
$results $updraftplus_admin->delete_set($what);
    
        
$get_history_opts = isset($what['get_history_opts']) ? $what['get_history_opts'] : array();
    
        
$backup_history UpdraftPlus_Backup_History::get_history();
    
        
$results['history'] = $updraftplus_admin->settings_downloading_and_restoring($backup_historytrue$get_history_opts);

        
$results['backupnow_file_entities'] = apply_filters('updraftplus_backupnow_file_entities', array());
        
$results['modal_afterfileoptions'] = apply_filters('updraft_backupnow_modal_afterfileoptions''''');
        
        
$results['count_backups'] = count($backup_history);

        return 
$results;
    
    }
    
    
/**
     * Slightly misnamed - this doesn't always rescan, but it does always return the history status (possibly after a rescan)
     *
     * @param  Array|String $data - with keys 'operation' and 'debug'; or, if a string (backwards compatibility), just the value of the 'operation' key (with debug assumed as 0)
     *
     * @return Array - returns an array of history statuses
     */
    
public function rescan($data) {

        if (
false === ($updraftplus_admin $this->_load_ud_admin())) return new WP_Error('no_updraftplus');
        
        if (!
UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');
        
        
$backup_count 0;

        if (
is_array($data)) {
            
$operation = empty($data['operation']) ? '' $data['operation'];
            
$debug = !empty($data['debug']);
            
$backup_count = empty($data['backup_count']) ? $data['backup_count'];
        } else {
            
$operation $data;
            
$debug false;
        }
    
        
$remotescan = ('remotescan' == $operation);
        
$rescan = ($remotescan || 'rescan' == $operation);
        
        
$history_status $updraftplus_admin->get_history_status($rescan$remotescan$debug$backup_count);
        
$history_status['backupnow_file_entities'] = apply_filters('updraftplus_backupnow_file_entities', array());
        
$history_status['modal_afterfileoptions'] = apply_filters('updraft_backupnow_modal_afterfileoptions''''');

        return 
$history_status;
        
    }
    
    public function 
get_settings($options) {
        global 
$updraftplus;
        if (
false === ($updraftplus_admin $this->_load_ud_admin()) || false === ($updraftplus $this->_load_ud())) return new WP_Error('no_updraftplus');
        
        if (!
UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');
        
        
ob_start();
        
$updraftplus_admin->settings_formcontents($options);
        
$output ob_get_contents();
        
ob_end_clean();
        
        
$remote_storage_options_and_templates UpdraftPlus_Storage_Methods_Interface::get_remote_storage_options_and_templates();
        
        return array(
            
'settings' => $output,
            
'remote_storage_options' => $remote_storage_options_and_templates['options'],
            
'remote_storage_templates' => $remote_storage_options_and_templates['templates'],
            
'meta' => apply_filters('updraftplus_get_settings_meta', array()),
            
'updraftplus_version' => $updraftplus->version,
        );
        
    }
    
    
/**
     * Run a credentials test
     *
     * @param Array $test_data - test configuration
     *
     * @return WP_Error|Array - test results (keys: results, (optional)data), or an error
     */
    
public function test_storage_settings($test_data) {
    
        if (
false === ($updraftplus_admin $this->_load_ud_admin()) || false === ($updraftplus $this->_load_ud())) return new WP_Error('no_updraftplus');// phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
        
        
if (!UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');
    
        
$results $updraftplus_admin->do_credentials_test($test_datatrue);
    
        return 
$results;
    
    }
    
    
/**
     * Perform a connection test on a database
     *
     * @param Array $info - test parameters
     *
     * @return Array - test results
     */
    
public function extradb_testconnection($info) {
    
        if (
false === ($updraftplus_admin $this->_load_ud_admin()) || false === ($updraftplus $this->_load_ud())) return new WP_Error('no_updraftplus');// phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
        
        
if (!UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');
    
        
$results apply_filters('updraft_extradb_testconnection_go', array(), $info);
    
        return 
$results;
    
    }
    
    
/**
     * This method will make a call to the methods responsible for recounting the quota in the UpdraftVault account
     *
     * @param  array $params - an array of parameters such as a instance_id
     * @return string - the result of the call
     */
    
public function vault_recountquota($params = array()) {
        if (
false === ($updraftplus_admin $this->_load_ud_admin())) return new WP_Error('no_updraftplus');

        if (!
UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');
        
        
$instance_id = empty($params['instance_id']) ? '' $params['instance_id'];

        
$vault $updraftplus_admin->get_updraftvault($instance_id);

        return 
$vault->ajax_vault_recountquota(false);
    }
    
    
/**
     * This method will make a call to the methods responsible for creating a connection to UpdraftVault
     *
     * @param  array $credentials - an array of parameters such as the user credentials and instance_id
     * @return string - the result of the call
     */
    
public function vault_connect($credentials) {
    
        if (
false === ($updraftplus_admin $this->_load_ud_admin())) return new WP_Error('no_updraftplus');
        
        if (!
UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');

        
$instance_id = empty($credentials['instance_id']) ? '' $credentials['instance_id'];

        return 
$updraftplus_admin->get_updraftvault($instance_id)->ajax_vault_connect(false$credentials);
    
    }
    
    
/**
     * This method will make a call to the methods responsible for removing a connection to UpdraftVault
     *
     * @param array $params - an array of parameters such as a instance_id
     * @return string - the result of the call
     */
    
public function vault_disconnect($params = array()) {
    
        if (
false === ($updraftplus_admin $this->_load_ud_admin()) || false === ($updraftplus $this->_load_ud())) return new WP_Error('no_updraftplus');// phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
        
        
if (!UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');

        
$echo_results = empty($params['immediate_echo']) ? false true;

        
$instance_id = empty($params['instance_id']) ? '' $params['instance_id'];
        
        
$results = (array) $updraftplus_admin->get_updraftvault($instance_id)->ajax_vault_disconnect($echo_results);

        return 
$results;
    
    }
    
    
/**
     * A handler method to call the UpdraftPlus admin save settings method. It will check if the settings passed to it are in the format of a string if so it converts it to an array otherwise just pass the array
     *
     * @param  String/Array $settings Settings to be saved to UpdraftPlus either in the form of a string ready to be converted to an array or already an array ready to be passed to the save settings function in UpdraftPlus.
     * @return Array An Array response to be sent back
     */
    
public function save_settings($settings) {
    
        if (
false === ($updraftplus_admin $this->_load_ud_admin()) || false === ($updraftplus $this->_load_ud())) return new WP_Error('no_updraftplus');// phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
        
        
if (!UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');

        if (!empty(
$settings)) {

            if (
is_string($settings)) {
                
parse_str($settings$settings_as_array);
            } elseif (
is_array($settings)) {
                
$settings_as_array $settings;
            } else {
                return new 
WP_Error('invalid_settings');
            }
        }
        
        
$results $updraftplus_admin->save_settings($settings_as_array);

        return 
$results;
    
    }
    
    public function 
s3_newuser($data) {
        if (
false === ($updraftplus_admin $this->_load_ud_admin()) || false === ($updraftplus $this->_load_ud())) return new WP_Error('no_updraftplus');// phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
        
        
if (!UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');
        
$results apply_filters('updraft_s3_newuser_go', array(), $data);
        
        return 
$results;
    }
    
    public function 
cloudfiles_newuser($data) {
    
        global 
$updraftplus_addon_cloudfilesenhanced;
        if (!
is_a($updraftplus_addon_cloudfilesenhanced'UpdraftPlus_Addon_CloudFilesEnhanced')) {
            
$data = array('e' => 1'm' => sprintf(__('%s add-on not found''updraftplus'), 'Rackspace Cloud Files'));
        } else {
            
$data $updraftplus_addon_cloudfilesenhanced->create_api_user($data);
        }
        
        if (
=== $data['e']) {
            return 
$data;
        } else {
            return new 
WP_Error('error'''$data);
        }
    }
    
    
/**
     * Get an HTML fragment
     *
     * @param String|Array $fragment - what fragment to fetch. If an array, the fragment identifier is in 'fragment' (and 'data' is associated data)
     *
     * @return Array|WP_Error
     */
    
public function get_fragment($fragment) {
    
        if (
false === ($updraftplus_admin $this->_load_ud_admin()) || false === ($updraftplus $this->_load_ud())) return new WP_Error('no_updraftplus');
        
        if (!
UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');

        if (
is_array($fragment)) {
            
$data $fragment['data'];
            
$fragment $fragment['fragment'];
        }
        
        
$error false;
        
        switch (
$fragment) {
        
            case 
'last_backup_html':
                    
$output $updraftplus_admin->last_backup_html();
                break;
            
            case 
's3_new_api_user_form':
                
ob_start();
                
do_action('updraft_s3_print_new_api_user_form'false);
                
$output ob_get_contents();
                
ob_end_clean();
                break;
                
            case 
'cloudfiles_new_api_user_form':
                global 
$updraftplus_addon_cloudfilesenhanced;
                if (!
is_a($updraftplus_addon_cloudfilesenhanced'UpdraftPlus_Addon_CloudFilesEnhanced')) {
                        
$error true;
                        
$output 'cloudfiles_addon_not_found';
                } else {
                    
$output = array(
                        
'accounts' => $updraftplus_addon_cloudfilesenhanced->account_options(),
                        
'regions' => $updraftplus_addon_cloudfilesenhanced->region_options(),
                    );
                }
                break;
            
            case 
'backupnow_modal_contents':
                
$updraft_dir $updraftplus->backups_dir_location();
                if (!
UpdraftPlus_Filesystem_Functions::really_is_writable($updraft_dir)) {
                    
$output = array('error' => true'html' => __("The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."'updraftplus'));
                } else {
                    
$output = array('html' => $updraftplus_admin->backupnow_modal_contents(), 'backupnow_file_entities' => apply_filters('updraftplus_backupnow_file_entities', array()), 'incremental_installed' => apply_filters('updraftplus_incremental_addon_installed'false));
                }
                break;
            
            case 
'panel_download_and_restore':
                
$backup_history UpdraftPlus_Backup_History::get_history();
                
$output $updraftplus_admin->settings_downloading_and_restoring($backup_historytrue$data);
                break;
            
            case 
'disk_usage':
                
$output UpdraftPlus_Filesystem_Functions::get_disk_space_used($data);
                break;
            default:
                
// We just return a code - translation is done on the other side
                
$output 'ud_get_fragment_could_not_return';
                
$error true;
                break;
        }
        
        if (!
$error) {
            return array(
                
'output' => $output,
            );
        } else {
            return new 
WP_Error('get_fragment_error'''$output);
        }
        
    }
    
    
/**
     * This gets the http_get function from admin to grab information on a url
     *
     * @param  string $uri URL to be used
     * @return array returns response from specific URL
     */
    
public function http_get($uri) {
        if (
false === ($updraftplus_admin $this->_load_ud_admin())) return new WP_Error('no_updraftplus');

        if (empty(
$uri)) {
            return new 
WP_Error('error''''no_uri');
        }
        
        
$response $updraftplus_admin->http_get($urifalse);
        
$response_decode json_decode($response);

        if (isset(
$response_decode->e)) {
          return new 
WP_Error('error'''htmlspecialchars($response_decode->e));
        }

        return array(
'status' => $response_decode->code'response' => $response_decode->html_response);
    }

    
/**
     * This gets the http_get function from admin to grab cURL information on a url
     *
     * @param  string $uri URL to be used
     * @return array
     */
    
public function http_get_curl($uri) {
        if (
false === ($updraftplus_admin $this->_load_ud_admin())) return new WP_Error('no_updraftplus');

        if (empty(
$uri)) {
            return new 
WP_Error('error''''no_uri');
        }
        
        if (!
function_exists('curl_exec')) {
            return new 
WP_Error('error''''no_curl');
        }
        
        
$response_encode $updraftplus_admin->http_get($uritrue);
        
$response_decode json_decode($response_encode);

        
$response 'Curl Info: ' $response_decode->verb
                    
.'Response: ' $response_decode->response;

        if (
false === $response_decode->response) {
            return new 
WP_Error('error''', array(
                
'error' => htmlspecialchars($response_decode->e),
                
"status" => $response_decode->status,
                
"log" => htmlspecialchars($response_decode->verb)
            ));
        }
        
        return array(
            
'response'=> htmlspecialchars(substr($response02048)),
            
'status'=> $response_decode->status,
            
'log'=> htmlspecialchars($response_decode->verb)
        );
    }

    
/**
     * Display raw backup and file list
     *
     * @return string
     */
    
public function show_raw_backup_and_file_list() {
        if (
false === ($updraftplus_admin $this->_load_ud_admin())) return new WP_Error('no_updraftplus');

        
/*
            Need to remove the pre tags as the modal assumes a <pre> is for a new box.
            This cause issues specifically with fetch log events. Do this by passing true
            to the method show_raw_backups
         */
        
        
$response $updraftplus_admin->show_raw_backups(true);

        return 
$response['html'];
    }

    public function 
reset_site_id() {
        if (
false === ($updraftplus $this->_load_ud())) return new WP_Error('no_updraftplus');
        
delete_site_option('updraftplus-addons_siteid');
        return 
$updraftplus->siteid();
    }

    public function 
search_replace($query) {

        if (!
class_exists('UpdraftPlus_Addons_Migrator')) {
            return new 
WP_Error('error''''no_class_found');
        }
        
        global 
$updraftplus_addons_migrator;
        
        if (!
is_a($updraftplus_addons_migrator'UpdraftPlus_Addons_Migrator')) {
            return new 
WP_Error('error''no_object_found');
        }

        
$_POST $query;
        
        
ob_start();

        
do_action('updraftplus_adminaction_searchreplace'$query);
        
        
$response = array('log' => ob_get_clean());
        
        return 
$response;
    }

    public function 
change_lock_settings($data) {
        global 
$updraftplus_addon_lockadmin;
        
        if (!
class_exists('UpdraftPlus_Addon_LockAdmin')) {
            return new 
WP_Error('error''''no_class_found');
        }
        
        if (!
is_a($updraftplus_addon_lockadmin"UpdraftPlus_Addon_LockAdmin")) {
            return new 
WP_Error('error''''no_object_found');
        }

        
$session_length = empty($data["session_length"]) ? '' $data["session_length"];
        
$password         = empty($data["password"]) ? '' $data["password"];
        
$old_password     = empty($data["old_password"]) ? '' $data["old_password"];
        
$support_url     $data["support_url"];
        
        
$user wp_get_current_user();
        if (
== $user->ID) {
            return new 
WP_Error('no_user_found');
        }
        
        
$options $updraftplus_addon_lockadmin->return_opts();

        if (
$old_password == $options['password']) {
            
            
$options['password'] = (string) $password;
            
$options['support_url'] = (string) $support_url;
            
$options['session_length'] = (int) $session_length;
            
UpdraftPlus_Options::update_updraft_option('updraft_adminlocking'$options);
                        
            return 
"lock_changed";
        } else {
            return new 
WP_Error('error''''wrong_old_password');
        }
    }

    public function 
delete_key($key_id) {
        global 
$updraftcentral_main;

        if (!
is_a($updraftcentral_main'UpdraftCentral_Main')) {
            return new 
WP_Error('error''''UpdraftCentral_Main object not found');
        }
        
        
$response $updraftcentral_main->delete_key($key_id);
        return 
$response;
        
    }
    
    public function 
create_key($data) {
        global 
$updraftcentral_main;

        if (!
is_a($updraftcentral_main'UpdraftCentral_Main')) {
            return new 
WP_Error('error''''UpdraftCentral_Main object not found');
        }
        
        
$response call_user_func(array($updraftcentral_main'create_key'), $data);
        
        return 
$response;
    }
    
    public function 
fetch_log($data) {
        global 
$updraftcentral_main;

        if (!
is_a($updraftcentral_main'UpdraftCentral_Main')) {
            return new 
WP_Error('error''''UpdraftCentral_Main object not found');
        }
        
        
$response call_user_func(array($updraftcentral_main'get_log'), $data);
        return 
$response;
    }

    
/**
     * A handler method to call the UpdraftPlus admin auth_remote_method
     *
     * @param Array - $data It consists of below key elements:
     *                $remote_method - Remote storage service
     *                $instance_id - Remote storage instance id
     * @return Array An Array response to be sent back
     */
    
public function auth_remote_method($data) {
        if (
false === ($updraftplus_admin $this->_load_ud_admin()) || false === ($updraftplus $this->_load_ud())) return new WP_Error('no_updraftplus');// phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
        
if (!UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');
        
$response $updraftplus_admin->auth_remote_method($data);
        return 
$response;
    }

    
/**
     * A handler method to call the UpdraftPlus admin deauth_remote_method
     *
     * @param Array - $data It consists of below key elements:
     *                $remote_method - Remote storage service
     *                $instance_id - Remote storage instance id
     * @return Array An Array response to be sent back
     */
    
public function deauth_remote_method($data) {
        if (
false === ($updraftplus_admin $this->_load_ud_admin()) || false === ($updraftplus $this->_load_ud())) return new WP_Error('no_updraftplus');// phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
        
if (!UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');
        
$response $updraftplus_admin->deauth_remote_method($data);
        return 
$response;
    }

    
/**
     * A handler method to call the relevant remote storage manual authentication methods and return the authentication result
     *
     * @param array $data - an array of authentication data, normally includes the state and auth code
     *
     * @return array - an array response to be sent back to the frontend
     */
    
public function manual_remote_storage_authentication($data) {
        if (
false === ($updraftplus_admin $this->_load_ud_admin()) || false === ($updraftplus $this->_load_ud())) return new WP_Error('no_updraftplus');// phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable

        
$response = array(
            
'result' => 'success'
        
);

        
$method $data['method'];

        
$enabled_services UpdraftPlus_Storage_Methods_Interface::get_enabled_storage_objects_and_ids(array($method));
        
        if (empty(
$enabled_services[$method]['object']) || empty($enabled_services[$method]['instance_settings']) || !$enabled_services[$method]['object']->supports_feature('manual_authentication')) {
            
$response['result'] = 'error';
            
$response['data'] = __('Manual authentication is not available for this remote storage method''updraftplus') . '(' $method ')';
            return 
$response;
        }

        
$backup_obj $enabled_services[$method]['object'];

        
$auth_data json_decode(base64_decode($data['auth_data']), true);
        
$instance_id '';

        
$state = isset($auth_data['state']) ? urldecode($auth_data['state']) : '';
        
$code = isset($auth_data['code']) ? urldecode($auth_data['code']) : '';

        if (empty(
$state) || empty($code)) {
            
$response['result'] = 'error';
            
$response['data'] = __('Missing authentication data:''updraftplus') . " ({$state}) ({$code})";
            return 
$response;
        }

        if (
false !== strpos($state':')) {
            
$parts explode(':'$state);
            
$instance_id $parts[1];
        }

        if (empty(
$instance_id)) {
            
$response['result'] = 'error';
            
$response['data'] = __('Missing instance id:''updraftplus') . " ($state)";
            return 
$response;
        }

        if (isset(
$enabled_services[$method]['instance_settings'][$instance_id])) {
            
$opts $enabled_services[$method]['instance_settings'][$instance_id];
            
$backup_obj->set_options($optsfalse$instance_id);
        }

        
$result $backup_obj->complete_authentication($state$codetrue);
        
        
$response['data'] = $result;

        return 
$response;
    }
    
    
/**
     * A handler method to call the UpdraftPlus admin wipe settings method
     *
     * @return Array An Array response to be sent back
     */
    
public function wipe_settings() {
        if (
false === ($updraftplus_admin $this->_load_ud_admin())) return new WP_Error('no_updraftplus');
        
        if (!
UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');

        
// pass false to this method so that it does not remove the UpdraftCentral key
        
$response $updraftplus_admin->wipe_settings(false);

        return 
$response;
    }

    
/**
     * Retrieves backup information (next scheduled backups, last backup jobs and last log message)
     * for UpdraftCentral consumption
     *
     * @return Array An array containing the results of the backup information retrieval
     */
    
public function get_backup_info() {
        try {
            
            
// load global updraftplus admin
            
if (false === ($updraftplus_admin $this->_load_ud_admin())) return new WP_Error('no_updraftplus');

            
ob_start();
            
$updraftplus_admin->next_scheduled_backups_output();
            
$next_scheduled_backups ob_get_clean();

            
$response = array(
                
'next_scheduled_backups' => $next_scheduled_backups,
                
'last_backup_job' => $updraftplus_admin->last_backup_html(),
                
'last_log_message' => UpdraftPlus_Options::get_updraft_lastmessage()
            );

            
$updraft_last_backup UpdraftPlus_Options::get_updraft_option('updraft_last_backup'false);
            
$backup_history UpdraftPlus_Backup_History::get_history();
            
            if (
false !== $updraft_last_backup && !empty($backup_history)) {
                
$backup_nonce $updraft_last_backup['backup_nonce'];

                
$response['backup_nonce'] = $backup_nonce;
                
$response['log'] = $this->get_log($backup_nonce);
            }

        } catch (
Exception $e) {
            
$response = array('error' => true'message' => $e->getMessage());
        }

        return 
$response;
    }

    
/**
     * This method will check the connection status to UpdraftPlus.com using the submitted credentials and return the result of that check.
     *
     * @param  array $data - an array that contains the users UpdraftPlus.com credentials
     *
     * @return array       - an array with the result of the connection status
     */
    
public function updraftplus_com_login_submit($data) {
        if (
false === ($updraftplus_admin $this->_load_ud_admin()) || false === ($updraftplus $this->_load_ud())) return new WP_Error('no_updraftplus');// phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
        
        
global $updraftplus_addons2$updraftplus;

        
$options $updraftplus_addons2->get_option(UDADDONS2_SLUG.'_options');
        
$new_options $data['data'];
        
        
// Check if we can make a connection if we can then we don't want to reset the options in the case where the user has removed their password from the form
        
$result = !empty($options['email']) ? $updraftplus_addons2->connection_status() : false;
        
        if (
true !== $result) {
            
// We failed to make a connection so try the new options
            
$updraftplus_addons2->update_option(UDADDONS2_SLUG.'_options'$new_options);
            
$result $updraftplus_addons2->connection_status();
        }

        if (
true !== $result) {
            if (
is_wp_error($result)) {
                
$connection_errors = array();
                foreach (
$result->get_error_messages() as $msg) {
                    
$connection_errors[] = $msg;
                }
            } else {
                if (!empty(
$options['email']) && !empty($options['password'])) $connection_errors = array(__('An unknown error occurred when trying to connect to UpdraftPlus.Com''updraftplus'));
            }
            
$result false;
        }
        if (
$result && isset($new_options['auto_update'])) {
            
$updraftplus->set_automatic_updates($new_options['auto_update']);
        }
        if (
$result) {
            return array(
                
'success' => true
            
);
        } else {
            
// There was an error reset the options so that we don't get unwanted notices on the dashboard.
            
$updraftplus_addons2->update_option(UDADDONS2_SLUG.'_options', array('email' => '''password' => ''));

            return array(
                
'error' => true,
                
'message' => $connection_errors
            
);
        }
    }

    
/**
     * This function will add some needed filters in order to be able to send a local backup to remote storage it will then boot the backup process.
     *
     * @param array $data - data sent from the front end, it includes the backup timestamp and nonce
     *
     * @return array      - the response to be sent back to the front end
     */
    
public function upload_local_backup($data) {
        if (
false === ($updraftplus_admin $this->_load_ud_admin()) || false === ($updraftplus $this->_load_ud())) return new WP_Error('no_updraftplus');
        
        
add_filter('updraftplus_initial_jobdata', array($updraftplus_admin'upload_local_backup_jobdata'), 103);
        
add_filter('updraftplus_get_backup_file_basename_from_time', array($updraftplus_admin'upload_local_backup_name'), 103);
        
        
$background_operation_started_method_name = empty($data['background_operation_started_method_name']) ? '_updraftplus_background_operation_started' $data['background_operation_started_method_name'];

        
$msg = array(
            
'nonce' => $data['use_nonce'],
            
'm' => apply_filters('updraftplus_backupnow_start_message''<strong>'.__('Start backup''updraftplus').':</strong> '.htmlspecialchars(__('OK. You should soon see activity in the "Last log message" field below.''updraftplus')), $data['use_nonce'])
        );

        
$close_connection_callable = array($this->_uc_helper$background_operation_started_method_name);

        if (
is_callable($close_connection_callable)) {
            
call_user_func($close_connection_callable$msg);
        } else {
            
$updraftplus->close_browser_connection(json_encode($msg));
        }

        
do_action('updraft_backupnow_backup_all'apply_filters('updraft_backupnow_options'$data, array()));

        
// Control returns when the backup finished; but, the browser connection should have been closed before
        
die;
    }

    
/**
     * Pre-check before sending request and delegates login request to the appropriate service
     *
     * @param array $params - The submitted form data
     * @return string - the result of the call
     */
    
public function process_updraftcentral_login($params) {
        if (
false === ($updraftplus_admin $this->_load_ud_admin())) return new WP_Error('no_updraftplus');
        if (!
UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');

        return 
$updraftplus_admin->get_updraftcentral_cloud()->ajax_process_login($params);
    }

    
/**
     * Pre-check before sending request and delegates registration request to the appropriate service
     *
     * @param array $params - The submitted form data
     * @return string - the result of the call
     */
    
public function process_updraftcentral_registration($params) {
        if (
false === ($updraftplus_admin $this->_load_ud_admin())) return new WP_Error('no_updraftplus');
        if (!
UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');

        return 
$updraftplus_admin->get_updraftcentral_cloud()->ajax_process_registration($params);
    }

    
/**
     * Pre-check before sending request and delegates login request to the appropriate service
     *
     * @param array $params - The submitted form data
     * @return string - the result of the call
     */
    
public function process_updraftplus_clone_login($params) {
        if (
false === ($updraftplus_admin $this->_load_ud_admin()) || false === ($updraftplus $this->_load_ud())) return new WP_Error('no_updraftplus');
        if (!
UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');
        
        
$response $updraftplus->get_updraftplus_clone()->ajax_process_login($paramsfalse);

        if (isset(
$response['status']) && 'authenticated' == $response['status']) {
            
$tokens = isset($response['tokens']) ? $response['tokens'] : 0;
            
$content '<div class="updraftclone-main-row">';
            
$content .= '<div class="updraftclone-tokens">';
            
$content .= '<p>' __("Available temporary clone tokens:""updraftplus") . ' <span class="tokens-number">' esc_html($tokens) . '</span></p>';
            
$content .= '<p><a href="'.$updraftplus->get_url('buy-tokens').'">'.__('You can buy more temporary clone tokens here.''updraftplus').'</a></p>';
            
$content .= '</div>';
            
            if (
!= $response['tokens']) {
                
$is_vps_tester = !empty($response['is_vps_tester']);
                
$supported_wp_versions = isset($response['supported_wp_versions']) ? $response['supported_wp_versions'] : array();
                
$supported_packages = isset($response['supported_packages']) ? $response['supported_packages'] : array();
                
$supported_regions = isset($response['supported_regions']) ? $response['supported_regions'] : array();
                
$content .= '<div class="updraftclone_action_box">';
                
$content .= $updraftplus_admin->updraftplus_clone_ui_widget($is_vps_tester$supported_wp_versions$supported_packages$supported_regions);
                
$content .= '<p class="updraftplus_clone_status"></p>';
                
$content .= '<button id="updraft_migrate_createclone" class="button button-primary button-hero" data-clone_id="'.$response['clone_info']['id'].'" data-secret_token="'.$response['clone_info']['secret_token'].'">'__('Create clone''updraftplus') . '</button>';
                
$content .= '<span class="updraftplus_spinner spinner">' __('Processing''updraftplus') . '...</span><br>';
                
$content .= '<div id="ud_downloadstatus3"></div>';
                
$content .= '</div>';
            }
            
$content .= '</div>'// end .updraftclone-main-row

            
$content .= isset($response['clone_list']) ? '<div class="clone-list"><h3>'.__('Current clones''updraftplus').' - <a target="_blank" href="https://updraftplus.com/my-account/clones/">'.__('manage''updraftplus').'</a></h3>'.$response['clone_list'].'</div>' '';

            
$response['html'] = $content;
        }

        return 
$response;
    }

    
/**
     * This function sends the request to create the clone
     *
     * @param array $params - The submitted data
     * @return string - the result of the call
     */
    
public function process_updraftplus_clone_create($params) {
        if (
false === ($updraftplus_admin $this->_load_ud_admin()) || false === ($updraftplus $this->_load_ud())) return new WP_Error('no_updraftplus');
        if (!
UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');

        
$response $updraftplus->get_updraftplus_clone()->ajax_process_clone($params);
        
        if (!isset(
$response['status']) && 'success' != $response['status']) return $response;

        
$content '';
        
        if (isset(
$response['data'])) {
            
$tokens = isset($response['data']['tokens']) ? $response['data']['tokens'] : 0;
            
$url = isset($response['data']['url']) ? $response['data']['url'] : '';
            
            if (isset(
$response['data']['secret_token'])) {
                
$response['secret_token'] = $response['data']['secret_token'];
                unset(
$response['data']['secret_token']);
            }

            
$content .= '<div class="updraftclone-main-row">';

            
$content .= '<div class="updraftclone-tokens">';
            
$content .= '<p>' __("Available temporary clone tokens:""updraftplus") . ' <span class="tokens-number">' esc_html($tokens) . '</span></p>';
            
$content .= '</div>';

            
$content .= '<div class="updraftclone_action_box">';
            
            
$content .= $updraftplus_admin->updraftplus_clone_info($url);

            
$content .= '</div>';

            
$content .= '</div>'// end .updraftclone-main-row
        
}
        if (isset(
$params['form_data']['install_info']['wp_only'])) {
            
$content .= '<p id="updraft_clone_progress">' __('No backup will be started. The creation of your clone should now begin, and your WordPress username and password will be displayed below when ready.''updraftplus') . ' ' __('N.B. You will be charged one token once the clone is ready. If the clone fails to boot, then no token will be taken.''updraftplus') . '<span class="updraftplus_spinner spinner">' __('Processing''updraftplus') . '...</span></p>';
        } else {
            
$content .= '<p id="updraft_clone_progress">' __('The creation of your data for creating the clone should now begin.''updraftplus') . ' ' __('N.B. You will be charged one token once the clone is ready. If the clone fails to boot, then no token will be taken.''updraftplus') . '<span class="updraftplus_spinner spinner">' __('Processing''updraftplus') . '...</span></p>';
            
$content .= '<div id="updraft_clone_activejobsrow" style="display:none;"></div>';
        }

        
$response['html'] = $content;
        
$response['url'] = $url;
        
$response['key'] = '';

        return 
$response;
    }

    
/**
     * This function will get the clone network and credential info
     *
     * @param array $params - the parameters for the call
     *
     * @return array|WP_Error - the response array that includes the credential info or a WP_Error
     */
    
public function process_updraftplus_clone_poll($params) {
        if (
false === ($updraftplus_admin $this->_load_ud_admin()) || false === ($updraftplus $this->_load_ud())) return new WP_Error('no_updraftplus');// phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
        
if (!UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');

        
$response $updraftplus->get_updraftplus_clone()->clone_info_poll($params);

        return 
$response;
    }

    
/**
     * This function will get the clone netowrk info HTML for the passed in clone URL
     *
     * @param array $params - the parameters for the call
     *
     * @return array        - the response array that includes the network HTML
     */
    
public function get_clone_network_info($params) {
        if (
false === ($updraftplus_admin $this->_load_ud_admin()) || false === ($updraftplus $this->_load_ud())) return new WP_Error('no_updraftplus');// phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
        
if (!UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');
        
        
$url = empty($params['clone_url']) ? '' $params['clone_url'];

        
$response = array();

        
$response['html'] = $updraftplus_admin->updraftplus_clone_info($url);

        return 
$response;
    }

    
/**
     * This function will get the restore resume notice
     *
     * @param array $params - the parameters for the call
     *
     * @return array|WP_Error - the response array that includes the restore resume notice
     */
    
public function get_restore_resume_notice($params) {
        if (
false === ($updraftplus_admin $this->_load_ud_admin()) || false === ($updraftplus $this->_load_ud())) return new WP_Error('no_updraftplus');// phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
        
if (!UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');

        
$job_id = empty($params['job_id']) ? '' $params['job_id'];

        
$response = array(
            
'status' => 'success',
        );

        if (empty(
$job_id)) return new WP_Error('missing_parameter''Missing parameters.');

        
$html $updraftplus_admin->get_restore_resume_notice($job_id);

        if (
is_wp_error($html)) return $html;

        
$response['html'] = $html;

        return 
$response;
    }
}
x

Windows NT KPTV 6.2 build 9200 (Windows Server 2012 Datacenter Edition) i586