mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Nuke
synced 2024-12-04 12:48:34 +00:00
7bd74621a7
Bug: T254558 Change-Id: Ibadbdb6f15fc407ef7b9b77b13811b68031e1439
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
|
|
);
|
|
|
|
}
|