Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
1 | <?php |
2 | |
3 | namespace MediaWiki\Hook; |
4 | |
5 | use MediaWiki\Title\ForeignTitle; |
6 | use MediaWiki\Title\Title; |
7 | |
8 | /** |
9 | * This is a hook handler interface, see docs/Hooks.md. |
10 | * Use the hook name "AfterImportPage" to register handlers implementing this interface. |
11 | * |
12 | * @stable to implement |
13 | * @ingroup Hooks |
14 | */ |
15 | interface AfterImportPageHook { |
16 | /** |
17 | * This hook is called when a page import is completed. |
18 | * |
19 | * @since 1.35 |
20 | * |
21 | * @param Title $title Title under which the revisions were imported |
22 | * @param ForeignTitle $foreignTitle ForeignTitle object based on data provided by the XML file |
23 | * @param int $revCount Number of revisions in the XML file |
24 | * @param int $sRevCount Number of successfully imported revisions |
25 | * @param array $pageInfo Associative array of page information |
26 | * @return bool|void True or no return value to continue or false to abort |
27 | */ |
28 | public function onAfterImportPage( $title, $foreignTitle, $revCount, |
29 | $sRevCount, $pageInfo |
30 | ); |
31 | } |