<?php /** * Plugin Name: Revolution - Required Plugin * Description: This plugin adds necessary functionality to Revolution theme. * Version: 1.2.4 * Author: fuelthemes * Author URI: http://themeforest.net/user/fuelthemes * * This program is free software; you can redistribute it and/or modify it under the terms of the GNU * General Public License version 2, as published by the Free Software Foundation. You may NOT assume * that you can use any other version of the GPL. * * 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. */ if ( ! defined( 'WPINC' ) ) { die; } class Revolution_plugin { private static $instance = null; private $plugin_path; private $plugin_url; /** * Creates or returns an instance of this class. */ public static function get_instance() { global $Revolution_plugin; // If an instance hasn't been created and set to $instance create an instance and set it to $instance. if ( null == self::$instance ) { self::$instance = new self(); } $Revolution_plugin = self::$instance; return $Revolution_plugin; } /** * Initializes the plugin by setting localization, hooks, filters, and administrative functions. */ private function __construct() { $this->plugin_path = plugin_dir_path( __FILE__ ); $this->plugin_url = plugin_dir_url( __FILE__ ); $this->plugin_name = ''; if ( is_admin() ) { if ( ! function_exists( 'get_plugin_data' ) ) { require_once ABSPATH . 'wp-admin/includes/plugin.php'; } $plugin_data = get_plugin_data( __FILE__ ); $this->plugin_name = $plugin_data['Name']; } $this->run_plugin(); } public function get_plugin_url() { return $this->plugin_url; } public function get_plugin_path() { return $this->plugin_path; } /** * Place code for your plugin's functionality here. */ private function run_plugin() { $theme = wp_get_theme(); $cond = class_exists( 'OCDI_Plugin' ); if ( $cond ) { add_action( 'admin_notices', array( &$this, 'thb_plugin_admin_notices' ) ); deactivate_plugins( plugin_basename( __FILE__ ) ); unset( $_GET['activate'] ); return false; } if ( is_admin() ) { define( 'PT_OCDI_PATH', plugin_dir_path( __FILE__ ) . 'inc/one-click-demo-import/' ); define( 'PT_OCDI_URL', plugin_dir_url( __FILE__ ) . 'inc/one-click-demo-import/' ); require_once $this->plugin_path . 'inc/one-click-demo-import/one-click-demo-import.php'; } // Portfolio require_once $this->plugin_path . 'inc/portfolio/portfolio-taxonomy.php'; // Widgets require_once $this->plugin_path . 'inc/widgets/widgets-init.php'; // Misc require_once $this->plugin_path . 'inc/misc.php'; } function thb_plugin_admin_notices() { echo '<div class="notice error thb_admin_notices"> <p>Please disable the <strong>One Click Import</strong> or <strong>other theme plugins</strong> before activating <em>' . esc_html( $this->plugin_name ) . '</em>.</p> </div>'; } } function thb_revolution_plugin() { global $Revolution_plugin; return $Revolution_plugin; } function thb_revolution_plugin_instance() { Revolution_plugin::get_instance(); } add_action( 'after_setup_theme', 'thb_revolution_plugin_instance', 5 );