3 namespace MediaWiki\Page\Hook
;
5 use MediaWiki\Category\Category
;
9 * This is a hook handler interface, see docs/Hooks.md.
10 * Use the hook name "CategoryAfterPageAdded" to register handlers implementing this interface.
12 * @stable to implement
15 interface CategoryAfterPageAddedHook
{
17 * This hook is called after a page is added to a category.
21 * @param Category $category Category that page was added to
22 * @param WikiPage $wikiPage WikiPage that was added
23 * @return bool|void True or no return value to continue or false to abort
25 public function onCategoryAfterPageAdded( $category, $wikiPage );