mirror of
https://github.com/mainwp/mainwp-child.git
synced 2025-09-01 03:58:07 +08:00
50 lines
1.8 KiB
PHP
50 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* Plugin Name: MainWP Child
|
|
* Plugin URI: https://mainwp.com/
|
|
* Description: Provides a secure connection between your MainWP Dashboard and your WordPress sites. MainWP allows you to manage WP sites from one central location. Plugin documentation and options can be found here https://mainwp.com/help/
|
|
* Author: MainWP
|
|
* Author URI: https://mainwp.com
|
|
* Text Domain: mainwp-child
|
|
* Version: 4.0.7.1
|
|
*/
|
|
require_once ABSPATH . 'wp-includes' . DIRECTORY_SEPARATOR . 'version.php'; // Version information from WordPress.
|
|
|
|
define( 'MAINWP_CHILD_DEBUG', true );
|
|
|
|
if ( ! defined( 'MAINWP_CHILD_FILE' ) ) {
|
|
define( 'MAINWP_CHILD_FILE', __FILE__ );
|
|
}
|
|
|
|
if ( ! defined( 'MAINWP_CHILD_PLUGIN_DIR' ) ) {
|
|
define( 'MAINWP_CHILD_PLUGIN_DIR', plugin_dir_path( MAINWP_CHILD_FILE ) );
|
|
}
|
|
|
|
if ( ! defined( 'MAINWP_CHILD_URL' ) ) {
|
|
define( 'MAINWP_CHILD_URL', plugin_dir_url( MAINWP_CHILD_FILE ) );
|
|
}
|
|
|
|
function mainwp_child_autoload( $class_name ) {
|
|
|
|
if ( 0 === strpos( $class_name, 'MainWP\Child' ) ) {
|
|
// trip the namespace prefix: MainWP\Child\ .
|
|
$class_name = substr( $class_name, 13 );
|
|
}
|
|
|
|
$autoload_dir = \trailingslashit( dirname( __FILE__ ) . '/class' );
|
|
$autoload_path = sprintf( '%sclass-%s.php', $autoload_dir, strtolower( str_replace( '_', '-', $class_name ) ) );
|
|
|
|
if ( file_exists( $autoload_path ) ) {
|
|
require_once $autoload_path;
|
|
}
|
|
}
|
|
|
|
if ( function_exists( 'spl_autoload_register' ) ) {
|
|
spl_autoload_register( 'mainwp_child_autoload' );
|
|
}
|
|
|
|
require_once MAINWP_CHILD_PLUGIN_DIR . 'includes' . DIRECTORY_SEPARATOR . 'functions.php';
|
|
|
|
$mainWPChild = new MainWP\Child\MainWP_Child( WP_PLUGIN_DIR . DIRECTORY_SEPARATOR . plugin_basename( __FILE__ ) );
|
|
register_activation_hook( __FILE__, array( $mainWPChild, 'activation' ) );
|
|
register_deactivation_hook( __FILE__, array( $mainWPChild, 'deactivation' ) );
|