settings-tabs
1 year ago
admin-content.php
1 year ago
email-signup.php
1 year ago
folder-deactivate-form.php
1 year ago
folder-popup.php
1 year ago
general-settings.php
1 year ago
help.php
1 year ago
media-cleaning.php
1 year ago
media-replace.php
1 year ago
modals.php
1 year ago
recommended-plugins.php
1 year ago
update.php
1 year ago
upgrade-table.php
1 year ago
upgrade-to-pro.php
1 year ago
media-cleaning.php
37 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Admin folders Scan Media |
| 4 | * |
| 5 | * @author : Premio <contact@premio.io> |
| 6 | * @license : GPL2 |
| 7 | * */ |
| 8 | |
| 9 | if (! defined('ABSPATH')) { |
| 10 | exit; |
| 11 | } |
| 12 | ?> |
| 13 | <div class="media-clean-box-content"> |
| 14 | <div class="media-clean-box-title"> |
| 15 | <?php esc_html_e("Scan for unused media", "folders") ?> |
| 16 | </div> |
| 17 | <div class="media-clean-box-border"></div> |
| 18 | <div class="m-top"> |
| 19 | <?php wp_enqueue_script("folders-lottie-player", WCP_FOLDER_URL."assets/js/lottie-player.js", [], WCP_FOLDER_VERSION, true) ?> |
| 20 | <lottie-player src="<?php echo esc_url(WCP_FOLDER_URL."assets/js/lottie-player.json") ?>" background="transparent" speed="1" style="width: 300px; height: 300px; margin: 0 auto" loop autoplay></lottie-player> |
| 21 | </div> |
| 22 | <div class="media-clean-box-desc"> |
| 23 | <?php esc_html_e("Find unused media files which aren't used in your website. An internal trash allows you to make sure everything works properly before deleting the media entries (and files) permanently.", "folders") ?> |
| 24 | </div> |
| 25 | <div class="m-bottom"> |
| 26 | <a href="<?php echo esc_url($this->getFoldersUpgradeURL()) ?>" class="media-clean-box-button"> |
| 27 | <?php esc_html_e("Upgrade to Folders Pro", "folders") ?> |
| 28 | <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| 29 | <path fill-rule="evenodd" clip-rule="evenodd" d="M10 18C14.4183 18 18 14.4183 18 10C18 5.58172 14.4183 2 10 2C5.58172 2 2 5.58172 2 10C2 14.4183 5.58172 18 10 18ZM9.5547 7.16795C9.24784 6.96338 8.8533 6.94431 8.52814 7.11833C8.20298 7.29235 8 7.63121 8 8V12C8 12.3688 8.20298 12.7077 8.52814 12.8817C8.8533 13.0557 9.24784 13.0366 9.5547 12.8321L12.5547 10.8321C12.8329 10.6466 13 10.3344 13 10C13 9.66565 12.8329 9.35342 12.5547 9.16795L9.5547 7.16795Z" /> |
| 30 | </svg> |
| 31 | </a> |
| 32 | </div> |
| 33 | <div class="skip-scan-btn"> |
| 34 | <a href="<?php echo esc_url(admin_url("upload.php?hide_menu=scan-files&nonce=".wp_create_nonce("folders-scan-files"))) ?>"><?php esc_html_e("Hide this page from the menu", "folders"); ?></a> |
| 35 | </div> |
| 36 | </div> |
| 37 |