AnonSec Shell
Server IP : 52.91.253.208  /  Your IP : 18.191.178.211   [ Reverse IP ]
Web Server : Apache
System : Linux ip-172-26-9-9 4.19.0-25-cloud-amd64 #1 SMP Debian 4.19.289-1 (2023-07-24) x86_64
User : daemon ( 1)
PHP Version : 7.3.18
Disable Function : NONE
Domains : 3 Domains
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /opt/bitnami/apps/wordpress/htdocs/wp-content/plugins/admin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


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

Current File : /opt/bitnami/apps/wordpress/htdocs/wp-content/plugins/admin/dismiss-notice.php
<?php
namespace ElementorExtras;

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

class Dismiss_Notice {
	
	/**
	 * Init hooks.
	 *
	 * @since 1.8.4
	 */
	public static function init() {
		add_action( 'admin_enqueue_scripts', 		array( __CLASS__, 'enqueue_script' ) );
		add_action( 'wp_ajax_dismiss_admin_notice', array( __CLASS__, 'dismiss_admin_notice' ) );
	}

	/**
	 * Enqueue javascript and variables.
	 *
	 * @since 1.8.4
	 */
	public static function enqueue_script() {

		$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';

		if( is_customize_preview() )
			return;

		wp_enqueue_script(
			'elementor-extras-notices',
			plugins_url( '/assets/js/notice' . $suffix . '.js', ELEMENTOR_EXTRAS__FILE__ ),
			[ 'jquery', 'common' ],
			false,
			true
		);
		
		wp_localize_script(
			'elementor-extras-notices',
			'dismissible_notice',
			array(
				'nonce' => wp_create_nonce( 'dismissible-notice' ),
			)
		);
	}

	/**
	 * Handles Ajax request to persist notices dismissal.
	 * Uses check_ajax_referer to verify nonce.
	 *
	 * @since 1.8.4
	 */
	public static function dismiss_admin_notice() {
		$option_name        = sanitize_text_field( $_POST['option_name'] );
		$dismissible_length = sanitize_text_field( $_POST['dismissible_length'] );
		$transient          = 0;

		if ( 'forever' != $dismissible_length ) {
			// If $dismissible_length is not an integer default to 1
			$dismissible_length = ( 0 == absint( $dismissible_length ) ) ? 1 : $dismissible_length;
			$transient          = absint( $dismissible_length ) * DAY_IN_SECONDS;
			$dismissible_length = strtotime( absint( $dismissible_length ) . ' days' );
		}
		check_ajax_referer( 'dismissible-notice', 'nonce' );
		set_site_transient( $option_name, $dismissible_length, $transient );
		wp_die();
	}

	/**
	 * Is admin notice active?
	 *
	 * @since 1.8.4
	 * @param string $arg data-dismissible content of notice.
	 * @return bool
	 */
	public static function is_admin_notice_active( $arg ) {

		$array       = explode( '-', $arg );
		$length      = array_pop( $array );
		$option_name = implode( '-', $array );
		$db_record   = get_site_transient( $option_name );

		if ( 'forever' == $db_record ) {
			return false;
		} elseif ( absint( $db_record ) >= time() ) {
			return false;
		} else {
			return true;
		}
	}
}

Anon7 - 2022
AnonSec Team