Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/extensions/AbuseFilter/includes/Hooks/Handlers/RegistrationCallback.php
Ðазад
<?php namespace MediaWiki\Extension\AbuseFilter\Hooks\Handlers; /** * This class runs a callback when the extension is registered, right after configuration has been * loaded (not really a hook, but almost). * @codeCoverageIgnore Mainly deprecation warnings and other things that can be tested by running the updater */ class RegistrationCallback { public static function onRegistration(): void { global $wgAbuseFilterProfile, $wgAbuseFilterProfiling, $wgAbuseFilterPrivateLog, $wgAbuseFilterForceSummary, $wgGroupPermissions, $wgAbuseFilterRestrictions, $wgAbuseFilterDisallowGlobalLocalBlocks, $wgAbuseFilterActionRestrictions, $wgAbuseFilterLocallyDisabledGlobalActions; // @todo Remove this in a future release (added in 1.33) if ( isset( $wgAbuseFilterProfile ) || isset( $wgAbuseFilterProfiling ) ) { wfWarn( '$wgAbuseFilterProfile and $wgAbuseFilterProfiling have been removed and ' . 'profiling is now enabled by default.' ); } if ( isset( $wgAbuseFilterPrivateLog ) ) { global $wgAbuseFilterLogPrivateDetailsAccess; $wgAbuseFilterLogPrivateDetailsAccess = $wgAbuseFilterPrivateLog; wfWarn( '$wgAbuseFilterPrivateLog has been renamed to $wgAbuseFilterLogPrivateDetailsAccess. ' . 'Please make the change in your settings; the format is identical.' ); } if ( isset( $wgAbuseFilterForceSummary ) ) { global $wgAbuseFilterPrivateDetailsForceReason; $wgAbuseFilterPrivateDetailsForceReason = $wgAbuseFilterForceSummary; wfWarn( '$wgAbuseFilterForceSummary has been renamed to ' . '$wgAbuseFilterPrivateDetailsForceReason. Please make the change in your settings; ' . 'the format is identical.' ); } $found = false; foreach ( $wgGroupPermissions as &$perms ) { if ( array_key_exists( 'abusefilter-private', $perms ) ) { $perms['abusefilter-privatedetails'] = $perms[ 'abusefilter-private' ]; unset( $perms[ 'abusefilter-private' ] ); $found = true; } if ( array_key_exists( 'abusefilter-private-log', $perms ) ) { $perms['abusefilter-privatedetails-log'] = $perms[ 'abusefilter-private-log' ]; unset( $perms[ 'abusefilter-private-log' ] ); $found = true; } } unset( $perms ); if ( $found ) { wfWarn( 'The group permissions "abusefilter-private-log" and "abusefilter-private" have ' . 'been renamed, respectively, to "abusefilter-privatedetails-log" and ' . '"abusefilter-privatedetails". Please update the names in your settings.' ); } // @todo Remove this in a future release (added in 1.36) if ( isset( $wgAbuseFilterDisallowGlobalLocalBlocks ) ) { wfWarn( '$wgAbuseFilterDisallowGlobalLocalBlocks has been removed and replaced by ' . '$wgAbuseFilterLocallyDisabledGlobalActions. You can now specify which actions to disable. ' . 'If you had set the former to true, you should set to true all of the actions in ' . '$wgAbuseFilterRestrictions (if you were manually setting the variable) or ' . 'ConsequencesRegistry::DANGEROUS_ACTIONS. ' . 'If you had set it to false (or left the default), just remove it from your wiki settings.' ); if ( $wgAbuseFilterDisallowGlobalLocalBlocks === true ) { $wgAbuseFilterLocallyDisabledGlobalActions = [ 'throttle' => false, 'warn' => false, 'disallow' => false, 'blockautopromote' => true, 'block' => true, 'rangeblock' => true, 'degroup' => true, 'tag' => false ]; } } // @todo Remove this in a future release (added in 1.36) if ( isset( $wgAbuseFilterRestrictions ) ) { wfWarn( '$wgAbuseFilterRestrictions has been renamed to $wgAbuseFilterActionRestrictions.' ); $wgAbuseFilterActionRestrictions = $wgAbuseFilterRestrictions; } } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка