2020-06-05 09:39:50 +00:00
|
|
|
<?php
|
|
|
|
|
2021-02-11 02:37:19 +00:00
|
|
|
namespace MediaWiki\Extension\Nuke\Hooks;
|
|
|
|
|
2020-06-05 09:39:50 +00:00
|
|
|
interface NukeGetNewPagesHook {
|
|
|
|
|
|
|
|
/**
|
2021-03-31 20:07:24 +00:00
|
|
|
* Hook runner for the `NukeGetNewPages` hook
|
|
|
|
*
|
2020-06-05 09:39:50 +00:00
|
|
|
* 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
|
2021-03-31 20:07:24 +00:00
|
|
|
* @return bool|void True or no return value to continue or false to abort
|
2020-06-05 09:39:50 +00:00
|
|
|
*/
|
|
|
|
public function onNukeGetNewPages(
|
|
|
|
string $username,
|
|
|
|
?string $pattern,
|
|
|
|
?int $namespace,
|
|
|
|
int $limit,
|
|
|
|
array &$pages
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|