2007-11-05 16:38:38 +00:00
|
|
|
<?php
|
|
|
|
if ( !defined( 'MEDIAWIKI' ) ) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
$wgExtensionCredits['other'][] = array(
|
|
|
|
'name' => 'Title Blacklist',
|
|
|
|
'author' => 'VasilievVV',
|
2007-12-26 16:50:58 +00:00
|
|
|
'version' => '1.4',
|
2007-12-19 18:35:44 +00:00
|
|
|
'url' => 'http://www.mediawiki.org/wiki/Extension:Title_Blacklist',
|
2007-12-16 18:21:11 +00:00
|
|
|
'description' => 'Allows to forbide creation of pages with specified titles'
|
2007-11-05 16:38:38 +00:00
|
|
|
);
|
|
|
|
|
2007-12-26 16:50:58 +00:00
|
|
|
$wgExtensionMessagesFiles['TitleBlacklist'] = dirname( __FILE__ ) . '/TitleBlacklist.i18n.php';
|
2007-12-08 21:06:21 +00:00
|
|
|
$wgAutoloadClasses['TitleBlacklist'] = dirname( __FILE__ ) . '/TitleBlacklist.list.php';
|
|
|
|
$wgAutoloadClasses['TitleBlacklistHooks'] = dirname( __FILE__ ) . '/TitleBlacklist.hooks.php';
|
|
|
|
|
|
|
|
$wgExtensionFunctions[] = 'efInitTitleBlacklist';
|
|
|
|
|
2007-12-09 12:15:13 +00:00
|
|
|
// Sources of TitleBlacklist
|
2007-12-10 19:02:38 +00:00
|
|
|
define( 'TBLSRC_MSG', 0 ); //For internal usage
|
|
|
|
define( 'TBLSRC_LOCALPAGE', 1 ); //Local wiki page
|
2007-12-23 09:47:36 +00:00
|
|
|
define( 'TBLSRC_URL', 2 ); //Load blacklist from URL
|
2007-12-10 19:02:38 +00:00
|
|
|
define( 'TBLSRC_FILE', 3 ); //Load from file
|
2007-12-09 12:15:13 +00:00
|
|
|
$wgTitleBlacklistSources = array();
|
2007-11-05 16:38:38 +00:00
|
|
|
|
2007-12-19 18:35:44 +00:00
|
|
|
$wgTitleBlacklistCaching = array(
|
|
|
|
'warningchance' => 100,
|
|
|
|
'expiry' => 900,
|
|
|
|
'warningexpiry' => 600,
|
|
|
|
);
|
|
|
|
|
2007-11-05 16:38:38 +00:00
|
|
|
$wgAvailableRights[] = 'tboverride';
|
|
|
|
$wgGroupPermissions['sysop']['tboverride'] = true;
|
|
|
|
|
2007-12-08 21:06:21 +00:00
|
|
|
function efInitTitleBlacklist() {
|
|
|
|
global $wgTitleBlacklist;
|
|
|
|
$wgTitleBlacklist = new TitleBlacklist();
|
2007-12-26 16:50:58 +00:00
|
|
|
wfLoadExtensionMessages( 'TitleBlacklist' );
|
2007-12-08 21:06:21 +00:00
|
|
|
efSetupTitleBlacklistHooks();
|
|
|
|
}
|
|
|
|
|
|
|
|
function efSetupTitleBlacklistHooks() {
|
|
|
|
global $wgHooks;
|
2007-12-15 06:16:19 +00:00
|
|
|
$wgHooks['getUserPermissionsErrors'][] = 'TitleBlacklistHooks::userCan';
|
|
|
|
$wgHooks['AbortMove'][] = 'TitleBlacklistHooks::abortMove';
|
|
|
|
$wgHooks['UploadVerification'][] = 'TitleBlacklistHooks::verifyUpload';
|
2007-12-23 09:47:36 +00:00
|
|
|
$wgHooks['EditFilter'][] = 'TitleBlacklistHooks::validateBlacklist';
|
2007-12-26 16:50:58 +00:00
|
|
|
}
|