Current File : /home/digitaw/www/wp-content/plugins/folders/folders.php
<?php
/**
 * Plugin Name: Folders
 * Description: Organize your Media library, Pages, and Posts into folders. You can easily drag and drop items into directories and change the folders tree view.
 * Version: 3.1.6
 * Author: Premio
 * Author URI: https://premio.io/downloads/folders/
 * Text Domain: folders
 * Domain Path: /languages
 * License: GPLv3
 */

if ( ! defined( 'ABSPATH' ) ) exit;

if(!defined("WCP_FOLDERS_PLUGIN_FILE")) {
    define('WCP_FOLDERS_PLUGIN_FILE', __FILE__);
}
if(!defined("WCP_FOLDERS_PLUGIN_PATH")) {
    define('WCP_FOLDERS_PLUGIN_PATH', plugin_dir_path(__FILE__) );
}
if(!defined("WCP_FOLDERS_PLUGIN_BASE")) {
    define('WCP_FOLDERS_PLUGIN_BASE', plugin_basename(WCP_FOLDERS_PLUGIN_FILE));
} 
if(!defined("WCP_DS")) {
    define("WCP_DS", DIRECTORY_SEPARATOR);
}
if(!defined("WCP_FOLDER_URL")) {
    define('WCP_FOLDER_URL', plugin_dir_url(__FILE__));
}
if(!defined("WCP_FOLDER_VERSION")) {
    define('WCP_FOLDER_VERSION', "3.1.6");
}
if(!defined("IS_FOLDERS_DEVELOPER_MODE")) {
    define('IS_FOLDERS_DEVELOPER_MODE', false);
}

if(!function_exists("folders_clear_all_caches")) {
    function folders_clear_all_caches()
    {
        /* Clear cookies from browser */
        try {
            global $wp_fastest_cache;
            // if W3 Total Cache is being used, clear the cache
            if (function_exists('w3tc_flush_all')) {
                w3tc_flush_all();
                /* if WP Super Cache is being used, clear the cache */
            } else if (function_exists('wp_cache_clean_cache')) {
                global $file_prefix, $supercachedir;
                if (empty($supercachedir) && function_exists('get_supercache_dir')) {
                    $supercachedir = get_supercache_dir();
                }
                wp_cache_clean_cache($file_prefix);
            } else if (class_exists('WpeCommon')) {
                //be extra careful, just in case 3rd party changes things on us
                if (method_exists('WpeCommon', 'purge_memcached')) {
                    //WpeCommon::purge_memcached();
                }
                if (method_exists('WpeCommon', 'clear_maxcdn_cache')) {
                    //WpeCommon::clear_maxcdn_cache();
                }
                if (method_exists('WpeCommon', 'purge_varnish_cache')) {
                    //WpeCommon::purge_varnish_cache();
                }
            } else if (method_exists('WpFastestCache', 'deleteCache') && !empty($wp_fastest_cache)) {
                $wp_fastest_cache->deleteCache();
            } else if (function_exists('rocket_clean_domain')) {
                rocket_clean_domain();
                // Preload cache.
                if (function_exists('run_rocket_sitemap_preload')) {
                    run_rocket_sitemap_preload();
                }
            } else if (class_exists("autoptimizeCache") && method_exists("autoptimizeCache", "clearall")) {
                autoptimizeCache::clearall();
            } else if (class_exists("LiteSpeed_Cache_API") && method_exists("autoptimizeCache", "purge_all")) {
                LiteSpeed_Cache_API::purge_all();
            }

            if (class_exists("Breeze_PurgeCache") && method_exists("Breeze_PurgeCache", "breeze_cache_flush")) {
                Breeze_PurgeCache::breeze_cache_flush();
            }


            if (class_exists( '\Hummingbird\Core\Utils' ) ) {
                $modules   = \Hummingbird\Core\Utils::get_active_cache_modules();
                foreach ( $modules as $module => $name ) {
                    $mod = \Hummingbird\Core\Utils::get_module( $module );
                    if ( $mod->is_active() ) {
                        if ( 'minify' === $module ) {
                            $mod->clear_files();
                        } else {
                            $mod->clear_cache();
                        }
                    }
                }
            }

            if ( function_exists( 'wp_cache_clean_cache' ) ) {
                global $file_prefix;
                wp_cache_clean_cache( $file_prefix, true );
            }
        } catch (Exception $e) {
            return 1;
        }
    }
}

