# adminify/4.2.6/Inc/Modules/DashboardWidget/DashboardWidget.php

Adminify – White Label, Admin Menu Editor, Login Customizer, version 4.2.6. 413 lines.

- Page: https://pluginprobe.com/plugins/adminify/4.2.6/code/Inc/Modules/DashboardWidget/DashboardWidget.php
- Raw: https://pluginprobe.com/plugins/adminify/4.2.6/raw/Inc/Modules/DashboardWidget/DashboardWidget.php
- Modified: 2026-05-20T13:22:08+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/adminify/4.2.6/code/Inc/Modules/DashboardWidget/DashboardWidget.php#L10-L20`.

```php
<?php

namespace PXLBSAdminify\Inc\Modules\DashboardWidget;

use PXLBSAdminify\Inc\Utils;
use PXLBSAdminify\Inc\Classes\Multisite_Helper;
use PXLBSAdminify\Inc\Modules\DashboardWidget\DashboardWidgetModel;

// no direct access allowed
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * PXLBSAdminify
 *
 * @package Module: Dashboard Widget
 *
 * @author Jewel Theme <support@jeweltheme.com>
 */

class DashboardWidget extends DashboardWidgetModel {

	public $url;
	public $roles;
	public $options;
	public $current_role;

	public function __construct() {
		$this->options = ( new DashboardWidget_Setttings() )->get();

		if ( is_admin() ) {
			add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_scripts' ] );
			add_action( 'wp_dashboard_setup', [ $this, 'create_dashboard_widgets' ], 999 );
            add_action( 'wp_network_dashboard_setup', [ $this, 'create_dashboard_widgets' ], 999 );

			if ( shortcode_exists( 'elementor-template' ) ) {
				add_action( 'wp_loaded', [ $this, 'override_elementor_shortcodes' ] );
			}

			// Welcome Panel Initialize
			if( ! get_user_meta( get_current_user_id(), 'pxlbsadminify_dismissed_welcome_panel', true )){
				add_action( 'admin_init', [ $this, 'welcome_init' ] );
			}
			add_action('admin_init', function() {
				// phpcs:ignore WordPress.Security.NonceVerification.Recommended -- read-only check, no state change.
				if ( isset( $_GET['welcome'] ) && '0' === sanitize_text_field( wp_unslash( $_GET['welcome'] ) ) ) {
						update_user_meta(get_current_user_id(), 'pxlbsadminify_dismissed_welcome_panel', true);
				}
			});
		}
	}
	/**
	 * Override elementor-template shortcode
	 */
	public function override_elementor_shortcodes() {
		add_shortcode( 'elementor-template', [ $this, 'override_elementor_template' ] );
	}

	public function override_elementor_template( $atts ) {
		extract(
			shortcode_atts(
				[
					'id' => '',
				],
				$atts
			)
		);

		$elementor = \Elementor\Plugin::$instance;
		$output    = '';
		$output   .= $elementor->frontend->register_styles();
		$output   .= $elementor->frontend->enqueue_styles();

		$output .= $elementor->frontend->get_builder_content( $id, true );

		$output .= $elementor->frontend->register_scripts();
		$output .= $elementor->frontend->enqueue_scripts();

		return $output;
	}


	/**
	 * Welcome Panel Initialize
	 */
	public function welcome_init() {
		if ( empty( $this->options['dashboard_widget_types'] ) ) {
			return;
		}

		$option = ! empty( $this->options['dashboard_widget_types']['welcome_dash_widget'] ) ? $this->options['dashboard_widget_types']['welcome_dash_widget'] : '';

		if ( ! empty( $option['enable_custom_welcome_dash_widget'] ) ) {
			// Restricted for User Roles
			// $restricted_for_dash_widget = ! empty( $option['user_roles'] ) ? $option['user_roles'] : '';
			// if ( !Utils::restricted_for( $restricted_for_dash_widget ) ) {
			// 	return;
			// }
			$this->render_welcome_panel_output();
		}
	}

	/**
	 * Render Welcome Panel Content
	 *
	 * @return void
	 */
	public function render_welcome_panel_output() {
		remove_action( 'welcome_panel', 'wp_welcome_panel' );
		add_action( 'welcome_panel', [ $this, 'render_welcome_panel' ] );

		// custom fallback for the users who don't have
		// enough capabilities to display welcome panel.
		if ( ! current_user_can( 'edit_theme_options' ) ) {
			add_action( 'admin_notices', [ $this, 'render_welcome_panel' ] );
		}
	}

	/**
	 * Render Welcome Panel
	 *
	 * @return void
	 */
	public function render_welcome_panel() {
		$latest_wordpress_version = get_bloginfo( 'version' );

		?>
		<div class="welcome-panel-content adminify-panel-content">
			<?php if($latest_wordpress_version >= '6.2'){ ?>
				<div class="welcome-panel-header">
					<?php if ( current_user_can( 'edit_theme_options' ) ) { ?>
						<a class="welcome-panel-close" href="<?php echo esc_url( admin_url( '?welcome=0' ) ); ?>"><?php esc_html_e( 'Dismiss', 'adminify' ); ?></a>
					<?php } ?>
					<?php $this->render_welcome_template(); ?>
				</div>
			<style>
				.wp-adminify .welcome-panel{
					background-color: #fff !important;
				}
				.wp-adminify #wpbody-content .adminify-panel-content{
					margin: auto auto;
					padding:0;
				}
				.wp-adminify #wpbody-content .welcome-panel-header{
					padding: 30px !important;
					max-width: inherit !important;
					padding-top: 50px !important;
				}
			</style>
			<?php } else{ ?>

				<?php if ( current_user_can( 'edit_theme_options' ) ) { ?>
					<a class="welcome-panel-close" href="<?php echo esc_url( admin_url( '?welcome=0' ) ); ?>"><?php esc_html_e( 'Dismiss', 'adminify' ); ?></a>
				<?php }
				$this->render_welcome_template();
			} ?>
		</div>

		<?php if ( current_user_can( 'manage_options' ) ) { ?>
			<script type="text/javascript">
				;
				(function($) {
					$(document).ready(function() {
						$('<div id="adminify-welcome-panel" class="adminify-welcome-panel"></div>').insertBefore('#dashboard-widgets-wrap').append($('.adminify-panel-content'));
					});
				})(jQuery);
			</script>
		<?php }
	}

	public function render_welcome_template() {
		$option = isset( $this->options['dashboard_widget_types']['welcome_dash_widget'] ) ? $this->options['dashboard_widget_types']['welcome_dash_widget'] : '';

		if ( isset( $option['widget_template_type'] ) && ! empty( $option['widget_template_type'] ) ) {
			$from_multisite = false;
			$ms_helper      = new Multisite_Helper();
			$switch_blog    = $from_multisite && $ms_helper->needs_to_switch_blog() ? true : false;

			if ( is_plugin_active( 'elementor/elementor.php' ) ) {
				$elementor = \Elementor\Plugin::$instance;
			}

			$css = ''; // Initialize the CSS variable
			$css = apply_filters('pxlbsadminify_dashboard_widgets/welcome_css', $css); // Apply the filter

			echo '<style>';
			echo Utils::kses_custom($css); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- kses_custom() is a wp_kses() wrapper; output already escaped.
			echo '</style>';

			// echo '<style>';
			// $css = '';
			// echo apply_filters('pxlbsadminify_dashboard_widgets/dismissible', $css);
			// echo '</style>';


			if ( $switch_blog ) {
				global $pxlbsadminify_blueprint;
				switch_to_blog( $pxlbsadminify_blueprint );
			}

			switch ( $option['widget_template_type'] ) {
				case 'specific_page':
					// $page_id = $option['custom_page'];
					// if ( $page_id ) {
					// 	$page    = get_page( $page_id );
					// 	$content = apply_filters( 'the_content', $page->post_content );
					// 	$content = str_replace( ']]>', ']]&gt;', $content );
					// 	echo wp_specialchars_decode( Utils::kses_custom( $content ) );
					// }

					$panel_height = !empty( $option['panel_height'] ) ? $option['panel_height'] : 600;

					$link = get_permalink($option['custom_page']);
					$link = add_query_arg('bknd', 1, $link);
					printf('<iframe class="wp-adminify--admin-page" src="%s"></iframe>', esc_url( $link ) );
					echo '<style>
						.welcome-panel-header{
							height: '. esc_attr( $panel_height ) .'px;
							overflow: hidden;
						}
						#wpbody{
							overflow:hidden;
						}
						#wpbody-content {
							position: relative;
							overflow: hidden;
						}
						iframe.wp-adminify--admin-page {
							width: 100%;
							height: 100%;
							position: relative;
						}
					</style>';

					break;

				case 'elementor_template':
					if ( is_plugin_active( 'elementor/elementor.php' ) ) {
						$template_id = $option['elementor_template_id'];
						if ( $template_id ) {
							$elementor->frontend->register_styles();
							$elementor->frontend->enqueue_styles();

							echo Utils::kses_custom( $elementor->frontend->get_builder_content( $template_id, true ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- kses_custom() is a wp_kses() wrapper; output already escaped.

							$elementor->frontend->register_scripts();
							$elementor->frontend->enqueue_scripts();
						}
					}
					break;

				case 'elementor_section':
					if ( is_plugin_active( 'elementor/elementor.php' ) ) {
						$template_id = $option['elementor_section_id'];
						if ( $template_id ) {
							$elementor->frontend->register_styles();
							$elementor->frontend->enqueue_styles();

							echo Utils::kses_custom( $elementor->frontend->get_builder_content( $template_id, true ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- kses_custom() is a wp_kses() wrapper; output already escaped.

							$elementor->frontend->register_scripts();
							$elementor->frontend->enqueue_scripts();
						}
					}
					break;

				case 'elementor_widget':
					if ( is_plugin_active( 'elementor/elementor.php' ) ) {
						$template_id = $option['elementor_widget_id'];
						if ( $template_id ) {
							$elementor->frontend->register_styles();
							$elementor->frontend->enqueue_styles();

							echo Utils::kses_custom( $elementor->frontend->get_builder_content( $template_id, true ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- kses_custom() is a wp_kses() wrapper; output already escaped.

							$elementor->frontend->register_scripts();
							$elementor->frontend->enqueue_scripts();
						}
					}
					break;

				case 'oxygen_template':
					if ( is_plugin_active( 'oxygen/functions.php' ) ) {
						$template_id = $option['oxygen_template_id'];
						if ( $template_id ) {
							echo do_shortcode( get_post_meta( $template_id, 'ct_builder_shortcodes', true ) );
						}
					}
					break;
			}

			if ( $switch_blog ) {
				restore_current_blog();
			}
		}
	}

	// Add Custom Dashboard Widgets
	public function create_dashboard_widgets() {
		$options = $this->options;

		$options = ! empty( $this->options['dashboard_widget_types']['dashboard_widgets'] ) ? $this->options['dashboard_widget_types']['dashboard_widgets'] : '';
		if ( empty( $options ) ) {
			return;
		}

		$before_content   = '';
		$after_content    = '';
		$dash_widget_data = [];

		foreach ( $options as $value ) {
			if ( is_array( $value ) && ! empty( $value ) ) {

				// Restricted for User Roles
				$restricted_for_dash_widget = ! empty( $value['user_roles'] ) ? $value['user_roles'] : '';

				if ( ! Utils::restricted_for( $restricted_for_dash_widget ) ) {
					return;
				}

				$dash_widget_title    = isset( $value['title'] ) ? $value['title'] : '';
				$dash_widget_position = isset( $value['widget_pos'] ) ? $value['widget_pos'] : 'normal';

				add_meta_box(
					'adminify_widget_' . Utils::class_cleanup( $dash_widget_title ),
					$dash_widget_title,
					[ $this, 'render_dashboard_widget' ],
					'dashboard',
					$dash_widget_position,
					'high',
					$value
				);
			}
		}
	}


	// Render Dashboard Widget
	public function render_dashboard_widget( $content = '', $value = '' ) {
		switch ( $value['args']['widget_type'] ) {
			case 'editor':
				echo wp_kses_post( $value['args']['dashw_type_editor'] );
				break;

			case 'icon':
				do_action('pxlbsadminify_dashboard_widgets/render_icon', $value);
				break;

			case 'video':
				do_action('pxlbsadminify_dashboard_widgets/render_video', $value);
				break;

			case 'shortcode':
				do_action('pxlbsadminify_dashboard_widgets/render_shortcode', $value);
				break;

			case 'rss_feed':
				do_action('pxlbsadminify_dashboard_widgets/render_rss_feed', $value);
				break;

			case 'script':
				do_action('pxlbsadminify_dashboard_widgets/render_script', $value);
				break;
		}
	}




	/**
	 * Scripst / Styles
	 */
	public function enqueue_scripts() {
		global $pagenow;

		// Load Scripts/Styles only WP Adminify Dashboard Widget
		// phpcs:ignore WordPress.Security.NonceVerification.Recommended -- read-only check, no state change.
		$current_page = isset( $_GET['page'] ) ? sanitize_text_field( wp_unslash( $_GET['page'] ) ) : '';
		if ( ( 'admin.php' === $pagenow ) && ( 'adminify-dashboard-widgets' === $current_page ) ) {
			$this->dashboard_widgets_admin_script();
		}
	}


	// WP Adminify Dashboard Widgets Style
	public function dashboard_widgets_admin_script() {
		echo '<style>.wp-adminify-dashboard-widgets .adminify-container{ max-width:1200px; margin:0 auto; background: #fff;} .wp-adminify-dashboard-widgets .adminify-header-inner{padding:0;}.wp-adminify-dashboard-widgets .adminify-field-subheading{font-size:20px; padding-left:0;}.adminify-dashboard-widgets .adminify-nav,.adminify-dashboard-widgets .adminify-search,.adminify-dashboard-widgets .adminify-footer,.adminify-dashboard-widgets .adminify-reset-all,.adminify-dashboard-widgets .adminify-expand-all,.adminify-dashboard-widgets .adminify-header-left,.adminify-dashboard-widgets .adminify-reset-section,.adminify-dashboard-widgets .adminify-nav-background{display: none !important;}.adminify-dashboard-widgets .adminify-nav-normal + .adminify-content{margin-left: 0;}
        /*
        .wp-adminify #wpbody-content .adminify-section[data-section-id] .adminify-data-wrapper .adminify-cloneable-item .adminify-cloneable-title{ border:none !important; }
*/
        /* If needed for white top-bar */
        .adminify-dashboard-widgets .adminify-header-inner {
            background-color: #fafafa !important;
            border-bottom: 1px solid #f5f5f5;
        }
		.wp-adminify-dashboard-widgets .button-primary {
			background: var(--adminify-primary)!important;
			transition: all 0.15s;
		}
		.wp-adminify-dashboard-widgets .button-primary:hover {
			background: transparent!important;
			color: var(--adminify-primary)!important;
		}
		.wp-adminify-dashboard-widgets .adminify-header .adminify-header-right{
			display: flex;
			align-item: center;
			justify-content: end;
		}
        </style>';
	}
}

```
