AnonSec Shell
Server IP : 172.67.157.199  /  Your IP : 18.221.124.137   [ Reverse IP ]
Web Server : Apache
System : Linux b70eb322-3aee-0c53-7c82-0db91281f2c6.secureserver.net 6.1.90-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 2 12:09:22 EDT 2024 x86_64
User : root ( 0)
PHP Version : 8.0.30.2
Disable Function : NONE
Domains : 0 Domains
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/wp-content/mu-plugins/vendor/wpex/expert-banner/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/www/wp-content/mu-plugins/vendor/wpex/expert-banner/expert-banner.php
<?php
/**
 * Plugin Name: WPEX Expert Banner
 * Plugin URI: https://godaddy.com/
 * Description: WPEX WordPress plugin for Expert Banner. Provides a link to expert services in the header of the editor screen. Intended to be used as a sub-plugin of System Plugin.
 * Version: 1.1.1
 * Requires at least: 5.9
 * Requires PHP: 7.4
 * Author: GoDaddy
 * Author URI: https://godaddy.com
 * Text Domain: expert-banner
 * Domain Path: /languages
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * 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, see <http://www.gnu.org/licenses/>.
 *
 * @package Expert_Banner
 */

defined('ABSPATH') || exit;

// We only enqueue the scripts for GD not resellers.
if ( defined( 'GD_RESELLER' ) && GD_RESELLER > 1 ) {
	return;
}

define('WPEX_EB_OPTION_HIDDEN', 'wpex_eb_hidden');

/**
 * Enqueue styles to handle expert banner styles.
 *
 * @action admin_enqueue_scripts
 *
 * @param string $hook
 */
function wpex_eb_enqueue_scripts() {

	global $pagenow;
	// Ensure Expert Banner only loads if within the post editor.
	if (
		! isset( $pagenow ) || strpos( $pagenow, 'post-new.php' ) === false 
	) {
		return;
	}

	wp_enqueue_style(
		'wpex-expert-banner',
		plugins_url("build/index.css", __FILE__),
		[],
		'1.0.0'
	);

	wp_enqueue_script(
		'wpex-expert-banner',
		plugins_url("build/index.js", __FILE__),
		[],
		'1.0.0',
		true,
	);

	wp_localize_script(
		'wpex-expert-banner',
		'wpexExpertBanner',
		[
			'optionHidden' => WPEX_EB_OPTION_HIDDEN
		],
		'1.0.0',
		true,
	);
}

add_action( 'admin_enqueue_scripts', 'wpex_eb_enqueue_scripts' );


/**
 * Register the settings to hide the expert banner.
 *
 * @action admin_enqueue_scripts
 *
 * @param string $hook
 */
function wpex_eb_register_settings() {

	register_setting(
		WPEX_EB_OPTION_HIDDEN,
		WPEX_EB_OPTION_HIDDEN,
		[
			'show_in_rest' => true,
			'default'      => false,
			'type'         => 'boolean',
		]
	);

}

add_action( 'rest_api_init', 'wpex_eb_register_settings' );

Anon7 - 2022
AnonSec Team