include_once plugin_dir_path(__FILE__) . "includes/plugins.class.php";
include_once plugin_dir_path(__FILE__) . "includes/media.replace.php";
include_once plugin_dir_path(__FILE__) . "includes/form.fields.php";
include_once plugin_dir_path(__FILE__) . "includes/folders.class.php";
include_once plugin_dir_path(__FILE__) . "includes/svg.class.php";
register_activation_hook( __FILE__, array( 'WCP_Folders', 'activate' ) );
register_deactivation_hook( __FILE__, array( 'WCP_Folders', 'deactivate' ) );

WCP_Folders::get_instance();


/* Affiliate Class*/
if(is_admin()) {
    include_once plugin_dir_path(__FILE__)."includes/class-affiliate.php";
    include_once plugin_dir_path(__FILE__) . "includes/class-review-box.php";
    include_once plugin_dir_path(__FILE__) . "includes/class-email-signup.php";
    include_once plugin_dir_path(__FILE__) . "includes/class-help.php";
}

if(!function_exists('premio_folders_plugin_check_for_setting')) {
	function premio_folders_plugin_check_for_setting() {
		$status = get_option("folders_settings_updated");
		if($status === false) {
			add_option("folders_settings_updated", "1");
			$customize_folders = get_option("customize_folders");
			$customize_folders = !is_array($customize_folders)?array():$customize_folders;

			$default_folders = get_option("default_folders");
			$default_folders = !is_array($default_folders)?array():$default_folders;

			$folders_settings = get_option("folders_settings");
			$folders_settings = !is_array($folders_settings)?array():$folders_settings;

			$general = array(
				'has_stars' => 0,
				'has_child' => 0
			);

			global $wpdb;

			$total_stars = $wpdb->get_var("SELECT COUNT($wpdb->termmeta.term_id) AS total_records FROM {$wpdb->termmeta} WHERE meta_key = 'is_highlighted'");
			if(!empty($total_stars)) {
				$general['has_stars'] = 1;
			}

			$eCondition = "($wpdb->term_taxonomy.taxonomy = 'folder' 
							OR $wpdb->term_taxonomy.taxonomy = 'media_folder' 
							OR $wpdb->term_taxonomy.taxonomy = 'post_folder'";
			$post_types = get_post_types( array( ), 'objects' );
			$post_array = array("page", "post", "attachment");
			foreach ( $post_types as $post_type ) {
				if(!in_array($post_type->name, $post_array)) {
					$eCondition .= "OR $wpdb->term_taxonomy.taxonomy = '".esc_attr($post_type->name)."_folder'";
				}
			}
			$eCondition .= ")";
			$total_records = $wpdb->get_var("SELECT COUNT($wpdb->terms.term_id) AS total_records
                            FROM  $wpdb->terms
                            INNER JOIN $wpdb->term_taxonomy
                              ON $wpdb->terms.term_id = $wpdb->term_taxonomy.term_id
                            WHERE $wpdb->terms.term_id NOT IN(
                              SELECT $wpdb->term_taxonomy.parent
                              FROM $wpdb->term_taxonomy
                            )
                              AND {$eCondition}");

			$total_parents = $wpdb->get_var("SELECT COUNT($wpdb->terms.term_id) AS total_records
                            FROM  $wpdb->terms
                            INNER JOIN $wpdb->term_taxonomy
                              ON $wpdb->terms.term_id = $wpdb->term_taxonomy.term_id
                            WHERE {$eCondition}");

			if(!empty($total_parents) && $total_parents != $total_records) {
				$general['has_child'] = 1;
			}

			$folder_options = array(
				'customize_folders' => $customize_folders,
				'default_folders' => $default_folders,
				'folders_settings' => $folders_settings,
				'general' => $general
			);

			add_option("premio_folder_options", $folder_options);
		}
	}

	add_action( 'plugins_loaded', 'premio_folders_plugin_check_for_setting' );
}