HEX
Server: Apache
System: Linux web2213.uni5.net 5.4.282-1.el8.elrepo.x86_64 #1 SMP Mon Aug 19 18:33:22 EDT 2024 x86_64
User: clinicamaciel (596848)
PHP: 7.3.33
Disabled: apache_child_terminate,c99_buff_prepare,c99_sess_put,dl,eval,exec,leak,link,myshellexec,openlog,passthru,pclose,pcntl_exec,php_check_syntax,php_strip_whitespace,popen,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,show_source,symlink,system,socket_listen,socket_create_listen,putenv
Upload Files
File: /home/clinicamaciel/www/wp-content/themes/chocorocco/includes/admin.php
<?php
/**
 * Admin utilities
 *
 * @package WordPress
 * @subpackage CHOCOROCCO
 * @since CHOCOROCCO 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('chocorocco_admin_theme_setup') ) {
	add_action( 'after_setup_theme', 'chocorocco_admin_theme_setup' );
	function chocorocco_admin_theme_setup() {
		// Add theme icons
		add_action('admin_footer',	 						'chocorocco_admin_footer');

		// Enqueue scripts and styles for admin
		add_action("admin_enqueue_scripts",					'chocorocco_admin_scripts');
		add_action("admin_footer",							'chocorocco_admin_localize_scripts');
		
		// Show admin notice
		add_action('admin_notices',							'chocorocco_admin_notice', 2);
		add_action('wp_ajax_chocorocco_hide_admin_notice',		'chocorocco_callback_hide_admin_notice');

		// TGM Activation plugin
		add_action('tgmpa_register',						'chocorocco_register_plugins');
	}
}

// Show admin notice
if ( !function_exists( 'chocorocco_admin_notice' ) ) {
	
	function chocorocco_admin_notice() {
		if (in_array(chocorocco_get_value_gp('action'), array('vc_load_template_preview'))) return;
		$opt_name = 'chocorocco_admin_notice';
		$show = get_option('chocorocco_admin_notice');
		if ($show !== false && (int) $show == 0) return;
		require_once chocorocco_get_file_dir( 'templates/admin-notice.php' );
	}
}

// Hide admin notice
if ( !function_exists( 'chocorocco_callback_hide_admin_notice' ) ) {
	
	function chocorocco_callback_hide_admin_notice() {
		update_option('chocorocco_admin_notice', '0');
		exit;
	}
}


//-------------------------------------------------------
//-- Styles and scripts
//-------------------------------------------------------
	
// Load inline styles
if ( !function_exists( 'chocorocco_admin_footer' ) ) {
	
	function chocorocco_admin_footer() {
		// Get current screen
		$screen = function_exists('get_current_screen') ? get_current_screen() : false;
		if (is_object($screen) && $screen->id=='nav-menus') {
			chocorocco_show_layout(chocorocco_show_custom_field('chocorocco_icons_popup',
													array(
														'type'	=> 'icons',
														'style'	=> chocorocco_get_theme_setting('icons_type'),
														'button'=> false,
														'icons'	=> true
													),
													null)
								);
		}
	}
}
	
// Load required styles and scripts for admin mode
if ( !function_exists( 'chocorocco_admin_scripts' ) ) {
	
	function chocorocco_admin_scripts() {

		// Add theme styles
		wp_enqueue_style(  'chocorocco-admin',  chocorocco_get_file_url('css/admin.css') );

		// Links to selected fonts
		$screen = function_exists('get_current_screen') ? get_current_screen() : false;
		if (is_object($screen)) {
			if (chocorocco_options_allow_override(!empty($screen->post_type) ? $screen->post_type : $screen->id)) {
				// Load fontello icons
				// This style NEED theme prefix, because style 'fontello' some plugin contain different set of characters
				// and can't be used instead this style!
				wp_enqueue_style(  'fontello-icons', chocorocco_get_file_url('css/fontello/css/fontello-embedded.css') );
				wp_enqueue_style(  'fontello-animation', chocorocco_get_file_url('css/fontello/css/animation.css') );
				// Load theme fonts
				$links = chocorocco_theme_fonts_links();
				if (count($links) > 0) {
					foreach ($links as $slug => $link) {
						wp_enqueue_style( sprintf('chocorocco-font-%s', $slug), $link );
					}
				}
			} else if (apply_filters('chocorocco_filter_allow_theme_icons', is_customize_preview() || $screen->id=='nav-menus', !empty($screen->post_type) ? $screen->post_type : $screen->id)) {
				// Load fontello icons
				// This style NEED theme prefix, because style 'fontello' some plugin contain different set of characters
				// and can't be used instead this style!
				wp_enqueue_style(  'fontello-icons', chocorocco_get_file_url('css/fontello/css/fontello-embedded.css') );
			}
		}

		// Add theme scripts
		wp_enqueue_script( 'chocorocco-utils', chocorocco_get_file_url('js/_utils.js'), array('jquery'), null, true );
		wp_enqueue_script( 'chocorocco-admin', chocorocco_get_file_url('js/_admin.js'), array('jquery'), null, true );
	}
}
	
// Add variables in the admin mode
if ( !function_exists( 'chocorocco_admin_localize_scripts' ) ) {
	
	function chocorocco_admin_localize_scripts() {
		$screen = function_exists('get_current_screen') ? get_current_screen() : false;
		wp_localize_script( 'chocorocco-admin', 'CHOCOROCCO_STORAGE', apply_filters( 'chocorocco_filter_localize_script_admin', array(
			'admin_mode' => true,
			'screen_id' => is_object($screen) ? esc_attr($screen->id) : '',
			'ajax_url' => esc_url(admin_url('admin-ajax.php')),
			'ajax_nonce' => esc_attr(wp_create_nonce(admin_url('admin-ajax.php'))),
			'ajax_error_msg' => esc_html__('Server response error', 'chocorocco'),
			'icon_selector_msg' => esc_html__('Select the icon for this menu item', 'chocorocco'),
			'user_logged_in' => true
			))
		);
	}
}



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

// Register optional plugins
if ( !function_exists( 'chocorocco_register_plugins' ) ) {
	function chocorocco_register_plugins() {
		tgmpa(	apply_filters('chocorocco_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.
				)
			);
	}
}
?>