< Manual:Hooks
CategoryAfterPageAdded
Available from version 1.21.0 (Gerrit change 52295)
Called after a page is added to a category
Define function:
public static function onCategoryAfterPageAdded( $category, $wikiPage ) { ... }
Attach hook: In extension.json:
{
	"Hooks": {
		"CategoryAfterPageAdded": "MyExtensionHooks::onCategoryAfterPageAdded"
	}
}
Called from: File(s): page/WikiPage.php
Interface: CategoryAfterPageAddedHook.php

For more information about attaching hooks, see Manual:Hooks .
For examples of extensions using this hook, see Category:CategoryAfterPageAdded extensions.

Details

  • $category: Category that page was added to
  • $wikiPage: WikiPage that was added

See also

  • Hooks/CategoryAfterPageRemoved
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.