PluginProbe ʕ •ᴥ•ʔ
Folders – Unlimited Folders to Organize Media Library Folder, Pages, Posts, File Manager / 2.5.6
Folders – Unlimited Folders to Organize Media Library Folder, Pages, Posts, File Manager v2.5.6
3.1.9 3.1.8 3.1.7 2.9.3 2.9.4 2.9.5 2.9.6 2.9.7 2.9.8 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 trunk 1.3.7 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.2.8 2.2.9 2.3 2.3.1 2.3.2 2.3.3 2.3.4 2.3.5 2.3.6 2.3.7 2.3.8 2.3.9 2.4 2.4.1 2.4.2 2.4.3 2.4.4 2.4.5 2.4.6 2.4.7 2.4.8 2.4.9 2.5 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 2.5.7 2.5.8 2.5.9 2.6 2.6.1 2.6.2 2.6.3 2.6.4 2.6.5 2.6.6 2.6.7 2.6.8 2.6.9 2.7 2.7.1 2.7.2 2.7.3 2.7.4 2.7.5 2.8 2.8.1 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.8.9 2.9 2.9.1 2.9.2
folders / folders.php
folders Last commit date
assets 5 years ago includes 5 years ago languages 6 years ago templates 5 years ago folders.php 5 years ago readme.txt 5 years ago
folders.php
44 lines
1 <?php
2 /**
3 * Plugin Name: Folders
4 * Description: Arrange media, pages, custom post types and posts into folders
5 * Version: 2.5.6
6 * Author: Premio
7 * Author URI: https://premio.io/downloads/folders/
8 * Text Domain: folders
9 * Domain Path: /languages
10 */
11
12 if ( ! defined( 'ABSPATH' ) ) exit;
13
14 if(!defined("WCP_FOLDERS_PLUGIN_FILE")) {
15 define('WCP_FOLDERS_PLUGIN_FILE', __FILE__);
16 }
17 if(!defined("WCP_FOLDERS_PLUGIN_BASE")) {
18 define('WCP_FOLDERS_PLUGIN_BASE', plugin_basename(WCP_FOLDERS_PLUGIN_FILE));
19 }
20 if(!defined("WCP_FOLDER")) {
21 define('WCP_FOLDER', 'folders');
22 }
23 if(!defined("WCP_FOLDER_VAR")) {
24 define('WCP_FOLDER_VAR', 'folders_settings');
25 }
26 if(!defined("WCP_DS")) {
27 define("WCP_DS", DIRECTORY_SEPARATOR);
28 }
29 if(!defined("WCP_FOLDER_URL")) {
30 define('WCP_FOLDER_URL', plugin_dir_url(__FILE__));
31 }
32 if(!defined("WCP_FOLDER_VERSION")) {
33 define('WCP_FOLDER_VERSION', "2.5.6");
34 }
35
36 include_once plugin_dir_path(__FILE__)."includes/folders.class.php";
37 register_activation_hook( __FILE__, array( 'WCP_Folders', 'activate' ) );
38 WCP_Folders::get_instance();
39
40 /* Affiliate Class*/
41 if(is_admin()) {
42 include_once plugin_dir_path(__FILE__)."includes/class-affiliate.php";
43 include_once plugin_dir_path(__FILE__) . "includes/class-review-box.php";
44 }