mediawiki-extensions-Nuke/includes/Hooks/NukeGetNewPagesHook.php
Umherirrender e79b52ee8a Move documentation from hooks.txt to hook interfaces
The new system allows to have documentation directly at the interfaces

Change-Id: I82f6f87d145cc43b2dd5b7d1fa256850b50ca63f
2021-03-31 22:07:40 +02:00

28 lines
687 B
PHP

<?php
namespace MediaWiki\Extension\Nuke\Hooks;
interface NukeGetNewPagesHook {
/**
* Hook runner for the `NukeGetNewPages` hook
*
* After searching for pages to delete. Can be used to add and remove pages.
*
* @param string $username username filter applied
* @param ?string $pattern pattern filter applied
* @param ?int $namespace namespace filter applied
* @param int $limit limit filter applied
* @param array &$pages page titles already retrieved
* @return bool|void True or no return value to continue or false to abort
*/
public function onNukeGetNewPages(
string $username,
?string $pattern,
?int $namespace,
int $limit,
array &$pages
);
}