HEX
Server: Apache
System: Linux dinesh8149 5.15.98-grsec-sharedvalley-2.lc.el8.x86_64 #1 SMP Thu Mar 9 09:07:30 -03 2023 x86_64
User: usesambura1 (1212012)
PHP: 7.0.33
Disabled: apache_child_terminate,dl,escapeshellarg,escapeshellcmd,exec,link,mail,openlog,passthru,pcntl_alarm,pcntl_exec,pcntl_fork,pcntl_get_last_error,pcntl_getpriority,pcntl_setpriority,pcntl_signal,pcntl_signal_dispatch,pcntl_sigprocmask,pcntl_sigtimedwait,pcntl_sigwaitinfo,pcntl_strerror,pcntl_wait,pcntl_waitpid,pcntl_wexitstatus,pcntl_wifexited,pcntl_wifsignaled,pcntl_wifstopped,pcntl_wstopsig,pcntl_wtermsig,php_check_syntax,php_strip_whitespace,popen,proc_close,proc_open,shell_exec,symlink,system
Upload Files
File: /home/storage/c/63/6c/usesambura1/public_html/yr/wp-content/themes/blocksy/admin/dashboard/core.php
<?php
/**
 * Admin Dashboard
 *
 * @copyright 2019-present Creative Themes
 * @license   http://www.gnu.org/copyleft/gpl.html GNU General Public License
 * @package Blocksy
 */

defined( 'ABSPATH' ) || die( "Don't run this file directly!" );

function blocksy_is_dashboard_page() {
	global $pagenow;

	$is_ct_settings =
		// 'themes.php' === $pagenow &&
		isset( $_GET['page'] ) && 'ct-dashboard' === $_GET['page'];

	return $is_ct_settings;
}

class Blocksy_Dashboard_Page {
	private $templates;

	private $page_slug = 'ct-dashboard';

	public function is_dashboard_page() {
		return blocksy_is_dashboard_page();
	}

	public function __construct() {
		add_action(
			'admin_menu',
			[$this, 'setup_framework_page'],
			5
		);

		if (is_admin() && defined('DOING_AJAX') && DOING_AJAX) {
			$plugins_api = new Blocksy_Admin_Dashboard_API_Premium_Plugins();
			$plugins_api->attach_ajax_actions();

			$api = new Blocksy_Admin_Dashboard_API();
			$api->attach_ajax_actions();
		}

		if ($this->is_dashboard_page()) {
			add_action(
				'admin_enqueue_scripts',
				[$this, 'enqueue_static']
			);
		}

		if ($this->is_dashboard_page()) {
			add_action(
				'admin_print_scripts',
				function () {
					global $wp_filter;

					if (is_user_admin()) {
						if (isset($wp_filter['user_admin_notices'])) {
							unset($wp_filter['user_admin_notices']);
						}
					} elseif (isset($wp_filter['admin_notices'])) {
						unset($wp_filter['admin_notices']);
					}

					if (isset($wp_filter['all_admin_notices'])) {
						unset($wp_filter['all_admin_notices']);
					}
				}
			);
		}
	}

	public function enqueue_static() {
		$theme = blocksy_get_wp_parent_theme();

		$dependencies = [
			'underscore',
			'wp-util',
			'ct-events',
			'ct-options-scripts'
		];

		wp_enqueue_script(
			'ct-dashboard-scripts',
			get_template_directory_uri() . '/admin/dashboard/static/bundle/main.js',
			$dependencies,
			$theme->get('Version'),
            false
		);

		if (defined('WP_DEBUG')) {
			wp_localize_script(
				'ct-dashboard-scripts',
				'WP_DEBUG',
				[ 'debug' => true ]
			);
		}

		$manager = new Blocksy_Plugin_Manager();
		$plugins_config = $manager->get_config();

		wp_localize_script(
			'ct-dashboard-scripts',
			'ctDashboardLocalizations',
			[
				'ajax_url'      => admin_url( 'admin-ajax.php' ),
				'customizer_url' => admin_url('/customize.php?autofocus'),
				'theme_version' => $theme->get('Version'),
				'theme_name'    => $theme->get('Name'),
				'theme_custom_description' => $theme->get('CustomDescription'),
				'is_child_theme' => is_child_theme(),
				'child_theme_exists' => isset(wp_get_themes()['blocksy-child']),
				'home_url' => home_url(),
				'clean_install_plugins' => $plugins_config,
				'is_companion_active' => $manager->get_companion_status()['status'],
				'companion_download_link' => 'https://creativethemes.com/blocksy/companion/',
				'child_download_link' => 'https://creativethemes.com/downloads/blocksy-child.zip',
				'plugin_data' => apply_filters('blocksy_dashboard_localizations', []),
				'support_url' => apply_filters(
					'blocksy_dashboard_support_url',
					'https://creativethemes.com/blocksy/support/'
				),
				'dashboard_has_heading' => apply_filters(
					'blocksy_dashboard_has_heading',
					'yes'
				)
			]
		);

		wp_enqueue_style(
			'ct-dashboard-styles',
			get_template_directory_uri() . '/admin/dashboard/static/bundle/main.min.css',
			[],
			$theme->get('Version')
		);

		if (is_rtl()) {
			wp_enqueue_style(
				'ct-dashboard-rtl-styles',
				get_template_directory_uri() . '/admin/dashboard/static/bundle/main-rtl.min.css',
				['ct-dashboard-styles'],
				$theme->get('Version')
			);
		}
	}

	public function setup_framework_page() {
		$theme = blocksy_get_wp_parent_theme();
		if (! current_user_can('activate_plugins')) {
			return;
		}

		$welcome_page_options = [
			'title'            => $theme->get('Name'),
			'menu-title'       => $theme->get('Name'),
			'permision'        => 'activate_plugins',
			'top-level-handle' => $this->page_slug,
			'callback'         => [ $this, 'welcome_page_template' ],
			'icon-url' => apply_filters(
				'blocksy:dashboard:icon-url',
				get_template_directory_uri() . '/admin/dashboard/static/img/navigation.svg'
			),
			'position'         => 2,
		];

		$result = apply_filters(
			'blocksy_add_menu_page',
			false,
			$welcome_page_options
		);

		if (! $result) {
			add_theme_page(
				$welcome_page_options['title'],
				$welcome_page_options['menu-title'],
				$welcome_page_options['permision'],
				$welcome_page_options['top-level-handle'],
				$welcome_page_options['callback']
			);
		}
	}

	public function welcome_page_template() {
		if ( ! current_user_can( 'manage_options' ) ) {
			wp_die( esc_html( __( 'You do not have sufficient permissions to access this page.', 'blocksy' ) ) );
		}

		echo '<div id="ct-dashboard"></div>';
	}
}

new Blocksy_Dashboard_Page();