mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Nuke
synced 2024-12-12 08:35:09 +00:00
24 lines
539 B
PHP
24 lines
539 B
PHP
|
<?php
|
||
|
|
||
|
interface NukeGetNewPagesHook {
|
||
|
|
||
|
/**
|
||
|
* 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
|
||
|
*/
|
||
|
public function onNukeGetNewPages(
|
||
|
string $username,
|
||
|
?string $pattern,
|
||
|
?int $namespace,
|
||
|
int $limit,
|
||
|
array &$pages
|
||
|
);
|
||
|
|
||
|
}
|