You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
cosmopet-architecture/dup-installer/templates/default/parts/params/extract-skip-notes.php

36 lines
1.5 KiB

<?php
/**
*
* @package templates/default
*/
defined('ABSPATH') || defined('DUPXABSPATH') || exit;
/* Variables */
/* @var $currentSkipMode string */
?>
<div
class="dynamic-sub-note dynamic-sub-note-<?php echo DUP_Extraction::FILTER_NONE .
($currentSkipMode == DUP_Extraction::FILTER_NONE ? '' : ' no-display'); ?>"
>
All Files in the archive are going to be extracted.
</div>
<div
class="dynamic-sub-note dynamic-sub-note-<?php echo DUP_Extraction::FILTER_SKIP_WP_CORE .
($currentSkipMode == DUP_Extraction::FILTER_SKIP_WP_CORE ? '' : ' no-display'); ?>"
>
When this option is chosen the wordpress core files, if any, are not modified. They are not deleted and/or extracted.
</div>
<div
class="dynamic-sub-note dynamic-sub-note-<?php echo DUP_Extraction::FILTER_SKIP_CORE_PLUG_THEMES .
($currentSkipMode == DUP_Extraction::FILTER_SKIP_CORE_PLUG_THEMES ? '' : ' no-display'); ?>"
>
When this option is chosen the wordpress core files, if any, are not modified. They are not deleted and/or extracted. </br>
Also, if a plugin (theme) exists on BOTH the host and and the archive, the contents of the host plugin (theme) are going to be kept.
</div>
<div
class="dynamic-sub-note dynamic-sub-note-<?php echo DUP_Extraction::FILTER_ONLY_MEDIA_PLUG_THEMES .
($currentSkipMode == DUP_Extraction::FILTER_ONLY_MEDIA_PLUG_THEMES ? '' : ' no-display'); ?>"
>
When this option is chosen only the "uploads" folder and plugins (themes) that don't exist on the host are going to be extracted.
</div>