mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-12 08:49:28 +00:00
49 lines
1.9 KiB
PHP
49 lines
1.9 KiB
PHP
<?php
|
|
if ( ! defined( 'MEDIAWIKI' ) )
|
|
die();
|
|
|
|
/**#@+
|
|
* Automatically applies heuristics to edits.
|
|
* @addtogroup Extensions
|
|
*
|
|
* @link http://www.mediawiki.org/wiki/Extension:AbuseFilter Documentation
|
|
*
|
|
*
|
|
* @author Andrew Garrett <andrew@epstone.net>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
|
|
*/
|
|
|
|
$dir = dirname(__FILE__);
|
|
$wgExtensionCredits['other'][] = array(
|
|
'name' => 'Abuse Filter',
|
|
'author' => 'Andrew Garrett',
|
|
'svn-date' => '$LastChangedDate: 2008-06-08 20:48:19 +1000 (Sun, 08 Jun 2008) $',
|
|
'svn-revision' => '$LastChangedRevision: 36018 $',
|
|
'description' => 'Applies automatic heuristics to edits.',
|
|
'descriptionmsg' => 'abusefilter-desc',
|
|
'url' => 'http://www.mediawiki.org/wiki/Extension:AbuseFilter',
|
|
);
|
|
|
|
$wgExtensionMessagesFiles['AbuseFilter'] = "$dir/AbuseFilter.i18n.php";
|
|
|
|
$wgAutoloadClasses[ 'AbuseFilter' ] = "$dir/AbuseFilter.class.php";
|
|
$wgAutoloadClasses[ 'AbuseFilterHooks' ] = "$dir/AbuseFilter.hooks.php";
|
|
$wgAutoloadClasses['SpecialAbuseLog'] = "$dir/SpecialAbuseLog.php";
|
|
$wgAutoloadClasses['SpecialAbuseFilter'] = "$dir/SpecialAbuseFilter.php";
|
|
|
|
$wgSpecialPages['AbuseLog'] = 'SpecialAbuseLog';
|
|
$wgSpecialPages['AbuseFilter'] = 'SpecialAbuseFilter';
|
|
|
|
$wgHooks['EditFilter'][] = 'AbuseFilterHooks::onEditFilter';
|
|
$wgHooks['GetAutoPromoteGroups'][] = 'AbuseFilterHooks::onGetAutoPromoteGroups';
|
|
$wgHooks['AbortMove'][] = 'AbuseFilterHooks::onAbortMove';
|
|
$wgHooks['AbortNewAccount'][] = 'AbuseFilterHooks::onAbortNewAccount';
|
|
$wgHooks['ArticleDelete'][] = 'AbuseFilterHooks::onArticleDelete';
|
|
|
|
$wgAvailableRights[] = 'abusefilter-modify';
|
|
$wgAvailableRights[] = 'abusefilter-log-detail';
|
|
$wgAvailableRights[] = 'abusefilter-view';
|
|
$wgAvailableRights[] = 'abusefilter-log';
|
|
$wgAvailableRights[] = 'abusefilter-private';
|
|
|
|
$wgAbuseFilterAvailableActions = array( 'flag', 'throttle', 'warn', 'disallow', 'blockautopromote', 'block', 'degroup' ); |