File Manager
<?php
/*
Plugin Name: WP-Members
Plugin URI: https://rocketgeek.com
Description: WP access restriction and user registration. For more information on plugin features, refer to <a href="https://rocketgeek.com/plugins/wp-members/docs/">the online Users Guide</a>. A <a href="https://rocketgeek.com/plugins/wp-members/quick-start-guide/">Quick Start Guide</a> is also available. WP-Members(tm) is a trademark of butlerblog.com.
Version: 3.4.9
Author: Chad Butler
Author URI: https://butlerblog.com/
Text Domain: wp-members
Domain Path: /i18n/languages/
License: GPLv3
*/
/*
Copyright (c) 2006-2023 Chad Butler
The name WP-Members(tm) is a trademark of butlerblog.com
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 3, as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
You may also view the license here:
http://www.gnu.org/licenses/gpl.html
*/
/*
A NOTE ABOUT LICENSE:
While this plugin is freely available and open-source under the GPL3
license, that does not mean it is "public domain." You are free to modify
and redistribute as long as you comply with the license. Any derivative
work MUST be GPL licensed and available as open source. You also MUST give
proper attribution to the original author, copyright holder, and trademark
owner. This means you cannot change two lines of code and claim copyright
of the entire work as your own. The GPL3 license requires that if you
modify this code, you must clearly indicate what section(s) you have
modified and you may only claim copyright of your modifications and not
the body of work. If you are unsure or have questions about how a
derivative work you are developing complies with the license, copyright,
trademark, or if you do not understand the difference between
open source and public domain, contact the original author at:
https://rocketgeek.com/contact/.
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit();
}
// Initialize constants.
define( 'WPMEM_VERSION', '3.4.9' );
define( 'WPMEM_DB_VERSION', '2.4.0' );
define( 'WPMEM_PATH', plugin_dir_path( __FILE__ ) );
// Initialize the plugin.
add_action( 'after_setup_theme', 'wpmem_init', 10 );
// Install the plugin.
register_activation_hook( __FILE__, 'wpmem_install' );
// Run deactivation.
register_deactivation_hook( __FILE__, 'wpmem_deactivate' );
/**
* Initialize WP-Members.
*
* The initialization function contains much of what was previously just
* loaded in the main plugin file. It has been moved into this function
* in order to allow action hooks for loading the plugin and initializing
* its features and options.
*
* @since 2.9.0
* @since 3.1.6 Dependencies now loaded by object.
*
* @global object $wpmem The WP-Members object class.
*/
function wpmem_init() {
// Set the object as global.
global $wpmem;
/**
* Fires before initialization of plugin options.
*
* @since 2.9.0
*/
do_action( 'wpmem_pre_init' );
/**
* Load the WP_Members class.
*/
require_once( 'includes/class-wp-members.php' );
// Invoke the WP_Members class.
$wpmem = new WP_Members();
/**
* Fires after initialization of plugin options.
*
* @since 2.9.0
*/
do_action( 'wpmem_after_init' );
}
/**
* Install the plugin options.
*
* @since 2.5.2
* @since 3.1.1 Added rollback.
* @since 3.1.6 Removed rollback.
*
* @param
*/
function wpmem_install() {
/**
* Load the install file.
*/
require_once( 'includes/install.php' );
// Multisite requires different install process.
if ( is_multisite() ) {
// If it is multisite, install options for each blog.
global $wpdb;
$blogs = $wpdb->get_results( $wpdb->prepare(
"SELECT blog_id
FROM {$wpdb->blogs}
WHERE site_id = %d
AND spam = '0'
AND deleted = '0'
AND archived = '0'",
$wpdb->siteid
) );
$original_blog_id = get_current_blog_id();
foreach ( $blogs as $blog_id ) {
switch_to_blog( $blog_id->blog_id );
wpmem_do_install();
}
switch_to_blog( $original_blog_id );
} else {
// Single site install.
wpmem_do_install();
}
}
/**
* Runs downgrade steps in install function.
*
* @since 3.1.1
*/
function wpmem_deactivate() {
include_once( 'includes/install.php' );
wpmem_plugin_deactivate();
}
add_action( 'wp_insert_site', 'wpmem_mu_new_site' );
/**
* Install default plugin options for a newly added blog in multisite.
*
* @since 2.9.3
* @since 3.2.7 Updated to wp_insert_site (wpmu_new_blog is deprecated).
*
* @param $new_site
*/
function wpmem_mu_new_site( $new_site ) {
/**
* Load the install file.
*/
require_once( 'includes/install.php' );
// Switch to the new blog.
switch_to_blog( $new_site->id );
// Run the WP-Members install.
wpmem_do_install();
// Switch back to the current blog.
restore_current_blog();
}
// End of file.
File Manager Version 1.0, Coded By Lucas
Email: hehe@yahoo.com