Heray-Was-Here
Server : Apache/2.4.52 (Debian)
System : Linux 1b21ca041b67 5.10.0-44-amd64 #1 SMP Debian 5.10.257-1 (2026-05-27) x86_64
User : www-data ( 33)
PHP Version : 7.4.28
Disable Function : NONE
Directory :  /var/www/html/wp-content/plugins/leadin/public/wp/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/html/wp-content/plugins/leadin/public/wp/class-page.php
<?php

namespace Leadin\wp;

/**
 * Static function that wraps WordPress utility functions for WordPress pages.
 */
class Page {
	/**
	 * Return true if the current page has Gutenberg active.
	 */
	public static function is_gutenberg_page() {
		if ( function_exists( 'is_gutenberg_page' ) && is_gutenberg_page() ) {
			// The Gutenberg plugin is on.
			return true;
		}

		$current_screen = get_current_screen();
		if ( method_exists( $current_screen, 'is_block_editor' ) && $current_screen->is_block_editor() ) {
			// Gutenberg page on 5+.
			return true;
		}
		return false;
	}

	/**
	 * Return true if the current page is the WP Admin dashboard.
	 */
	public static function is_dashboard() {
		$screen = get_current_screen();
		return 'dashboard' === $screen->id;
	}
}

Hry