AnonSec Shell
Server IP : 172.67.157.199  /  Your IP : 18.191.181.12   [ 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/plugins/coblocks/includes/admin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


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

Current File : /var/www/wp-content/plugins/coblocks/includes/admin/class-coblocks-plugin-deactivation.php
<?php
/**
 * Register plugin deactivation class.
 *
 * @package CoBlocks
 */

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

/**
 * CoBlocks_Plugin_Deactivation Class
 *
 * @since 2.22.1
 */
class CoBlocks_Plugin_Deactivation {

	const CONTAINER_CLASS = 'coblocks-plugin-deactivate-modal';

	/**
	 * Constructor
	 */
	public function __construct() {

		add_action( 'admin_footer-plugins.php', array( $this, 'admin_coblocks_deactivation_modal' ) );

		add_filter( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );

	}

	/**
	 * Loads the asset file for the given script or style.
	 * Returns a default if the asset file is not found.
	 *
	 * @param string $filepath The name of the file without the extension.
	 *
	 * @return array The asset file contents.
	 */
	public function get_asset_file( $filepath ) {

		$asset_path = COBLOCKS_PLUGIN_DIR . $filepath . '.asset.php';

		return file_exists( $asset_path )
			? include $asset_path
			: array(
				'dependencies' => array(),
				'version'      => COBLOCKS_VERSION,
			);

	}

	/**
	 * Register meta.
	 *
	 * @param string $hook_suffix The current admin page.
	 */
	public function enqueue_scripts( $hook_suffix ) {

		if ( 'plugins.php' !== $hook_suffix ) {

			return;

		}

		$name       = 'coblocks-plugin-deactivation';
		$filepath   = 'dist/' . $name;
		$asset_file = $this->get_asset_file( $filepath );

		// Enqueue modal script.
		wp_enqueue_script(
			'coblocks-plugin-deactivation',
			COBLOCKS_PLUGIN_URL . $filepath . '.js',
			$asset_file['dependencies'],
			$asset_file['version'],
			true
		);

		$wpnux_export_data = json_decode( get_option( 'wpnux_export_data', '[]' ), true );

		// Pass data.
		wp_localize_script(
			'coblocks-plugin-deactivation',
			'coblocksDeactivateData',
			array(
				'containerClass'  => self::CONTAINER_CLASS,
				'hostname'        => gethostname(),
				'domain'          => site_url(),
				'coblocksVersion' => COBLOCKS_VERSION,
				'wpVersion'       => $GLOBALS['wp_version'],
				'wpOptions'       => array(
					'persona' => isset( $wpnux_export_data['_meta']['persona'] ) ? $wpnux_export_data['_meta']['persona'] : null,
					'skill'   => isset( $wpnux_export_data['_meta']['skill'] ) ? $wpnux_export_data['_meta']['skill'] : null,
				),
			)
		);

		// Styles.
		$name     = 'style-coblocks-plugin-deactivation';
		$filepath = 'dist/' . $name;
		$rtl      = ! is_rtl() ? '' : '-rtl';

		wp_enqueue_style(
			'coblocks-plugin-deactivation',
			COBLOCKS_PLUGIN_URL . $filepath . $rtl . '.css',
			array( 'wp-components' ),
			$asset_file['version']
		);

	}

	/**
	 * Add CoBlocks Deactivation Modal backdrop to the DOM.
	 */
	public function admin_coblocks_deactivation_modal() {

		?>

		<div id="<?php echo esc_attr( self::CONTAINER_CLASS ); ?>"></div>

		<?php

	}

}

return new CoBlocks_Plugin_Deactivation();

Anon7 - 2022
AnonSec Team