47use Psr\Log\LoggerAwareTrait;
48use Psr\Log\NullLogger;
53use UnexpectedValueException;
92 $this->logger =
new NullLogger();
114 OutputPage::setupOOUI(
115 strtolower(
$context->getSkin()->getSkinName() ),
130 Hooks::run(
'GetPreferences', [
$user, &$preferences ] );
133 $this->logger->debug(
"Created form descriptor for user '{$user->getName()}'" );
148 # # Remove preferences that wikis don't want to use
149 foreach ( $this->config->get(
'HiddenPrefs' )
as $pref ) {
150 if ( isset( $defaultPreferences[$pref] ) ) {
151 unset( $defaultPreferences[$pref] );
155 # # Make sure that form fields have their parent set. See T43337.
158 $disable = !
$user->isAllowed(
'editmyoptions' );
161 $userOptions =
$user->getOptions();
162 $this->
applyFilters( $userOptions, $defaultPreferences,
'filterForForm' );
163 # # Prod in defaults from the user
164 foreach ( $defaultPreferences
as $name => &$info ) {
167 $info[
'disabled'] =
'disabled';
169 $field = HTMLForm::loadInputFromParameters(
$name, $info, $dummyForm );
170 $globalDefault = $defaultOptions[
$name] ??
null;
173 if ( isset( $info[
'default'] ) ) {
176 } elseif ( !is_null( $prefFromUser ) &&
177 $field->validate( $prefFromUser,
$user->getOptions() ) ===
true ) {
178 $info[
'default'] = $prefFromUser;
179 } elseif ( $field->validate( $globalDefault,
$user->getOptions() ) ===
true ) {
180 $info[
'default'] = $globalDefault;
182 throw new MWException(
"Global default '$globalDefault' is invalid for field $name" );
186 return $defaultPreferences;
198 $val = $userOptions[
$name] ??
null;
201 if ( ( isset( $info[
'type'] ) && $info[
'type'] ==
'multiselect' ) ||
202 ( isset( $info[
'class'] ) && $info[
'class'] == \HTMLMultiSelectField::class ) ) {
204 $prefix = $info[
'prefix'] ??
$name;
208 if ( $userOptions[
"$prefix$value"] ??
false ) {
215 if ( ( isset( $info[
'type'] ) && $info[
'type'] ==
'checkmatrix' ) ||
216 ( isset( $info[
'class'] ) && $info[
'class'] == \HTMLCheckMatrix::class ) ) {
219 $prefix = $info[
'prefix'] ??
$name;
222 foreach ( $columns
as $column ) {
224 if ( $userOptions[
"$prefix$column-$row"] ??
false ) {
225 $val[] =
"$column-$row";
247 $userName =
$user->getName();
249 # # User info #####################################
251 $defaultPreferences[
'username'] = [
253 'label-message' => [
'username', $userName ],
254 'default' => $userName,
255 'section' =>
'personal/info',
260 # Get groups to which the user belongs
261 $userEffectiveGroups =
$user->getEffectiveGroups();
262 $userGroupMemberships =
$user->getGroupMemberships();
263 $userGroups = $userMembers = $userTempGroups = $userTempMembers = [];
264 foreach ( $userEffectiveGroups
as $ueg ) {
270 $groupStringOrObject = $userGroupMemberships[$ueg] ?? $ueg;
283 $userTempGroups[] = $userG;
284 $userTempMembers[] = $userM;
286 $userGroups[] = $userG;
287 $userMembers[] = $userM;
291 sort( $userMembers );
292 sort( $userTempGroups );
293 sort( $userTempMembers );
294 $userGroups = array_merge( $userTempGroups, $userGroups );
295 $userMembers = array_merge( $userTempMembers, $userMembers );
297 $defaultPreferences[
'usergroups'] = [
299 'label' =>
$context->msg(
'prefs-memberingroups' )->numParams(
300 count( $userGroups ) )->params( $userName )->parse(),
301 'default' =>
$context->msg(
'prefs-memberingroups-type' )
302 ->rawParams(
$lang->commaList( $userGroups ),
$lang->commaList( $userMembers ) )
305 'section' =>
'personal/info',
308 $contribTitle = SpecialPage::getTitleFor(
"Contributions", $userName );
309 $formattedEditCount =
$lang->formatNum(
$user->getEditCount() );
310 $editCount = $this->linkRenderer->makeLink( $contribTitle, $formattedEditCount );
312 $defaultPreferences[
'editcount'] = [
315 'label-message' =>
'prefs-edits',
316 'default' => $editCount,
317 'section' =>
'personal/info',
320 if (
$user->getRegistration() ) {
322 $userRegistration =
$user->getRegistration();
323 $defaultPreferences[
'registrationdate'] = [
325 'label-message' =>
'prefs-registration',
327 'prefs-registration-date-time',
328 $lang->userTimeAndDate( $userRegistration, $displayUser ),
329 $lang->userDate( $userRegistration, $displayUser ),
330 $lang->userTime( $userRegistration, $displayUser )
332 'section' =>
'personal/info',
336 $canViewPrivateInfo =
$user->isAllowed(
'viewmyprivateinfo' );
337 $canEditPrivateInfo =
$user->isAllowed(
'editmyprivateinfo' );
340 $defaultPreferences[
'realname'] = [
342 'type' => $canEditPrivateInfo && $this->authManager->allowsPropertyChange(
'realname' )
344 'default' =>
$user->getRealName(),
345 'section' =>
'personal/info',
346 'label-message' =>
'yourrealname',
347 'help-message' =>
'prefs-help-realname',
350 if ( $canEditPrivateInfo && $this->authManager->allowsAuthenticationDataChange(
353 $defaultPreferences[
'password'] = [
356 'default' => (
string)
new \OOUI\ButtonWidget( [
357 'href' => SpecialPage::getTitleFor(
'ChangePassword' )->getLinkURL( [
358 'returnto' => SpecialPage::getTitleFor(
'Preferences' )->getPrefixedText()
360 'label' =>
$context->msg(
'prefs-resetpass' )->text(),
362 'label-message' =>
'yourpassword',
363 'section' =>
'personal/info',
367 if ( $this->config->get(
'SecureLogin' ) && $canIPUseHTTPS ) {
368 $defaultPreferences[
'prefershttps'] = [
370 'label-message' =>
'tog-prefershttps',
371 'help-message' =>
'prefs-help-prefershttps',
372 'section' =>
'personal/info'
376 $languages = Language::fetchLanguageNames(
null,
'mwfile' );
377 $languageCode = $this->config->get(
'LanguageCode' );
378 if ( !array_key_exists( $languageCode,
$languages ) ) {
389 $defaultPreferences[
'language'] = [
391 'section' =>
'personal/i18n',
393 'label-message' =>
'yourlanguage',
396 $defaultPreferences[
'gender'] = [
398 'section' =>
'personal/i18n',
401 ->params(
$context->msg(
'gender-unknown' )->plain() )
402 ->escaped() =>
'unknown',
403 $context->msg(
'gender-female' )->escaped() =>
'female',
404 $context->msg(
'gender-male' )->escaped() =>
'male',
406 'label-message' =>
'yourgender',
407 'help-message' =>
'prefs-help-gender',
411 if ( !$this->config->get(
'DisableLangConversion' ) ) {
413 if ( $langCode == $this->contLang->getCode() ) {
414 if ( !$this->contLang->hasVariants() ) {
418 $variants = $this->contLang->getVariants();
420 foreach ( $variants
as $v ) {
421 $v = str_replace(
'_',
'-', strtolower( $v ) );
422 $variantArray[$v] =
$lang->getVariantname( $v,
false );
431 $defaultPreferences[
'variant'] = [
432 'label-message' =>
'yourvariant',
435 'section' =>
'personal/i18n',
436 'help-message' =>
'prefs-help-variant',
439 $defaultPreferences[
"variant-$langCode"] = [
448 $toggles = $this->contLang->getExtraUserToggles();
450 foreach ( $toggles
as $toggle ) {
451 $defaultPreferences[$toggle] = [
453 'section' =>
'personal/i18n',
454 'label-message' =>
"tog-$toggle",
463 ParserOptions::newFromContext(
$context )
466 $context->getOutput()->parseAsContent( $oldsigWikiText )
468 $defaultPreferences[
'oldsig'] = [
471 'label-message' =>
'tog-oldsig',
472 'default' => $oldsigHTML,
473 'section' =>
'personal/signature',
475 $defaultPreferences[
'nickname'] = [
476 'type' => $this->authManager->allowsPropertyChange(
'nickname' ) ?
'text' :
'info',
477 'maxlength' => $this->config->get(
'MaxSigChars' ),
478 'label-message' =>
'yournick',
479 'validation-callback' =>
function ( $signature, $alldata,
HTMLForm $form ) {
482 'section' =>
'personal/signature',
483 'filter-callback' =>
function ( $signature,
array $alldata,
HTMLForm $form ) {
487 $defaultPreferences[
'fancysig'] = [
489 'label-message' =>
'tog-fancysig',
491 'help-message' =>
'prefs-help-signature',
492 'section' =>
'personal/signature'
497 if ( $this->config->get(
'EnableEmail' ) ) {
498 if ( $canViewPrivateInfo ) {
499 $helpMessages[] = $this->config->get(
'EmailConfirmToEdit' )
500 ?
'prefs-help-email-required'
501 :
'prefs-help-email';
503 if ( $this->config->get(
'EnableUserEmail' ) ) {
505 $helpMessages[] =
'prefs-help-email-others';
508 $emailAddress =
$user->getEmail() ? htmlspecialchars(
$user->getEmail() ) :
'';
509 if ( $canEditPrivateInfo && $this->authManager->allowsPropertyChange(
'emailaddress' ) ) {
510 $button = new \OOUI\ButtonWidget( [
511 'href' => SpecialPage::getTitleFor(
'ChangeEmail' )->getLinkURL( [
512 'returnto' => SpecialPage::getTitleFor(
'Preferences' )->getPrefixedText()
515 $context->msg(
$user->getEmail() ?
'prefs-changeemail' :
'prefs-setemail' )->
text(),
518 $emailAddress .= $emailAddress ==
'' ? $button : (
'<br />' . $button );
521 $defaultPreferences[
'emailaddress'] = [
524 'default' => $emailAddress,
525 'label-message' =>
'youremail',
526 'section' =>
'personal/email',
527 'help-messages' => $helpMessages,
528 # 'cssclass' chosen below
532 $disableEmailPrefs =
false;
534 if ( $this->config->get(
'EmailAuthentication' ) ) {
535 $emailauthenticationclass =
'mw-email-not-authenticated';
536 if (
$user->getEmail() ) {
537 if (
$user->getEmailAuthenticationTimestamp() ) {
542 $emailTimestamp =
$user->getEmailAuthenticationTimestamp();
543 $time =
$lang->userTimeAndDate( $emailTimestamp, $displayUser );
544 $d =
$lang->userDate( $emailTimestamp, $displayUser );
545 $t =
$lang->userTime( $emailTimestamp, $displayUser );
546 $emailauthenticated =
$context->msg(
'emailauthenticated',
547 $time, $d,
$t )->parse() .
'<br />';
548 $disableEmailPrefs =
false;
549 $emailauthenticationclass =
'mw-email-authenticated';
551 $disableEmailPrefs =
true;
552 $emailauthenticated =
$context->msg(
'emailnotauthenticated' )->parse() .
'<br />' .
553 new \OOUI\ButtonWidget( [
554 'href' => SpecialPage::getTitleFor(
'Confirmemail' )->getLinkURL(),
555 'label' =>
$context->msg(
'emailconfirmlink' )->text(),
557 $emailauthenticationclass =
"mw-email-not-authenticated";
560 $disableEmailPrefs =
true;
561 $emailauthenticated =
$context->msg(
'noemailprefs' )->escaped();
562 $emailauthenticationclass =
'mw-email-none';
565 if ( $canViewPrivateInfo ) {
566 $defaultPreferences[
'emailauthentication'] = [
569 'section' =>
'personal/email',
570 'label-message' =>
'prefs-emailconfirm-label',
571 'default' => $emailauthenticated,
572 # Apply the same CSS class used on the input to the message:
573 'cssclass' => $emailauthenticationclass,
578 if ( $this->config->get(
'EnableUserEmail' ) &&
$user->isAllowed(
'sendemail' ) ) {
579 $defaultPreferences[
'disablemail'] = [
580 'id' =>
'wpAllowEmail',
583 'section' =>
'personal/email',
584 'label-message' =>
'allowemail',
585 'disabled' => $disableEmailPrefs,
588 $defaultPreferences[
'email-allow-new-users'] = [
589 'id' =>
'wpAllowEmailFromNewUsers',
591 'section' =>
'personal/email',
592 'label-message' =>
'email-allow-new-users-label',
593 'disabled' => $disableEmailPrefs,
596 $defaultPreferences[
'ccmeonemails'] = [
598 'section' =>
'personal/email',
599 'label-message' =>
'tog-ccmeonemails',
600 'disabled' => $disableEmailPrefs,
603 if ( $this->config->get(
'EnableUserEmailBlacklist' ) ) {
604 $defaultPreferences[
'email-blacklist'] = [
605 'type' =>
'usersmultiselect',
606 'label-message' =>
'email-blacklist-label',
607 'section' =>
'personal/email',
608 'disabled' => $disableEmailPrefs,
609 'filter' => MultiUsernameFilter::class,
614 if ( $this->config->get(
'EnotifWatchlist' ) ) {
615 $defaultPreferences[
'enotifwatchlistpages'] = [
617 'section' =>
'personal/email',
618 'label-message' =>
'tog-enotifwatchlistpages',
619 'disabled' => $disableEmailPrefs,
622 if ( $this->config->get(
'EnotifUserTalk' ) ) {
623 $defaultPreferences[
'enotifusertalkpages'] = [
625 'section' =>
'personal/email',
626 'label-message' =>
'tog-enotifusertalkpages',
627 'disabled' => $disableEmailPrefs,
630 if ( $this->config->get(
'EnotifUserTalk' ) || $this->config->get(
'EnotifWatchlist' ) ) {
631 if ( $this->config->get(
'EnotifMinorEdits' ) ) {
632 $defaultPreferences[
'enotifminoredits'] = [
634 'section' =>
'personal/email',
635 'label-message' =>
'tog-enotifminoredits',
636 'disabled' => $disableEmailPrefs,
640 if ( $this->config->get(
'EnotifRevealEditorAddress' ) ) {
641 $defaultPreferences[
'enotifrevealaddr'] = [
643 'section' =>
'personal/email',
644 'label-message' =>
'tog-enotifrevealaddr',
645 'disabled' => $disableEmailPrefs,
659 # # Skin #####################################
663 if ( $skinOptions ) {
664 $defaultPreferences[
'skin'] = [
666 'options' => $skinOptions,
667 'section' =>
'rendering/skin',
671 $allowUserCss = $this->config->get(
'AllowUserCss' );
672 $allowUserJs = $this->config->get(
'AllowUserJs' );
673 # Create links to user CSS/JS pages for all skins
674 # This code is basically copied from generateSkinOptions(). It'd
675 # be nice to somehow merge this back in there to avoid redundancy.
676 if ( $allowUserCss || $allowUserJs ) {
678 $userName =
$user->getName();
680 if ( $allowUserCss ) {
681 $cssPage = Title::makeTitleSafe(
NS_USER, $userName .
'/common.css' );
682 $cssLinkText =
$context->msg(
'prefs-custom-css' )->text();
683 $linkTools[] = $this->linkRenderer->makeLink( $cssPage, $cssLinkText );
686 if ( $allowUserJs ) {
687 $jsPage = Title::makeTitleSafe(
NS_USER, $userName .
'/common.js' );
688 $jsLinkText =
$context->msg(
'prefs-custom-js' )->text();
689 $linkTools[] = $this->linkRenderer->makeLink( $jsPage, $jsLinkText );
692 $defaultPreferences[
'commoncssjs'] = [
695 'default' =>
$context->getLanguage()->pipeList( $linkTools ),
696 'label-message' =>
'prefs-common-config',
697 'section' =>
'rendering/skin',
707 # # Files #####################################
708 $defaultPreferences[
'imagesize'] = [
711 'label-message' =>
'imagemaxsize',
712 'section' =>
'rendering/files',
714 $defaultPreferences[
'thumbsize'] = [
717 'label-message' =>
'thumbsize',
718 'section' =>
'rendering/files',
729 # # Date and time #####################################
731 if ( $dateOptions ) {
732 $defaultPreferences[
'date'] = [
734 'options' => $dateOptions,
735 'section' =>
'rendering/dateformat',
742 $nowlocal =
Xml::element(
'span', [
'id' =>
'wpLocalTime' ],
745 [
'format' =>
false,
'timecorrection' =>
false ] ) .
746 Html::hidden(
'wpServerTime', (
int)substr( $now, 8, 2 ) * 60 + (
int)substr( $now, 10, 2 ) );
748 $defaultPreferences[
'nowserver'] = [
751 'label-message' =>
'servertime',
752 'default' => $nowserver,
753 'section' =>
'rendering/timeoffset',
756 $defaultPreferences[
'nowlocal'] = [
759 'label-message' =>
'localtime',
760 'default' => $nowlocal,
761 'section' =>
'rendering/timeoffset',
765 $tzOffset =
$user->getOption(
'timecorrection' );
766 $tz = explode(
'|', $tzOffset, 3 );
770 $tzSetting = $tzOffset;
771 if ( count( $tz ) > 1 && $tz[0] ==
'ZoneInfo' &&
776 $userTZ =
new DateTimeZone( $tz[2] );
777 $minDiff = floor( $userTZ->getOffset(
new DateTime(
'now' ) ) / 60 );
778 $tzSetting =
"ZoneInfo|$minDiff|{$tz[2]}";
779 }
catch ( Exception
$e ) {
784 if ( count( $tz ) > 1 && $tz[0] ==
'Offset' ) {
786 $tzSetting = sprintf(
'%+03d:%02d', floor( $minDiff / 60 ), abs( $minDiff ) % 60 );
789 $defaultPreferences[
'timecorrection'] = [
790 'class' => \HTMLSelectOrOtherField::class,
791 'label-message' =>
'timezonelegend',
792 'options' => $tzOptions,
793 'default' => $tzSetting,
795 'section' =>
'rendering/timeoffset',
796 'id' =>
'wpTimeCorrection',
797 'filter' => TimezoneFilter::class,
798 'placeholder-message' =>
'timezone-useoffset-placeholder',
812 # # Diffs ####################################
813 $defaultPreferences[
'diffonly'] = [
815 'section' =>
'rendering/diffs',
816 'label-message' =>
'tog-diffonly',
818 $defaultPreferences[
'norollbackdiff'] = [
820 'section' =>
'rendering/diffs',
821 'label-message' =>
'tog-norollbackdiff',
824 # # Page Rendering ##############################
825 if ( $this->config->get(
'AllowUserCssPrefs' ) ) {
826 $defaultPreferences[
'underline'] = [
829 $l10n->
msg(
'underline-never' )->text() => 0,
830 $l10n->
msg(
'underline-always' )->text() => 1,
831 $l10n->
msg(
'underline-default' )->text() => 2,
833 'label-message' =>
'tog-underline',
834 'section' =>
'rendering/advancedrendering',
838 $stubThresholdValues = [ 50, 100, 500, 1000, 2000, 5000, 10000 ];
839 $stubThresholdOptions = [ $l10n->
msg(
'stub-threshold-disabled' )->text() => 0 ];
840 foreach ( $stubThresholdValues
as $value ) {
841 $stubThresholdOptions[$l10n->
msg(
'size-bytes',
$value )->text()] =
$value;
844 $defaultPreferences[
'stubthreshold'] = [
846 'section' =>
'rendering/advancedrendering',
847 'options' => $stubThresholdOptions,
849 'label-raw' => $l10n->
msg(
'stub-threshold' )->rawParams(
851 $l10n->
msg(
'stub-threshold-sample-link' )->parse() .
855 $defaultPreferences[
'showhiddencats'] = [
857 'section' =>
'rendering/advancedrendering',
858 'label-message' =>
'tog-showhiddencats'
861 $defaultPreferences[
'numberheadings'] = [
863 'section' =>
'rendering/advancedrendering',
864 'label-message' =>
'tog-numberheadings',
867 if (
$user->isAllowed(
'rollback' ) ) {
868 $defaultPreferences[
'showrollbackconfirmation'] = [
870 'section' =>
'rendering/advancedrendering',
871 'label-message' =>
'tog-showrollbackconfirmation',
882 # # Editing #####################################
883 $defaultPreferences[
'editsectiononrightclick'] = [
885 'section' =>
'editing/advancedediting',
886 'label-message' =>
'tog-editsectiononrightclick',
888 $defaultPreferences[
'editondblclick'] = [
890 'section' =>
'editing/advancedediting',
891 'label-message' =>
'tog-editondblclick',
894 if ( $this->config->get(
'AllowUserCssPrefs' ) ) {
895 $defaultPreferences[
'editfont'] = [
897 'section' =>
'editing/editor',
898 'label-message' =>
'editfont-style',
900 $l10n->
msg(
'editfont-monospace' )->text() =>
'monospace',
901 $l10n->
msg(
'editfont-sansserif' )->text() =>
'sans-serif',
902 $l10n->
msg(
'editfont-serif' )->text() =>
'serif',
907 if (
$user->isAllowed(
'minoredit' ) ) {
908 $defaultPreferences[
'minordefault'] = [
910 'section' =>
'editing/editor',
911 'label-message' =>
'tog-minordefault',
915 $defaultPreferences[
'forceeditsummary'] = [
917 'section' =>
'editing/editor',
918 'label-message' =>
'tog-forceeditsummary',
920 $defaultPreferences[
'useeditwarning'] = [
922 'section' =>
'editing/editor',
923 'label-message' =>
'tog-useeditwarning',
926 $defaultPreferences[
'previewonfirst'] = [
928 'section' =>
'editing/preview',
929 'label-message' =>
'tog-previewonfirst',
931 $defaultPreferences[
'previewontop'] = [
933 'section' =>
'editing/preview',
934 'label-message' =>
'tog-previewontop',
936 $defaultPreferences[
'uselivepreview'] = [
938 'section' =>
'editing/preview',
939 'label-message' =>
'tog-uselivepreview',
949 $rcMaxAge = $this->config->get(
'RCMaxAge' );
950 # # RecentChanges #####################################
951 $defaultPreferences[
'rcdays'] = [
953 'label-message' =>
'recentchangesdays',
954 'section' =>
'rc/displayrc',
956 'max' => ceil( $rcMaxAge / ( 3600 * 24 ) ),
957 'help' => $l10n->
msg(
'recentchangesdays-max' )->numParams(
958 ceil( $rcMaxAge / ( 3600 * 24 ) ) )->escaped()
960 $defaultPreferences[
'rclimit'] = [
964 'label-message' =>
'recentchangescount',
965 'help-message' =>
'prefs-help-recentchangescount',
966 'section' =>
'rc/displayrc',
967 'filter' => IntvalFilter::class,
969 $defaultPreferences[
'usenewrc'] = [
971 'label-message' =>
'tog-usenewrc',
972 'section' =>
'rc/advancedrc',
974 $defaultPreferences[
'hideminor'] = [
976 'label-message' =>
'tog-hideminor',
977 'section' =>
'rc/changesrc',
979 $defaultPreferences[
'rcfilters-rc-collapsed'] = [
982 $defaultPreferences[
'rcfilters-wl-collapsed'] = [
985 $defaultPreferences[
'rcfilters-saved-queries'] = [
988 $defaultPreferences[
'rcfilters-wl-saved-queries'] = [
992 $defaultPreferences[
'rcfilters-limit'] = [
995 $defaultPreferences[
'rcfilters-saved-queries-versionbackup'] = [
998 $defaultPreferences[
'rcfilters-wl-saved-queries-versionbackup'] = [
1002 if ( $this->config->get(
'RCWatchCategoryMembership' ) ) {
1003 $defaultPreferences[
'hidecategorization'] = [
1005 'label-message' =>
'tog-hidecategorization',
1006 'section' =>
'rc/changesrc',
1010 if (
$user->useRCPatrol() ) {
1011 $defaultPreferences[
'hidepatrolled'] = [
1013 'section' =>
'rc/changesrc',
1014 'label-message' =>
'tog-hidepatrolled',
1018 if (
$user->useNPPatrol() ) {
1019 $defaultPreferences[
'newpageshidepatrolled'] = [
1021 'section' =>
'rc/changesrc',
1022 'label-message' =>
'tog-newpageshidepatrolled',
1026 if ( $this->config->get(
'RCShowWatchingUsers' ) ) {
1027 $defaultPreferences[
'shownumberswatching'] = [
1029 'section' =>
'rc/advancedrc',
1030 'label-message' =>
'tog-shownumberswatching',
1034 $defaultPreferences[
'rcenhancedfilters-disable'] = [
1036 'section' =>
'rc/advancedrc',
1037 'label-message' =>
'rcfilters-preference-label',
1038 'help-message' =>
'rcfilters-preference-help',
1050 $watchlistdaysMax = ceil( $this->config->get(
'RCMaxAge' ) / ( 3600 * 24 ) );
1052 # # Watchlist #####################################
1053 if (
$user->isAllowed(
'editmywatchlist' ) ) {
1054 $editWatchlistLinks =
'';
1055 $editWatchlistModes = [
1056 'edit' => [
'subpage' =>
false,
'flags' => [] ],
1057 'raw' => [
'subpage' =>
'raw',
'flags' => [] ],
1058 'clear' => [
'subpage' =>
'clear',
'flags' => [
'destructive' ] ],
1060 foreach ( $editWatchlistModes
as $mode =>
$options ) {
1062 $editWatchlistLinks .=
1063 new \OOUI\ButtonWidget( [
1064 'href' => SpecialPage::getTitleFor(
'EditWatchlist',
$options[
'subpage'] )->getLinkURL(),
1066 'label' =>
new \OOUI\HtmlSnippet(
1067 $context->msg(
"prefs-editwatchlist-{$mode}" )->parse()
1072 $defaultPreferences[
'editwatchlist'] = [
1075 'default' => $editWatchlistLinks,
1076 'label-message' =>
'prefs-editwatchlist-label',
1077 'section' =>
'watchlist/editwatchlist',
1081 $defaultPreferences[
'watchlistdays'] = [
1084 'max' => $watchlistdaysMax,
1085 'section' =>
'watchlist/displaywatchlist',
1086 'help' =>
$context->msg(
'prefs-watchlist-days-max' )->numParams(
1087 $watchlistdaysMax )->escaped(),
1088 'label-message' =>
'prefs-watchlist-days',
1090 $defaultPreferences[
'wllimit'] = [
1094 'label-message' =>
'prefs-watchlist-edits',
1095 'help' =>
$context->msg(
'prefs-watchlist-edits-max' )->escaped(),
1096 'section' =>
'watchlist/displaywatchlist',
1097 'filter' => IntvalFilter::class,
1099 $defaultPreferences[
'extendwatchlist'] = [
1101 'section' =>
'watchlist/advancedwatchlist',
1102 'label-message' =>
'tog-extendwatchlist',
1104 $defaultPreferences[
'watchlisthideminor'] = [
1106 'section' =>
'watchlist/changeswatchlist',
1107 'label-message' =>
'tog-watchlisthideminor',
1109 $defaultPreferences[
'watchlisthidebots'] = [
1111 'section' =>
'watchlist/changeswatchlist',
1112 'label-message' =>
'tog-watchlisthidebots',
1114 $defaultPreferences[
'watchlisthideown'] = [
1116 'section' =>
'watchlist/changeswatchlist',
1117 'label-message' =>
'tog-watchlisthideown',
1119 $defaultPreferences[
'watchlisthideanons'] = [
1121 'section' =>
'watchlist/changeswatchlist',
1122 'label-message' =>
'tog-watchlisthideanons',
1124 $defaultPreferences[
'watchlisthideliu'] = [
1126 'section' =>
'watchlist/changeswatchlist',
1127 'label-message' =>
'tog-watchlisthideliu',
1134 $defaultPreferences[
'watchlistreloadautomatically'] = [
1136 'section' =>
'watchlist/advancedwatchlist',
1137 'label-message' =>
'tog-watchlistreloadautomatically',
1141 $defaultPreferences[
'watchlistunwatchlinks'] = [
1143 'section' =>
'watchlist/advancedwatchlist',
1144 'label-message' =>
'tog-watchlistunwatchlinks',
1147 if ( $this->config->get(
'RCWatchCategoryMembership' ) ) {
1148 $defaultPreferences[
'watchlisthidecategorization'] = [
1150 'section' =>
'watchlist/changeswatchlist',
1151 'label-message' =>
'tog-watchlisthidecategorization',
1155 if (
$user->useRCPatrol() ) {
1156 $defaultPreferences[
'watchlisthidepatrolled'] = [
1158 'section' =>
'watchlist/changeswatchlist',
1159 'label-message' =>
'tog-watchlisthidepatrolled',
1164 'edit' =>
'watchdefault',
1165 'move' =>
'watchmoves',
1166 'delete' =>
'watchdeletion'
1170 if (
$user->isAllowed(
'createpage' ) ||
$user->isAllowed(
'createtalk' ) ) {
1171 $watchTypes[
'read'] =
'watchcreations';
1174 if (
$user->isAllowed(
'rollback' ) ) {
1175 $watchTypes[
'rollback'] =
'watchrollback';
1178 if (
$user->isAllowed(
'upload' ) ) {
1179 $watchTypes[
'upload'] =
'watchuploads';
1182 foreach ( $watchTypes
as $action => $pref ) {
1183 if (
$user->isAllowed( $action ) ) {
1187 $defaultPreferences[$pref] = [
1189 'section' =>
'watchlist/pageswatchlist',
1190 'label-message' =>
"tog-$pref",
1195 $defaultPreferences[
'watchlisttoken'] = [
1199 $tokenButton = new \OOUI\ButtonWidget( [
1200 'href' => SpecialPage::getTitleFor(
'ResetTokens' )->getLinkURL( [
1201 'returnto' => SpecialPage::getTitleFor(
'Preferences' )->getPrefixedText()
1203 'label' =>
$context->msg(
'prefs-watchlist-managetokens' )->text(),
1205 $defaultPreferences[
'watchlisttoken-info'] = [
1207 'section' =>
'watchlist/tokenwatchlist',
1208 'label-message' =>
'prefs-watchlist-token',
1209 'help-message' =>
'prefs-help-tokenmanagement',
1211 'default' => (
string)$tokenButton,
1214 $defaultPreferences[
'wlenhancedfilters-disable'] = [
1216 'section' =>
'watchlist/advancedwatchlist',
1217 'label-message' =>
'rcfilters-watchlist-preference-label',
1218 'help-message' =>
'rcfilters-watchlist-preference-help',
1226 foreach ( MWNamespace::getValidNamespaces()
as $n ) {
1227 $defaultPreferences[
'searchNs' . $n] = [
1241 $mptitle = Title::newMainPage();
1242 $previewtext =
$context->msg(
'skin-preview' )->escaped();
1244 # Only show skins that aren't disabled in $wgSkipSkins
1247 foreach ( $validSkinNames
as $skinkey => &$skinname ) {
1248 $msg =
$context->msg(
"skinname-{$skinkey}" );
1249 if ( $msg->exists() ) {
1250 $skinname = htmlspecialchars( $msg->text() );
1254 $defaultSkin = $this->config->get(
'DefaultSkin' );
1255 $allowUserCss = $this->config->get(
'AllowUserCss' );
1256 $allowUserJs = $this->config->get(
'AllowUserJs' );
1258 # Sort by the internal name, so that the ordering is the same for each display language,
1259 # especially if some skin names are translated to use a different alphabet and some are not.
1260 uksort( $validSkinNames,
function ( $a, $b )
use ( $defaultSkin ) {
1261 # Display the default first in the list by comparing it as lesser than any other.
1262 if ( strcasecmp( $a, $defaultSkin ) === 0 ) {
1265 if ( strcasecmp( $b, $defaultSkin ) === 0 ) {
1268 return strcasecmp( $a, $b );
1271 $foundDefault =
false;
1272 foreach ( $validSkinNames
as $skinkey => $sn ) {
1275 # Mark the default skin
1276 if ( strcasecmp( $skinkey, $defaultSkin ) === 0 ) {
1277 $linkTools[] =
$context->msg(
'default' )->escaped();
1278 $foundDefault =
true;
1281 # Create preview link
1282 $mplink = htmlspecialchars( $mptitle->getLocalURL( [
'useskin' => $skinkey ] ) );
1283 $linkTools[] =
"<a target='_blank' href=\"$mplink\">$previewtext</a>";
1285 # Create links to user CSS/JS pages
1286 if ( $allowUserCss ) {
1287 $cssPage = Title::makeTitleSafe(
NS_USER,
$user->getName() .
'/' . $skinkey .
'.css' );
1288 $cssLinkText =
$context->msg(
'prefs-custom-css' )->text();
1289 $linkTools[] = $this->linkRenderer->makeLink( $cssPage, $cssLinkText );
1292 if ( $allowUserJs ) {
1293 $jsPage = Title::makeTitleSafe(
NS_USER,
$user->getName() .
'/' . $skinkey .
'.js' );
1294 $jsLinkText =
$context->msg(
'prefs-custom-js' )->text();
1295 $linkTools[] = $this->linkRenderer->makeLink( $jsPage, $jsLinkText );
1298 $display = $sn .
' ' .
$context->msg(
'parentheses' )
1299 ->rawParams(
$context->getLanguage()->pipeList( $linkTools ) )
1301 $ret[$display] = $skinkey;
1304 if ( !$foundDefault ) {
1319 $dateopts =
$lang->getDatePreferences();
1324 if ( !in_array(
'default', $dateopts ) ) {
1325 $dateopts[] =
'default';
1335 foreach ( $dateopts
as $key ) {
1336 if ( $key ==
'default' ) {
1337 $formatted =
$context->msg(
'datedefault' )->escaped();
1339 $formatted = htmlspecialchars(
$lang->timeanddate( $epoch,
false, $key ) );
1341 $ret[$formatted] = $key;
1353 $pixels = $l10n->
msg(
'unit-pixel' )->text();
1355 foreach ( $this->config->get(
'ImageLimits' )
as $index => $limits ) {
1357 $display =
"{$limits[0]}\u{200E}×{$limits[1]}$pixels";
1358 $ret[$display] = $index;
1370 $pixels = $l10n->
msg(
'unit-pixel' )->text();
1372 foreach ( $this->config->get(
'ThumbLimits' )
as $index => $size ) {
1373 $display = $size . $pixels;
1374 $ret[$display] = $index;
1387 $maxSigChars = $this->config->get(
'MaxSigChars' );
1388 if ( mb_strlen( $signature ) > $maxSigChars ) {
1390 $form->
msg(
'badsiglength' )->numParams( $maxSigChars )->text() );
1391 } elseif ( isset( $alldata[
'fancysig'] ) &&
1392 $alldata[
'fancysig'] &&
1397 [
'class' =>
'error' ],
1398 $form->
msg(
'badsig' )->text()
1413 if ( isset( $alldata[
'fancysig'] ) && $alldata[
'fancysig'] ) {
1414 $signature =
$parser->cleanSig( $signature );
1433 $formClass = PreferencesFormLegacy::class,
1437 $context->getOutput()->enableOOUI();
1440 if ( count( $remove ) ) {
1441 $removeKeys = array_flip( $remove );
1447 if ( isset( $info[
'type'] ) && $info[
'type'] ===
'api' ) {
1457 $htmlForm->setModifiedUser(
$user );
1458 $htmlForm->setId(
'mw-prefs-form' );
1459 $htmlForm->setAutocomplete(
'off' );
1460 $htmlForm->setSubmitText(
$context->msg(
'saveprefs' )->text() );
1461 # Used message keys: 'accesskey-preferences-save', 'tooltip-preferences-save'
1462 $htmlForm->setSubmitTooltip(
'preferences-save' );
1463 $htmlForm->setSubmitID(
'prefcontrol' );
1464 $htmlForm->setSubmitCallback(
1480 $localTZoffset = $this->config->get(
'LocalTZoffset' );
1485 if ( $localTZoffset == $timestamp->format(
'Z' ) / 60 ) {
1486 $timezoneName = $timestamp->getTimezone()->getName();
1488 if ( isset( $timeZoneList[$timezoneName] ) ) {
1489 $timezoneName = $timeZoneList[$timezoneName][
'name'];
1492 'timezoneuseserverdefault',
1496 $tzstring = sprintf(
1498 floor( $localTZoffset / 60 ),
1499 abs( $localTZoffset ) % 60
1501 $server_tz_msg =
$context->msg(
'timezoneuseserverdefault', $tzstring )->text();
1503 $opt[$server_tz_msg] =
"System|$localTZoffset";
1504 $opt[
$context->msg(
'timezoneuseoffset' )->text()] =
'other';
1505 $opt[
$context->msg(
'guesstimezone' )->text()] =
'guess';
1507 foreach ( $timeZoneList
as $timeZoneInfo ) {
1508 $region = $timeZoneInfo[
'region'];
1509 if ( !isset(
$opt[$region] ) ) {
1512 $opt[$region][$timeZoneInfo[
'name']] = $timeZoneInfo[
'timecorrection'];
1527 $user = $form->getModifiedUser();
1528 $hiddenPrefs = $this->config->get(
'HiddenPrefs' );
1531 if ( !
$user->isAllowedAny(
'editmyprivateinfo',
'editmyoptions' ) ) {
1532 return Status::newFatal(
'mypreferencesprotected' );
1541 if ( !in_array(
'realname', $hiddenPrefs )
1542 &&
$user->isAllowed(
'editmyprivateinfo' )
1543 && array_key_exists(
'realname', $formData )
1545 $realName = $formData[
'realname'];
1546 $user->setRealName( $realName );
1549 if (
$user->isAllowed(
'editmyoptions' ) ) {
1550 $oldUserOptions =
$user->getOptions();
1553 unset( $formData[$b] );
1556 # If users have saved a value for a preference which has subsequently been disabled
1557 # via $wgHiddenPrefs, we don't want to destroy that setting in case the preference
1558 # is subsequently re-enabled
1559 foreach ( $hiddenPrefs
as $pref ) {
1560 # If the user has not set a non-default value here, the default will be returned
1561 # and subsequently discarded
1562 $formData[$pref] =
$user->getOption( $pref,
null,
true );
1567 isset( $formData[
'rclimit'] ) &&
1568 intval( $formData[
'rclimit' ] ) !==
$user->getIntOption(
'rclimit' )
1570 $formData[
'rcfilters-limit'] = $formData[
'rclimit'];
1576 foreach ( $formData
as $key =>
$value ) {
1581 'PreferencesFormPreSave',
1586 $user->saveSettings();
1601 if ( !isset( $desc[
'filter'] ) || !isset( $preferences[$preference] ) ) {
1604 $filterDesc = $desc[
'filter'];
1605 if ( $filterDesc instanceof
Filter ) {
1607 } elseif ( class_exists( $filterDesc ) ) {
1609 } elseif ( is_callable( $filterDesc ) ) {
1612 throw new UnexpectedValueException(
1613 "Unrecognized filter type for preference '$preference'"
1616 $preferences[$preference] =
$filter->$verb( $preferences[$preference] );
1631 if (
$res ===
true ) {
1635 if (
$res ===
'eauth' ) {
1636 $urlOptions[
'eauth'] = 1;
1639 $urlOptions += $form->getExtraSuccessRedirectParameters();
1641 $url = $form->
getTitle()->getFullURL( $urlOptions );
1644 $context->getRequest()->getSession()->set(
'specialPreferencesSaveSuccess', 1 );
1646 $context->getOutput()->redirect( $url );
1649 return (
$res ===
true ? Status::newGood() :
$res );
1661 $identifiers = DateTimeZone::listIdentifiers();
1662 if ( $identifiers ===
false ) {
1665 sort( $identifiers );
1668 'Africa' =>
wfMessage(
'timezoneregion-africa' )->inLanguage( $language )->text(),
1669 'America' =>
wfMessage(
'timezoneregion-america' )->inLanguage( $language )->text(),
1670 'Antarctica' =>
wfMessage(
'timezoneregion-antarctica' )->inLanguage( $language )->text(),
1671 'Arctic' =>
wfMessage(
'timezoneregion-arctic' )->inLanguage( $language )->text(),
1672 'Asia' =>
wfMessage(
'timezoneregion-asia' )->inLanguage( $language )->text(),
1673 'Atlantic' =>
wfMessage(
'timezoneregion-atlantic' )->inLanguage( $language )->text(),
1674 'Australia' =>
wfMessage(
'timezoneregion-australia' )->inLanguage( $language )->text(),
1675 'Europe' =>
wfMessage(
'timezoneregion-europe' )->inLanguage( $language )->text(),
1676 'Indian' =>
wfMessage(
'timezoneregion-indian' )->inLanguage( $language )->text(),
1677 'Pacific' =>
wfMessage(
'timezoneregion-pacific' )->inLanguage( $language )->text(),
1679 asort( $tzRegions );
1683 $now =
new DateTime();
1685 foreach ( $identifiers
as $identifier ) {
1686 $parts = explode(
'/', $identifier, 2 );
1691 if ( count( $parts ) !== 2 || !array_key_exists( $parts[0], $tzRegions ) ) {
1696 $parts[0] = $tzRegions[$parts[0]];
1698 $dateTimeZone =
new DateTimeZone( $identifier );
1699 $minDiff = floor( $dateTimeZone->getOffset( $now ) / 60 );
1701 $display = str_replace(
'_',
' ', $parts[0] .
'/' . $parts[1] );
1702 $value =
"ZoneInfo|$minDiff|$identifier";
1704 $timeZoneList[$identifier] = [
1706 'timecorrection' =>
$value,
1707 'region' => $parts[0],
1711 return $timeZoneList;
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second as well as the first line of the second redirect text
$wgDefaultUserOptions
Settings added to this array will override the default globals for the user preferences used by anony...
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
wfCanIPUseHTTPS( $ip)
Determine whether the client at a given source IP is likely to be able to access the wiki via HTTPS.
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
getContext()
Get the base IContextSource object.
This class is a collection of static functions that serve two purposes:
Methods for dealing with language codes.
static bcp47( $code)
Get the normalised IETF language tag See unit test for examples.
Base class for language conversion.
static array $languagesWithVariants
languages supporting variants
Internationalisation code.
This is a utility class with only static functions for dealing with namespaces that encodes all the "...
Library for creating and parsing MW-style timestamps.
static getLocalInstance( $ts=false)
Get a timestamp instance in the server local timezone ($wgLocaltimezone)
This class should be covered by a general architecture document which does not exist as of January 20...
Set options of the Parser.
PHP Parser - Processes wiki markup (which uses a more user-friendly syntax, such as "[[link]]" for ma...
static stripOuterParagraph( $html)
Strip outer.
static cleanSigInSig( $text)
Strip 3, 4 or 5 tildes out of signatures.
The main skin class which provides methods and properties for all other skins.
static getAllowedSkins()
Fetch the list of user-selectable skins in regards to $wgSkipSkins.
Parent class for all special pages.
static checkStructuredFilterUiEnabled(Config $config, User $user)
Static method to check whether StructuredFilter UI is enabled for the given user.
Generic operation result class Has warning/error list, boolean status and arbitrary value.
Represents a title within MediaWiki.
Represents a "user group membership" – a specific instance of a user belonging to a group.
static getLink( $ugm, IContextSource $context, $format, $userName=null)
Gets a link for a user group, possibly including the expiry date if relevant.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
static getDefaultOptions()
Combine the language default options with any site-specific options and add the default language vari...
Module of static functions for generating XML.
static element( $element, $attribs=null, $contents='', $allowShortTag=true)
Format an XML element with given attributes and, optionally, text content.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
see documentation in includes Linker php for Linker::makeImageLink & $time
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction $rows
see documentation in includes Linker php for Linker::makeImageLink or false for current used if you return false $parser
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImgAuthModifyHeaders':Executed just before a file is streamed to a user via img_auth.php, allowing headers to be modified beforehand. $title:LinkTarget object & $headers:HTTP headers(name=> value, names are case insensitive). Two headers get special handling:If-Modified-Since(value must be a valid HTTP date) and Range(must be of the form "bytes=(\d*-\d*)") will be honored when streaming the file. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead & $formDescriptor
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<div ...>$1</div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
Allows to change the fields on the form that will be generated $name
return true to allow those checks to and false if checking is done & $user
returning false will NOT prevent logging $e
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Interface for configuration instances.
Interface for objects which can provide a MediaWiki context on request.
Interface for localizing messages in MediaWiki.
msg( $key)
This is the method for getting translated interface messages.
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
if(!isset( $args[0])) $lang
switch( $options['output']) $languages