• File: extract-skip-notes.php
  • Full Path: /home/atelipy/www/wpmain/default/parts/params/extract-skip-notes.php
  • File size: 1.51 KB
  • MIME-type: text/x-php
  • Charset: utf-8
<?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>