• File: class.fusionredux-plugin.php
  • Full Path: /home/docteuh/www/plugins/redux/framework/class.fusionredux-plugin.php
  • Date Modified: 11/20/2023 6:12 PM
  • File size: 12.45 KB
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

	/**
	 * FusionReduxFrameworkPlugin main class
	 *
	 * @package     FusionReduxFramework\FusionReduxFrameworkPlugin
	 * @since       3.0.0
	 */

	// Exit if accessed directly
	if ( ! defined( 'ABSPATH' ) ) {
		exit;
	}

	if ( ! class_exists( 'FusionReduxFrameworkPlugin' ) ) {

		/**
		 * Main FusionReduxFrameworkPlugin class
		 *
		 * @since       3.0.0
		 */
		class FusionReduxFrameworkPlugin {

			/**
			 * @const       string VERSION The plugin version, used for cache-busting and script file references
			 * @since       3.0.0
			 */

			const VERSION = '3.5.9.8';

			/**
			 * @access      protected
			 * @var         array $options Array of config options, used to check for demo mode
			 * @since       3.0.0
			 */
			protected $options = array();

			/**
			 * Use this value as the text domain when translating strings from this plugin. It should match
			 * the Text Domain field set in the plugin header, as well as the directory name of the plugin.
			 * Additionally, text domains should only contain letters, number and hypens, not underscores
			 * or spaces.
			 *
			 * @access      protected
			 * @var         string $plugin_slug The unique ID (slug) of this plugin
			 * @since       3.0.0
			 */
			protected $plugin_slug = 'fusionredux-framework';

			/**
			 * @access      protected
			 * @var         string $plugin_screen_hook_suffix The slug of the plugin screen
			 * @since       3.0.0
			 */
			protected $plugin_screen_hook_suffix = null;

			/**
			 * @access      protected
			 * @var         string $plugin_network_activated Check for plugin network activation
			 * @since       3.0.0
			 */
			protected $plugin_network_activated = null;

			/**
			 * @access      private
			 * @var         \FusionReduxFrameworkPlugin $instance The one true FusionReduxFrameworkPlugin
			 * @since       3.0.0
			 */
			private static $instance;

			/**
			 * Get active instance
			 *
			 * @access      public
			 * @since       3.1.3
			 * @return      self::$instance The one true FusionReduxFrameworkPlugin
			 */
			public static function instance() {
				if ( ! self::$instance ) {
					self::$instance = new self;
					self::$instance->get_fusionredux_options();
					self::$instance->includes();
					self::$instance->hooks();
				}

				return self::$instance;
			}

			// Shim since we changed the function name. Deprecated.
			public static function get_instance() {
				if ( ! self::$instance ) {
					self::$instance = new self;
					self::$instance->get_fusionredux_options();
					self::$instance->includes();
					self::$instance->hooks();
				}

				return self::$instance;
			}

			/**
			 * Get FusionRedux options
			 *
			 * @access      public
			 * @since       3.1.3
			 * @return      void
			 */
			public function get_fusionredux_options() {

				// Setup defaults
				$defaults = array(
					'demo' => false,
				);

				// If multisite is enabled
				if ( is_multisite() ) {

					// Get network activated plugins
					$plugins = get_site_option( 'active_sitewide_plugins' );

					foreach ( $plugins as $file => $plugin ) {
						if ( strpos( $file, 'fusionredux-framework.php' ) !== false ) {
							$this->plugin_network_activated = true;
							$this->options                  = get_site_option( 'FusionReduxFrameworkPlugin', $defaults );
						}
					}
				}

				// If options aren't set, grab them now!
				if ( empty( $this->options ) ) {
					$this->options = get_option( 'FusionReduxFrameworkPlugin', $defaults );
				}
			}

			/**
			 * Include necessary files
			 *
			 * @access      public
			 * @since       3.1.3
			 * @return      void
			 */
			public function includes() {
				// Include FusionReduxCore
				if ( file_exists( dirname( __FILE__ ) . '/FusionReduxCore/framework.php' ) ) {
					require_once wp_normalize_path( dirname( __FILE__ ) . '/FusionReduxCore/framework.php' );
				}

				if ( isset( FusionReduxFramework::$_as_plugin ) ) {
					FusionReduxFramework::$_as_plugin = true;
				}

				if ( file_exists( dirname( __FILE__ ) . '/FusionReduxCore/fusionredux-extensions/config.php' ) ) {
					require_once wp_normalize_path( dirname( __FILE__ ) . '/FusionReduxCore/fusionredux-extensions/config.php' );
				}

				// Include demo config, if demo mode is active
				if ( $this->options['demo'] && file_exists( dirname( __FILE__ ) . '/sample/sample-config.php' ) ) {
					require_once wp_normalize_path( dirname( __FILE__ ) . '/sample/sample-config.php' );
				}
			}

			/**
			 * Run action and filter hooks
			 *
			 * @access      private
			 * @since       3.1.3
			 * @return      void
			 */
			private function hooks() {
				add_action( 'wp_loaded', array( $this, 'options_toggle_check' ) );

				// Activate plugin when new blog is added
				add_action( 'wpmu_new_blog', array( $this, 'activate_new_site' ) );

				// Display admin notices
				add_action( 'admin_notices', array( $this, 'admin_notices' ) );

				// Edit plugin metalinks
				add_filter( 'plugin_row_meta', array( $this, 'plugin_metalinks' ), null, 2 );

				add_action( 'activated_plugin', array( $this, 'load_first' ) );

				do_action( 'fusionredux/plugin/hooks', $this );
			}

			public function load_first() {
				$plugin_dir = FusionRedux_Helpers::cleanFilePath( WP_PLUGIN_DIR ) . '/';
				$self_file  = FusionRedux_Helpers::cleanFilePath( __FILE__ );

				$path = str_replace( $plugin_dir, '', $self_file );
				$path = str_replace( 'class.fusionredux-plugin.php', 'fusionredux-framework.php', $path );

				if ( $plugins = get_option( 'active_plugins' ) ) {
					if ( $key = array_search( $path, $plugins ) ) {
						array_splice( $plugins, $key, 1 );
						array_unshift( $plugins, $path );
						update_option( 'active_plugins', $plugins );
					}
				}
			}

			/**
			 * Fired on plugin activation
			 *
			 * @access      public
			 * @since       3.0.0
			 *
			 * @param       boolean $network_wide True if plugin is network activated, false otherwise
			 *
			 * @return      void
			 */
			public static function activate( $network_wide ) {
				if ( function_exists( 'is_multisite' ) && is_multisite() ) {
					if ( $network_wide ) {
						// Get all blog IDs
						$blog_ids = self::get_blog_ids();

						foreach ( $blog_ids as $blog_id ) {
							switch_to_blog( $blog_id );
							self::single_activate();
						}
						restore_current_blog();
					} else {
						self::single_activate();
					}
				} else {
					self::single_activate();
				}

				delete_site_transient( 'update_plugins' );
			}

			/**
			 * Fired when plugin is deactivated
			 *
			 * @access      public
			 * @since       3.0.0
			 *
			 * @param       boolean $network_wide True if plugin is network activated, false otherwise
			 *
			 * @return      void
			 */
			public static function deactivate( $network_wide ) {
				if ( function_exists( 'is_multisite' ) && is_multisite() ) {
					if ( $network_wide ) {
						// Get all blog IDs
						$blog_ids = self::get_blog_ids();

						foreach ( $blog_ids as $blog_id ) {
							switch_to_blog( $blog_id );
							self::single_deactivate();
						}
						restore_current_blog();
					} else {
						self::single_deactivate();
					}
				} else {
					self::single_deactivate();
				}

				delete_option( 'FusionReduxFrameworkPlugin' );
			}

			/**
			 * Fired when a new WPMU site is activated
			 *
			 * @access      public
			 * @since       3.0.0
			 *
			 * @param       int $blog_id The ID of the new blog
			 *
			 * @return      void
			 */
			public function activate_new_site( $blog_id ) {
				if ( 1 !== did_action( 'wpmu_new_blog' ) ) {
					return;
				}

				switch_to_blog( $blog_id );
				self::single_activate();
				restore_current_blog();
			}

			/**
			 * Get all IDs of blogs that are not activated, not spam, and not deleted
			 *
			 * @access      private
			 * @since       3.0.0
			 * @global      object $wpdb
			 * @return      array|false Array of IDs or false if none are found
			 */
			private static function get_blog_ids() {
				global $wpdb;

				// Get an array of IDs
				$sql = "SELECT blog_id FROM $wpdb->blogs
					WHERE archived = '0' AND spam = '0'
					AND deleted = '0'";

				return $wpdb->get_col( $sql );
			}

			/**
			 * Fired for each WPMS blog on plugin activation
			 *
			 * @access      private
			 * @since       3.0.0
			 * @return      void
			 */
			private static function single_activate() {
				$notices   = get_option( 'FusionReduxFrameworkPlugin_ACTIVATED_NOTICES', array() );
				$notices[] = __( 'FusionRedux Framework has an embedded demo.', 'fusion-builder' ) . ' <a href="./plugins.php?FusionReduxFrameworkPlugin=demo">' . __( 'Click here to activate the sample config file.', 'fusion-builder' ) . '</a>';

				update_option( 'FusionReduxFrameworkPlugin_ACTIVATED_NOTICES', $notices );
			}

			/**
			 * Display admin notices
			 *
			 * @access      public
			 * @since       3.0.0
			 * @return      void
			 */
			public function admin_notices() {
				do_action( 'FusionReduxFrameworkPlugin_admin_notice' );
				$notices = get_option( 'FusionReduxFrameworkPlugin_ACTIVATED_NOTICES', '' );
				if ( !empty( $notices ) ) {
					foreach ( $notices as $notice ) {
						echo '<div class="updated notice is-dismissible"><p>' . $notice . '</p></div>';
					}

					delete_option( 'FusionReduxFrameworkPlugin_ACTIVATED_NOTICES' );
				}
			}

			/**
			 * Fired for each blog when the plugin is deactivated
			 *
			 * @access      private
			 * @since       3.0.0
			 * @return      void
			 */
			private static function single_deactivate() {
				delete_option( 'FusionReduxFrameworkPlugin_ACTIVATED_NOTICES' );
			}

			/**
			 * Turn on or off
			 *
			 * @access      public
			 * @since       3.0.0
			 * @global      string $pagenow The current page being displayed
			 * @return      void
			 */
			public function options_toggle_check() {
				global $pagenow;

				if ( $pagenow == 'plugins.php' && is_admin() && ! empty( $_GET['FusionReduxFrameworkPlugin'] ) ) {
					$url = './plugins.php';

					if ( $_GET['FusionReduxFrameworkPlugin'] == 'demo' ) {
						if ( $this->options['demo'] == false ) {
							$this->options['demo'] = true;
						} else {
							$this->options['demo'] = false;
						}
					}

					if ( is_multisite() && is_network_admin() && $this->plugin_network_activated ) {
						update_site_option( 'FusionReduxFrameworkPlugin', $this->options );
					} else {
						update_option( 'FusionReduxFrameworkPlugin', $this->options );
					}

					wp_redirect( $url );
				}
			}

			/**
			 * Add settings action link to plugins page
			 *
			 * @access      public
			 * @since       3.0.0
			 * @return      void
			 */
			public function add_action_links( $links ) {
				// In case we ever want to do this...
				return $links;

				/**
				 * return array_merge(
				 *      array( 'fusionredux_plugin_settings' => '<a href="' . admin_url( 'plugins.php?page=' . 'fusionredux_plugin_settings' ) . '">' . __( 'Settings', 'fusionredux-framework' ) . '</a>' ),
				 *      $links
				 * );
				 */
			}

			/**
			 * Edit plugin metalinks
			 *
			 * @access      public
			 * @since       3.0.0
			 *
			 * @param       array  $links The current array of links
			 * @param       string $file  A specific plugin row
			 *
			 * @return      array The modified array of links
			 */
			public function plugin_metalinks( $links, $file ) {
				if ( strpos( $file, 'fusionredux-framework.php' ) !== false && fusion_is_plugin_activated( $file ) ) {

					$new_links = array(
						'<a href="' . 'http://' . 'docs.fusionreduxframework.com/" target="_blank">' . __( 'Docs', 'fusion-builder' ) . '</a>',
						'<a href="' . 'https://' . 'github.com/FusionReduxFramework/fusionredux-framework" target="_blank">' . __( 'Repo', 'fusion-builder' ) . '</a>',
						'<a href="' . 'http://' . 'build.fusionreduxframework.com/" target="_blank">' . __( 'Builder', 'fusion-builder' ) . '</a>',
						'<a href="' . admin_url( 'tools.php?page=fusionredux-support' ) . '">' . __( 'Get Support', 'fusion-builder' ) . '</a>',
					);

					if ( ( is_multisite() && $this->plugin_network_activated ) || ! is_network_admin() || ! is_multisite() ) {
						if ( $this->options['demo'] ) {
							$new_links[3] .= '<br /><span style="display: block; padding-top: 6px;"><a href="./plugins.php?FusionReduxFrameworkPlugin=demo" style="color: #bc0b0b;">' . __( 'Deactivate Demo Mode', 'fusion-builder' ) . '</a></span>';
						} else {
							$new_links[3] .= '<br /><span style="display: block; padding-top: 6px;"><a href="./plugins.php?FusionReduxFrameworkPlugin=demo" style="color: #bc0b0b;">' . __( 'Activate Demo Mode', 'fusion-builder' ) . '</a></span>';
						}
					}

					$links = array_merge( $links, $new_links );
				}

				return $links;
			}
		}
	}