< Manual:Hooks 
 
      | 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": "MyExtensionHooks::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
- &$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.
    This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.