<?php /** * Redux Themecheck Class * * @class Redux_Core * @version 3.5.0 * @package Redux Framework/Classes */ defined( 'ABSPATH' ) || exit; // Don't duplicate me! if ( ! class_exists( 'Redux_ThemeCheck', false ) ) { /** * Class Redux_ThemeCheck */ class Redux_ThemeCheck { /** * Plugin version, used for cache-busting of style and script file references. * * @since 1.0.0 * @var string */ protected $version = '1.0.0'; /** * Instance of this class. * * @since 1.0.0 * @var object */ protected static $instance = null; /** * Instance of the Redux class. * * @since 1.0.0 * @var object */ protected static $redux = null; /** * Details of the embedded Redux class. * * @since 1.0.0 * @var object */ protected static $redux_details = null; /** * Slug for various elements. * * @since 1.0.0 * @var string */ protected $slug = 'redux_themecheck'; /** * Initialize the plugin by setting localization, filters, and administration functions. * * @since 1.0.0 */ private function __construct() { if ( ! class_exists( 'ThemeCheckMain' ) ) { return; } // Load admin style sheet and JavaScript. add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_admin_styles' ) ); add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_admin_scripts' ) ); add_action( 'themecheck_checks_loaded', array( $this, 'disable_checks' ) ); add_action( 'themecheck_checks_loaded', array( $this, 'add_checks' ) ); } /** * Return an instance of this class. * * @since 1.0.0 * @return object A single instance of this class. */ public static function get_instance() { // If the single instance hasn't been set, set it now. if ( null === self::$instance ) { self::$instance = new self(); } return self::$instance; } /** * Return an instance of this class. * * @since 1.0.0 * @return object A single instance of this class. */ public static function get_redux_instance() { // If the single instance hasn't been set, set it now. if ( null === self::$redux && Redux_Core::$as_plugin ) { self::$redux = new ReduxFramework(); self::$redux->init(); } return self::$redux; } /** * Return the Redux path info, if had. * * @param array $php_files Array of files to check. * * @return object A single instance of this class. *@since 1.0.0 */ public static function get_redux_details( array $php_files = array() ) { if ( null === self::$redux_details ) { foreach ( $php_files as $php_key => $phpfile ) { // phpcs:ignore Generic.Strings.UnnecessaryStringConcat if ( false !== strpos( $phpfile, 'class' . ' ReduxFramework {' ) ) { self::$redux_details = array( 'filename' => Redux_Core::strtolower( basename( $php_key ) ), 'path' => $php_key, ); self::$redux_details['dir'] = str_replace( basename( $php_key ), '', $php_key ); self::$redux_details['parent_dir'] = str_replace( basename( self::$redux_details['dir'] ) . '/', '', self::$redux_details['dir'] ); } } } if ( null === self::$redux_details ) { self::$redux_details = false; } return self::$redux_details; } /** * Disable Theme-Check checks that aren't relevant for ThemeForest themes * * @since 1.0.0 */ public function disable_checks() { global $themechecks; /** $checks_to_disable = array( * 'IncludeCheck', * 'I18NCheck', * 'AdminMenu', * 'Bad_Checks', * 'MalwareCheck', * 'Theme_Support', * 'CustomCheck', * 'EditorStyleCheck', * 'IframeCheck', * ); * foreach ( $themechecks as $keyindex => $check ) { * if ( $check instanceof themecheck ) { * $check_class = get_class( $check ); * if ( in_array( $check_class, $checks_to_disable ) ) { * unset( $themechecks[$keyindex] ); * } * } * } */ } /** * Disable Theme-Check checks that aren't relevant for ThemeForest themes * * @since 1.0.0 */ public function add_checks() { global $themechecks; // load all the checks in the checks directory. $dir = 'checks'; foreach ( glob( dirname( __FILE__ ) . '/' . $dir . '/*.php' ) as $file ) { require_once $file; } } /** * Register and enqueue admin-specific style sheet. * * @since 1.0.1 */ public function enqueue_admin_styles() { $screen = get_current_screen(); if ( 'appearance_page_themecheck' === $screen->id ) { wp_enqueue_style( $this->slug . '-admin-styles', Redux_Core::$url . 'inc/themecheck/css/admin.css', array(), $this->version ); } } /** * Register and enqueue admin-specific JavaScript. * * @since 1.0.1 */ public function enqueue_admin_scripts() { $screen = get_current_screen(); if ( 'appearance_page_themecheck' === $screen->id ) { wp_enqueue_script( $this->slug . '-admin-script', Redux_Core::$url . 'inc/themecheck/js/admin' . Redux_Functions::is_min() . '.js', array( 'jquery' ), $this->version, true ); if ( ! isset( $_POST['themename'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification $intro = '<h2>Redux Theme-Check</h2>'; $intro .= '<p>Extra checks for Redux to ensure you\'re ready for marketplace submission to marketplaces.</p>'; $redux_check_intro['text'] = $intro; wp_localize_script( $this->slug . '-admin-script', 'redux_check_intro', $redux_check_intro ); } } } } Redux_ThemeCheck::get_instance(); }