PluginProbe ʕ •ᴥ•ʔ
Backup Migration / 1.3.7
Backup Migration v1.3.7
2.1.7 2.1.6 2.1.5.2 trunk 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.6.1 1.4.7 1.4.8 1.4.9 1.4.9.1 2.0.0 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.5.1
backup-backup / includes / dashboard / chapter / other_config.php
backup-backup / includes / dashboard / chapter Last commit date
AA-Template.php 2 years ago other_config.php 2 years ago save-button.php 2 years ago staging.php 2 years ago store_config.php 2 years ago troubleshooting.php 2 years ago what_backed_up.php 2 years ago where_config.php 2 years ago
other_config.php
598 lines
1 <?php
2
3 // Namespace
4 namespace BMI\Plugin\Dashboard;
5
6 // Exit on direct access
7 if (!defined('ABSPATH')) {
8 exit;
9 }
10
11 $pros = false;
12 if (defined('BMI_BACKUP_PRO') && BMI_BACKUP_PRO == 1) {
13 $pros = true;
14 }
15
16 // Tooltips
17 $deinstalled_info = __('This will be triggered on plugin removal via WordPress plugins tab', 'backup-backup');
18 $experimental_info = __('It will change some fundamental logics of the plugin', 'backup-backup');
19 $experimental_info_1 = __('Use this option if you have full access to your server and you know how to make basic configuration of the server. Wrong configuration may give you hick-ups without error due to e.g. web server server timeout (for small sites below 300 MB this is the best option).', 'backup-backup');
20 $experimental_info_2 = __('Use this option before the third one, it should work fine on SSD/NVMe hostings even for huge backups - but still may timeout if you are running on slow drive high I/O.', 'backup-backup');
21 $experimental_info_3 = __('This option will require you to not close the backup window since it will use your connection to keep the backup in parts, it will disable automatic backups. Use this only if all of the above does not work. Recommended for huge sites +100k files / 5+ GB.', 'backup-backup');
22 $db_query_info = __('Lower value means slower process but more stable restore, higher value means quicker backup and restore but it may be unstable (depends on database server performance). Default value: 300.', 'backup-backup');
23 $sqlsplitting = __('This will split the SQL files (before migration or restore) into parts, which should make the process more stable and also allows to track the progress more precisely.', 'backup-backup');
24 $deprecatedsinglefile = __('It will force to use V1 engine (first export function of this plugin), it is usually much quicker but search & replace may not work well for recursively santisized data - but may be recommended for not complex sites.', 'backup-backup');
25 $cleanupbeforerestore = __('Advanced details: It will remove all plugins (excluding backup migration) and themes before performing migration. These files during migration will be kept in directory wp-content/backup-migration/clean-ups. If you want to keep them after migration you can use wp-config.php constant BMI_KEEP_CLEANUPS set to TRUE.', 'backup-backup');
26 $disabledspacechecking = __('This option will disable validation of free space on your server i.e. if there is enough space to make the backup. Use it only when you are 100% sure that you have enough space, otherwise backup process may fail with fatal error. In corner cases, if there will not be enough space it may make your site slow or even limit functionality.', 'backup-backup');
27 $dbbatching = __('This option will enable batching for database table export (backup). It will affect only non-default methods of the backup. It will significantly slow down the backup process, but it will make it much more stable.', 'backup-backup');
28
29 $basicMessageHidePromos = __('%sHide the carousel at the bottom of the plugin page, and all plugin’s messages in the Dashboard area.%s', 'backup-backup');
30
31 if (!$pros) {
32 $bmiHidePromos = $basicMessageHidePromos . __('%sUpgrade to %sPremium%s today%s%s%sWe made it really affordable!%s', 'backup-backup');
33 $bmiHidePromos = sprintf($bmiHidePromos, '<div class="bmi-center-text">', '<br>', '<a href="' . BMI_AUTHOR_URI . '" target="_blank">', '<span class="bmi-premium-bg-stars">', '</span>', '</a>', '<br>', '<b>', '</b>', '</div>');
34 } else {
35 $bmiHidePromos = $basicMessageHidePromos;
36 $bmiHidePromos = sprintf($bmiHidePromos, '', '');
37 }
38
39 ?>
40
41 <div class="mt mb f18 lh30">
42
43 <!-- -->
44 <div class="mm">
45
46 <div class="fo-title bold mbll">
47 <?php _e('Email notifications', 'backup-backup'); ?> (#1)
48 </div>
49
50 </div>
51
52 <div class="mm mbl">
53 <div class="mm mm-border">
54
55 <!-- -->
56 <div class="cf">
57 <div class="left mw250 lh65">
58 <?php _e('Email address:', 'backup-backup'); ?>
59 </div>
60 <div class="left">
61 <div class="">
62 <?php
63 $ee = sanitize_text_field(bmi_get_config('OTHER:EMAIL'));
64 if (strlen($ee) <= 1) {
65 $ee = get_bloginfo('admin_email');
66 }
67 ?>
68 <input type="text" id="email-for-notices" class="bmi-text-input small" value="<?php echo $ee; ?>" autocomplete="off" readonly onfocus="this.removeAttribute('readonly');" />
69 </div>
70 <div class="f16">
71 <?php _e('This is where the log files will be sent to. You can enter several email addresses, separated by comma.', 'backup-backup'); ?>
72 </div>
73 </div>
74 </div>
75
76 <!-- -->
77 <div class="cf mbl">
78 <div class="left mw250 lh65">
79 <?php _e('From field:', 'backup-backup'); ?>
80 </div>
81 <div class="left">
82 <div class="">
83 <input type="text" id="email-title-for-notices" class="bmi-text-input small" value="<?php echo sanitize_text_field(bmi_get_config('OTHER:EMAIL:TITLE')); ?>" />
84 </div>
85 <div class="f16">
86 <?php _e('This will show up as sender of the emails', 'backup-backup'); ?>
87 </div>
88 </div>
89 </div>
90
91 <!-- -->
92 <div class="cf mbl">
93
94 <div class="left mw250 lh50" style="line-height: 145px;">
95 <?php _e("You'll get an email if...", 'backup-backup'); ?>
96 </div>
97
98 <div class="left lh40">
99 <table>
100 <tbody>
101 <tr>
102 <td>
103 <label class="premium-wrapper">
104 <input type="checkbox" disabled>
105 <span><?php _e("Backups was created successfully", 'backup-backup'); ?></span>
106 <span class="premium premium-img premium-ntt"></span>
107 </label>
108 </td>
109 <td>
110 <label class="premium-wrapper">
111 <input type="checkbox" disabled>
112 <span><?php _e("Backup creation failed", 'backup-backup'); ?></span>
113 <span class="premium premium-img premium-ntt"></span>
114 </label>
115 </td>
116 </tr>
117 <tr>
118 <td>
119 <label class="premium-wrapper">
120 <input type="checkbox" disabled>
121 <span><?php _e("Restore succeeded", 'backup-backup'); ?></span>
122 <span class="premium premium-img premium-ntt"></span>
123 </label>
124 </td>
125 <td>
126 <label class="premium-wrapper">
127 <input type="checkbox" disabled>
128 <span><?php _e("Restore failed", 'backup-backup'); ?></span>
129 <span class="premium premium-img premium-ntt"></span>
130 </label>
131 </td>
132 </tr>
133 <tr>
134 <td colspan="2">
135 <label for="scheduled-issues">
136 <input type="checkbox" id="scheduled-issues"<?php bmi_try_checked('OTHER:EMAIL:NOTIS'); ?>>
137 <span>
138 <?php _e("There are (new) issues with scheduling (creating automatic backups)", 'backup-backup'); ?><br>
139 <span class="f14">
140 <?php _e("(Make sure that your hosting does not block mail functions, otherwise you have to configure SMTP mail.)", 'backup-backup'); ?>
141 </span>
142 </span>
143 </label>
144 </td>
145 </tr>
146 </tbody>
147 </table>
148 </div>
149
150 </div>
151
152 <!-- -->
153 <div>
154 <div class="cf">
155
156 <div class="left mr20">
157 <?php _e("Add logs to emails?", 'backup-backup'); ?>
158 </div>
159
160 <div class="left">
161 <div class="left d-flex mr60 ia-center">
162 <label class="container-radio">
163 <?php _e("No", 'backup-backup'); ?>
164 <input type="radio" checked name="add_logs_email">
165 <span class="checkmark-radio"></span>
166 </label>
167 <div class="inline premium-wrapper cf">
168 <label class="left container-radio ml25 not-allowed">
169 <?php _e("Yes", 'backup-backup'); ?>
170 <input type="radio" disabled name="add_logs_email">
171 <span class="checkmark-radio"></span>
172 </label>
173 <span class="left premium premium-img premium-nt mtf3"></span>
174 </div>
175 </div>
176 </div>
177
178 </div>
179
180 <div class="f16 mtll">
181 <?php _e("If you want to also receive the backup file as attachment of the email (for backup notifications), please set this in chapter Where will backups be stored?.", 'backup-backup'); ?>
182 </div>
183 </div>
184
185 </div>
186 </div>
187
188 <hr>
189
190 <!-- -->
191 <div class="mm mtl mbll">
192
193 <div class="fo-title bold">
194 <?php _e("Backup triggers", 'backup-backup'); ?> (#2)
195 </div>
196
197 <div class="f16">
198 <?php _e('At the top of the plugin you can create a backup instantly ("Create backup now" - button), or schedule them. Here are more options which trigger the backup creation:', 'backup-backup'); ?>
199 </div>
200
201 </div>
202
203 <!-- -->
204 <div class="mbl overlayed">
205
206 <?php include BMI_INCLUDES . '/dashboard/templates/premium-overlay.php'; ?>
207
208 <!-- It is intended to use double .mm -->
209 <div class="mm mbl">
210 <div class="mm mm-border">
211 <div>
212 <div class="cf">
213 <div class="left">
214 <div class="f20 bold mr20 premium-wrapper">
215 <?php _e("Before updates", 'backup-backup'); ?>
216 <span class="premium premium-img premium-ntt"></span>
217 </div>
218 </div>
219 <div class="left">
220 <label for="before-updates-switch" class="bmi-switch">
221 <input type="checkbox" disabled checked id="before-updates-switch">
222 <div class="bmi-switch-slider round">
223 <span class="on"><?php _e("On", 'backup-backup'); ?></span>
224 <span class="off"><?php _e("Off", 'backup-backup'); ?></span>
225 </div>
226 </label>
227 </div>
228 </div>
229 </div>
230
231 <div>
232 <div class="mtll f16">
233 <?php _e("Activate this so that a backup is created before there are automatic WordPress updates (WordPress core, plugins, themes, or language files).", 'backup-backup'); ?>
234 </div>
235 </div>
236
237 <table>
238 <tbody>
239 <tr>
240 <td style="vertical-align: top;">
241 <div class="f20 bold mw250 lh65 premium-wrapper">
242 <?php _e("Trigger by URI", 'backup-backup'); ?>
243 <span class="premium premium-img premium-ntt"></span>
244 </div>
245 </td>
246 <td>
247 <div class="">
248 <div class="cf">
249 <div class="left mr20">
250 <input type="text" class="bmi-text-input small" id="trigger-input1" />
251 </div>
252 <div class="left">
253 <a href="#" class="btn inline btn-with-img btn-img-low-pad btn-pad left bmi-copper othersec mm30" data-copy="trigger-input1">
254 <div class="text">
255 <img src="<?php echo $this->get_asset('images', 'copy-icon.png'); ?>" alt="copy-img">
256 <div class="f18 semibold"><?php _e('Copy', 'backup-backup') ?></div>
257 </div>
258 </a>
259 </div>
260 </div>
261 <div class="f16 mtlll">
262 <?php _e("Copy & paste this url into a browser and press enter to trigger the backup creation.", 'backup-backup'); ?><br>
263 <?php _e("Make sure you keep this url a secret. For safety reasons this only works once per hour & you’ll get emailed when it used.", 'backup-backup'); ?>
264 </div>
265 <div class="mtll cf">
266 <div class="left lh60 mr20"><?php _e("Key:", 'backup-backup'); ?></div>
267 <div class="left mr20">
268 <input type="text" class="bmi-text-input small" />
269 </div>
270 <div class="left">
271 <a href="#" class="btn mm30 othersec"><?php _e("Save", 'backup-backup'); ?></a>
272 </div>
273 </div>
274 <div class="f16 mtlll">
275 <?php _e("Change the key (which is part of above url) if you suspect an unauthorized person got access to it.", 'backup-backup'); ?>
276 </div>
277 </div>
278 </td>
279 </tr>
280 </tbody>
281 </table>
282 </div>
283 </div>
284
285 </div>
286
287 <!-- -->
288 <div class="mbl mtl overlayed" style="display: none;">
289
290 <?php include BMI_INCLUDES . '/dashboard/templates/premium-overlay.php'; ?>
291
292 <div class="mm fo-title bold premium-wrapper">
293 <?php _e("WP CLI", 'backup-backup'); ?>
294 <span class="premium premium-img premium-ntt"></span>
295 </div>
296 <div class="mm mtll f16">
297 <?php _e('Trigger backups via WP CLI.', 'backup-backup'); ?>
298 </div>
299 <div class="mm mtll">
300 <?php _e('If you selected the "schedule backups" - option at the top of the plugin, and backups are not created, then please check out the Cron settings. Or just ask us in the forum.', 'backup-backup'); ?>
301 </div>
302 </div>
303
304 <hr>
305
306 <!-- -->
307 <div class="mm mbl mtl">
308 <div class="fo-title mbll bold">
309 <?php _e("Change functionality of the plugin", 'backup-backup'); ?> (#3)
310 </div>
311 <div class="mm mm-border">
312 <div>
313 <span class="relative">
314 <?php _e("Some", 'backup-backup'); ?> <b><?php _e("experimental", 'backup-backup'); ?></b> <?php _e("features", 'backup-backup'); ?>:
315 &nbsp;<span class="bmi-info-icon tooltip" tooltip="<?php echo $experimental_info; ?>"></span>
316 </span>
317 </div>
318
319 <div class="lh40">
320 <label for="normal-timeout" class="container-radio">
321 <input type="radio" name="experimental_features" id="normal-timeout"<?php bmi_try_checked('OTHER:USE:TIMEOUT:NORMAL'); ?> />
322 <span class="f18">
323 <?php _e("Do not change the default plugin functions - it may require to adjust your server for stable backup", 'backup-backup'); ?>
324 &nbsp;<span class="bmi-info-icon tooltip" tooltip="<?php echo $experimental_info_1; ?>"></span>
325 </span>
326 <span class="checkmark-radio" style="margin-top: 2px;"></span>
327 </label>
328 </div>
329 <div class="lh40">
330 <label for="experimental-timeout" class="container-radio">
331 <input type="radio" name="experimental_features" id="experimental-timeout"<?php bmi_try_checked('OTHER:EXPERIMENT:TIMEOUT'); ?> />
332 <span class="f18">
333 <?php _e("Bypass web server timeout directive - backup process may be slower", 'backup-backup'); ?>
334 &nbsp;<span class="bmi-info-icon tooltip" tooltip="<?php echo $experimental_info_2; ?>"></span>
335 </span>
336 <span class="checkmark-radio" style="margin-top: 2px;"></span>
337 </label>
338 </div>
339 <div class="lh40">
340 <label for="experimental-hard-timeout" class="container-radio">
341 <input type="radio" name="experimental_features" id="experimental-hard-timeout"<?php bmi_try_checked('OTHER:EXPERIMENT:TIMEOUT:HARD'); ?> />
342 <span class="f18">
343 <?php _e("Bypass web server limits - it will disable automatic backup and possibility to run it in the background", 'backup-backup'); ?>
344 &nbsp;<span class="bmi-info-icon tooltip" tooltip="<?php echo $experimental_info_3; ?>"></span>
345 </span>
346 <span class="checkmark-radio" style="margin-top: 2px;"></span>
347 </label>
348 </div>
349 </div>
350 </div>
351
352 <hr>
353
354 <!-- -->
355 <div class="mbl mtl">
356 <div class="mm fo-title mbll bold">
357 <?php _e("Backup & Restore – PHP CLI Settings (advanced)", 'backup-backup'); ?> (#4)
358 </div>
359
360 <div class="mm">
361 <div class="mm mm-border">
362 <div class="cf">
363 <div class="left mw250 lh65">
364 <?php _e('PHP CLI executable path:', 'backup-backup'); ?>
365 </div>
366 <div class="left">
367 <div class="">
368 <?php $cli_path = sanitize_text_field(bmi_get_config('OTHER:CLI:PATH')); ?>
369 <input type="text" id="cli-manual-path" class="bmi-text-input small" value="<?php echo $cli_path; ?>" placeholder="<?php _e("Automatic", 'backup-backup'); ?>" />
370 </div>
371 <div class="f16">
372 <?php _e('This field has no effect if PHP CLI is not available on the server or it is disabled due to settings.', 'backup-backup'); ?><br>
373 <?php _e('Please leave it empty if you do not know what you are doing, unless our support told you what it does.', 'backup-backup'); ?>
374 </div>
375 </div>
376 </div>
377
378 <div class="lh40">
379 <label for="cli-disable-others">
380 <input type="checkbox" id="cli-disable-others"<?php bmi_try_checked('OTHER:CLI:DISABLE'); ?> />
381 <span><?php _e("Disable PHP CLI Checking, try to use alternate methods.", 'backup-backup'); ?></span>
382 </label>
383 </div>
384 </div>
385 </div>
386 </div>
387
388 <hr>
389
390 <!-- -->
391 <div class="mm mbl mtl">
392 <div class="fo-title mbll bold">
393 <?php _e("Change basic functions of the plugin", 'backup-backup'); ?> (#5)
394 </div>
395 <div class="mm mm-border">
396
397 <div>
398 <span class="relative">
399 <?php printf(__("Backup %sdownloading%s technique", 'backup-backup'), '<b>', '</b>'); ?>:
400 </span>
401 </div>
402 <div class="lh40">
403 <label for="download-technique">
404 <input type="checkbox" id="download-technique"<?php bmi_try_checked('OTHER:DOWNLOAD:DIRECT'); ?> />
405 <span><?php _e("Use direct downloading - that will remove .htaccess protection right before download (can solve download issues).", 'backup-backup'); ?></span>
406 </label>
407 </div>
408
409 <div class="mtll">
410 <span class="relative">
411 <?php _e("Additional actions during", 'backup-backup'); ?> <b><?php _e("restoration", 'backup-backup'); ?></b>:
412 </span>
413 </div>
414 <div class="lh40">
415 <label for="remove-assets-before-restore">
416 <input type="checkbox" id="remove-assets-before-restore"<?php bmi_try_checked('OTHER:RESTORE:BEFORE:CLEANUP'); ?> />
417 <span class="relative"><?php _e("Remove existing plugins and themes before migration.", 'backup-backup'); ?><span class="bmi-info-icon tooltip" tooltip="<?php echo $cleanupbeforerestore; ?>"></span></span>
418 </label>
419 </div>
420
421 <div class="mtll">
422 <span class="relative">
423 <?php _e("Display settings", 'backup-backup'); ?>:
424 </span>
425 </div>
426 <div class="lh40">
427 <label for="hide-promotional-bmi-banners">
428 <input type="checkbox"<?php echo ($pros) ? "" : ' class="not-allowed" disabled' ?> id="hide-promotional-bmi-banners"<?php bmi_try_checked('OTHER:PROMOTIONAL:DISPLAY'); ?> />
429 <span class="relative<?php echo ($pros) ? "" : ' not-allowed' ?>"><?php _e("Hide promotional banners and carrousel.", 'backup-backup'); ?>
430 <span class="inline premium-wrapper" tooltip="<?php echo esc_attr( $bmiHidePromos ); ?>">
431 <span class="premium premium-img premium-ntt"></span>
432 </span>
433 </span>
434 </label>
435 </div>
436
437 </div>
438 </div>
439
440 <hr>
441
442 <!-- -->
443 <div class="mm mbl mtl">
444
445 <div class="fo-title bold">
446 <?php _e("Database import/export settings", 'backup-backup'); ?> (#6)
447 </div>
448
449 <div class="mbll">
450 <span class="relative">
451 <?php _e("Adjust queries amount per batch for your ", 'backup-backup'); ?> <b><?php _e("database", 'backup-backup'); ?></b>
452 <span class="bmi-info-icon tooltip" tooltip="<?php echo $db_query_info; ?>"></span>
453 </span><br>
454 </div>
455
456 <div class="mm mm-border">
457
458 <div class="lh40 cf">
459 <div class="left mw250 lh65">
460 <?php _e("Queries per batch for import/export: ", 'backup-backup'); ?>&nbsp;
461 </div>
462 <div class="left">
463 <?php $query_amount = sanitize_text_field(bmi_get_config('OTHER:DB:QUERIES')); ?>
464 <label for="db_queries_amount">
465 <input type="number" id="db_queries_amount" class="bmi-text-input small" value="<?php echo $query_amount; ?>" placeholder="2000" min="15" max="15000" />
466 </label>
467 </div>
468 </div>
469
470 <div class="lh40 cf">
471 <div class="left mw250 lh65">
472 <?php _e("Search & Replace max Page Size: ", 'backup-backup'); ?>&nbsp;
473 </div>
474 <div class="left">
475 <?php $sr_max_amount = sanitize_text_field(bmi_get_config('OTHER:DB:SEARCHREPLACE:MAX')); ?>
476 <label for="db_search_replace_max">
477 <input type="number" id="db_search_replace_max" class="bmi-text-input small" value="<?php echo $sr_max_amount; ?>" placeholder="300" min="10" max="30000" />
478 </label>
479 </div>
480 </div>
481
482 <div class="lh40 cf">
483 <div class="left mw250 lh65">
484 <?php _e("File limit for extraction batching (set \"auto\" for automatic choice): ", 'backup-backup'); ?>&nbsp;
485 </div>
486 <div class="left">
487 <?php $fel_max_amount = sanitize_text_field(bmi_get_config('OTHER:FILE:EXTRACT:MAX')); ?>
488 <label for="file_limit_extraction_max">
489 <input type="text" id="file_limit_extraction_max" class="bmi-text-input small" value="<?php echo $fel_max_amount; ?>" placeholder="auto" min="50" max="20000" />
490 </label>
491 </div>
492 </div>
493
494 <div class="lh40">
495 <label for="bmi-restore-splitting">
496 <input type="checkbox" id="bmi-restore-splitting"<?php bmi_try_checked('OTHER:RESTORE:SPLITTING'); ?> />
497 <span class="relative"><?php _e("Enable SQL-Splitting for migration process.", 'backup-backup'); ?> <span class="bmi-info-icon tooltip" tooltip="<?php echo $sqlsplitting; ?>"></span></span>
498 </label>
499 </div>
500
501 <div class="lh40">
502 <label for="bmi-db-v3-restore-engine">
503 <input type="checkbox" id="bmi-db-v3-restore-engine"<?php bmi_try_checked('OTHER:RESTORE:DB:V3'); ?> />
504 <span><?php _e("Restoration: Perform new Search & Replace after database import.", 'backup-backup'); ?></span>
505 </label>
506 </div>
507
508 <div class="lh40">
509 <label for="bmi-db-batching-backup">
510 <input type="checkbox" id="bmi-db-batching-backup"<?php bmi_try_checked('OTHER:BACKUP:DB:BATCHING'); ?> />
511 <span class="relative">
512 <?php _e("Use batching technique for database export (backup).", 'backup-backup'); ?>
513 <span class="bmi-info-icon tooltip" tooltip="<?php echo $dbbatching; ?>"></span>
514 </span>
515 </label>
516 </div>
517
518 <div class="lh40">
519 <label for="bmi-db-single-file-backup">
520 <input type="checkbox" id="bmi-db-single-file-backup"<?php bmi_try_checked('OTHER:BACKUP:DB:SINGLE:FILE'); ?> />
521 <span class="relative">
522 <?php _e("Deprecated: Force the plugin to backup all tables into one file.", 'backup-backup'); ?>
523 <span class="bmi-info-icon tooltip" tooltip="<?php echo $deprecatedsinglefile; ?>"></span>
524 </span>
525 </label>
526 </div>
527
528 </div>
529
530 </div>
531
532 <hr>
533
534 <!-- -->
535 <div class="mm mbl mtl">
536
537 <div class="fo-title mbll bold">
538 <?php _e("Trust settings", 'backup-backup'); ?> (#7)
539 </div>
540
541 <div class="mm mm-border">
542 <div class="lh40">
543 <label for="bmi-do-not-check-free-space-backup">
544 <input type="checkbox" id="bmi-do-not-check-free-space-backup"<?php bmi_try_checked('OTHER:BACKUP:SPACE:CHECKING'); ?> />
545 <span class="relative">
546 <?php _e("Disable space checking during backup process - please read additional info.", 'backup-backup'); ?>
547 <span class="bmi-info-icon tooltip" tooltip="<?php echo $disabledspacechecking; ?>"></span>
548 </span>
549 </label>
550 </div>
551 </div>
552
553 </div>
554
555 <hr>
556
557 <!-- -->
558 <div class="mm mbl mtl">
559
560 <div class="fo-title bold">
561 <?php _e("Clean-ups", 'backup-backup'); ?> (#8)
562 </div>
563
564 <div class="mbll">
565 <span class="relative">
566 <?php _e("When this plugins is", 'backup-backup'); ?> <b><?php _e("de-installed:", 'backup-backup'); ?></b>
567 &nbsp;<span class="bmi-info-icon tooltip" tooltip="<?php echo $deinstalled_info; ?>"></span>
568 </span><br>
569 </div>
570
571 <div class="mm mm-border">
572 <div class="lh40">
573 <label for="uninstalling-configs">
574 <input type="checkbox" id="uninstalling-configs"<?php bmi_try_checked('OTHER:UNINSTALL:CONFIGS'); ?> />
575 <span><?php _e("Delete all plugins settings (this means if you install it again, you have to configure it again)", 'backup-backup'); ?></span>
576 </label>
577 </div>
578 <div class="lh40">
579 <label for="uninstalling-backups">
580 <input type="checkbox" id="uninstalling-backups"<?php bmi_try_checked('OTHER:UNINSTALL:BACKUPS'); ?> />
581 <span><?php _e("Delete all backups (created by this plugin)", 'backup-backup'); ?></span>
582 </label>
583 </div>
584 </div>
585
586 </div>
587
588 <hr>
589
590 <!-- -->
591 <div class="mm mtll">
592 <?php _e("If you're looking for other options not listed above, check out the", 'backup-backup'); ?> <a href="#" class="secondary hoverable nodec collapser-openner" data-el="#troubleshooting-chapter"><?php _e("troubleshooting", 'backup-backup'); ?></a> <?php _e("chapter as they might be there.", 'backup-backup'); ?>
593 </div>
594
595 </div>
596
597 <?php include BMI_INCLUDES . '/dashboard/chapter/save-button.php'; ?>
598