| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- /**
- * Category Manipulations tab partial: Remove Not Assigned Media.
- *
- * @package Studiou_WC_Product_Cat_Manage
- *
- * @var Studiou_WC_Product_Cat_Manage_Manipulator $manipulator
- */
- // If this file is called directly, abort.
- if (!defined('WPINC')) {
- die;
- }
- $unassigned_media_count = $manipulator->get_unassigned_unused_media_count();
- ?>
- <!-- Remove Not Assigned Media Operation -->
- <div class="studiou-wcpcm-card">
- <h2><?php echo esc_html__('Remove Not Assigned Media', 'studiou-wc-product-cat-manage'); ?></h2>
- <p><?php echo esc_html__('This operation permanently deletes all media files that are not assigned to any media category and are not used as featured image, product gallery image, or attached to any post.', 'studiou-wc-product-cat-manage'); ?></p>
- <form id="studiou-wcpcm-remove-unassigned-media-form" method="post" onsubmit="return false;">
- <div class="studiou-wcpcm-warning-message">
- <p><strong><?php echo esc_html__('WARNING: This operation will permanently delete all unused uncategorized media files from the server. This action cannot be undone!', 'studiou-wc-product-cat-manage'); ?></strong></p>
- </div>
- <div class="submit-buttons">
- <button type="submit" class="button button-primary button-danger" id="studiou-wcpcm-remove-unassigned-media-button">
- <?php echo esc_html(sprintf(__('Delete unused uncategorized media (%d)', 'studiou-wc-product-cat-manage'), $unassigned_media_count)); ?>
- </button>
- <span class="spinner"></span>
- </div>
- </form>
- <div class="studiou-wcpcm-remove-unassigned-media-progress" style="display: none;">
- <h3><?php echo esc_html__('Deletion Progress', 'studiou-wc-product-cat-manage'); ?></h3>
- <div class="studiou-wcpcm-progress-bar-container">
- <div class="studiou-wcpcm-progress-bar" id="studiou-wcpcm-remove-unassigned-media-progress-bar"></div>
- </div>
- <div class="studiou-wcpcm-progress-text" id="studiou-wcpcm-remove-unassigned-media-progress-text"></div>
- </div>
- <div class="studiou-wcpcm-remove-unassigned-media-results" style="display: none;">
- <h3><?php echo esc_html__('Deletion Results', 'studiou-wc-product-cat-manage'); ?></h3>
- <div id="studiou-wcpcm-remove-unassigned-media-message"></div>
- </div>
- </div>
|