Manual:Hooks/ContribsPager::reallyDoQuery

ContribsPager::reallyDoQuery
Available from version 1.20.0
Called before really executing the query for Special:Contributions.
Define function:
public static function onContribsPager_reallyDoQuery( array &$data, ContribsPager $pager, int $offset, int $limit, bool $order ) { ... }
Attach hook: In extension.json:
{
	"Hooks": {
		"ContribsPager::reallyDoQuery": "MediaWiki\\Extension\\MyExtension\\Hooks::onContribsPagerreallyDoQuery"
	}
}
Called from: File(s): specials/pagers/ContribsPager.php
Interface: ContribsPager__reallyDoQueryHook.php

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


Details edit

  • &$data: an array of results of all contribution queries
  • $pager: The ContribsPager object hooked into
  • $offset: Index offset, inclusive
  • $limit: Exact query limit
  • $order: Represents the query direction. Set this as false for ascending, or true for descending.