<?php
/*
Plugin Name: FileOrganizer
Plugin URI: https://wordpress.org/plugins/fileorganizer/
Description: FileOrganizer is a plugin that helps you to manage all files in your WordPress Site.
Version: 1.0.8
Author: Softaculous Team
Author URI: https://fileorganizer.net
Text Domain: fileorganizer
*/
// We need the ABSPATH
if(!defined('ABSPATH')) exit;
if(!function_exists('add_action')){
echo 'You are not allowed to access this page directly.';
exit;
}
$_tmp_plugins = get_option('active_plugins');
// Is the premium plugin loaded ?
if(in_array('fileorganizer-pro/fileorganizer-pro.php', $_tmp_plugins)){
return;
}
// If FILEORGANIZER_VERSION exists then the plugin is loaded already !
if(defined('FILEORGANIZER_VERSION')){
return;
}
define('FILEORGANIZER_FILE', __FILE__);
include_once(dirname(__FILE__).'/init.php');