PHP 8.2.31
Preview: class-screen.php Size: 741 B
/home/nshryvcy/taramarriagebureau.com/wp-content/plugins/ultimate-member/includes/common/class-screen.php

<?php
namespace um\common;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! class_exists( 'um\common\Screen' ) ) {

	/**
	 * Class Screen
	 *
	 * @package um\common
	 */
	class Screen {

		/**
		 * Screen constructor.
		 */
		public function __construct() {
			add_filter( 'body_class', array( &$this, 'remove_admin_bar' ), 1000 );
		}

		/**
		 * Remove admin bar classes
		 *
		 * @param array $classes
		 *
		 * @return array
		 */
		public function remove_admin_bar( $classes ) {
			if ( is_user_logged_in() ) {
				if ( um_user( 'can_not_see_adminbar' ) ) {
					$search = array_search( 'admin-bar', $classes, true );
					if ( ! empty( $search ) ) {
						unset( $classes[ $search ] );
					}
				}
			}

			return $classes;
		}
	}
}

Directory Contents

Dirs: 1 × Files: 9

Name Size Perms Modified Actions
actions DIR
- drwxr-xr-x 2025-04-30 03:17:38
Edit Download
7.65 KB lrw-r--r-- 2025-04-30 03:17:38
Edit Download
10.62 KB lrw-r--r-- 2025-04-30 03:17:38
Edit Download
7.77 KB lrw-r--r-- 2025-04-30 03:17:38
Edit Download
2.68 KB lrw-r--r-- 2025-04-30 03:17:38
Edit Download
741 B lrw-r--r-- 2025-04-30 03:17:38
Edit Download
6.77 KB lrw-r--r-- 2025-04-30 03:17:38
Edit Download
736 B lrw-r--r-- 2025-04-30 03:17:38
Edit Download
6.86 KB lrw-r--r-- 2025-04-30 03:17:38
Edit Download
22.72 KB lrw-r--r-- 2025-04-30 03:17:38
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).