Page MenuHomeWickedGov Phorge

LuaTitleBlacklistLibrary.php
No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None

LuaTitleBlacklistLibrary.php

<?php
namespace MediaWiki\Extension\TitleBlacklist;
use MediaWiki\Extension\Scribunto\Engines\LuaCommon\LibraryBase;
use MediaWiki\MediaWikiServices;
class LuaTitleBlacklistLibrary extends LibraryBase {
public function register() {
$lib = [
'test' => [ $this, 'test' ],
];
return $this->getEngine()->registerInterface(
__DIR__ . '/mw.ext.TitleBlacklist.lua', $lib, []
);
}
public function test( $action = null, $title = null ) {
$this->checkType( 'mw.ext.TitleBlacklist.test', 1, $action, 'string' );
$this->checkTypeOptional( 'mw.ext.TitleBlacklist.test', 2, $title, 'string', '' );
$this->incrementExpensiveFunctionCount();
if ( $title == '' ) {
$page = $this->getParser()->getPage();
if ( !$page ) {
// Nothing to check
return [ null ];
}
$title = MediaWikiServices::getInstance()->getTitleFormatter()->getPrefixedText( $page );
}
$entry = TitleBlacklist::singleton()->isBlacklisted( $title, $action );
// check if not whitelisted
$whitelist = TitleBlacklist::singleton()->isWhitelisted( $title, $action );
if ( $whitelist ) {
// page is whitelisted, don't continue and return a null object
return [ null ];
}
if ( $entry ) {
return [ [
'params' => $entry->getParams(),
'regex' => $entry->getRegex(),
'raw' => $entry->getRaw(),
'version' => $entry->getFormatVersion(),
'message' => $entry->getErrorMessage( $action ),
'custommessage' => $entry->getCustomMessage()
] ];
}
return [ null ];
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Aug 19, 11:11 (3 w, 11 h ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
89/1a/4f5aa862811eb2b4ab4684a56caf
Default Alt Text
LuaTitleBlacklistLibrary.php (1 KB)

Event Timeline