MediaWiki REL1_37
MediaWikiPerformActionHook.php
Go to the documentation of this file.
1<?php
2
3namespace MediaWiki\Hook;
4
5use Article;
6use MediaWiki;
7use OutputPage;
8use Title;
9use User;
10use WebRequest;
11
35 public function onMediaWikiPerformAction( $output, $article, $title, $user,
36 $request, $mediaWiki
37 );
38}
Class for viewing MediaWiki article and history.
Definition Article.php:49
This is one of the Core classes and should be read at least once by any new developers.
Represents a title within MediaWiki.
Definition Title.php:48
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:69
The WebRequest class encapsulates getting at data passed in the URL or via a POSTed form stripping il...
This is a hook handler interface, see docs/Hooks.md.
onMediaWikiPerformAction( $output, $article, $title, $user, $request, $mediaWiki)
Use this hook to override MediaWiki::performAction().
A helper class for throttling authentication attempts.