Manual:Hooks/SpecialRecentChangesQuery
Jump to navigation
Jump to search
| This deprecated feature should no longer be used, but is still available for reasons of backwards compatibility. This feature was deprecated in version 1.23. Please use ChangesListSpecialPageStructuredFilters (preferred) or ChangesListSpecialPageQuery instead. |
| SpecialRecentChangesQuery | |
|---|---|
| Available from version 1.13.0 Called when building sql query for SpecialRecentChanges. | |
| Define function: |
public static function onSpecialRecentChangesQuery( &$conds, &$tables, &$join_conds, $opts, &$query_options, &$select ) { ... }
|
| Attach hook: |
In extension.json: {
"Hooks": {
"SpecialRecentChangesQuery": "MyExtensionHooks::onSpecialRecentChangesQuery"
}
}
For MediaWiki ≤1.25: $wgHooks['SpecialRecentChangesQuery'][] = 'MyExtensionHooks::onSpecialRecentChangesQuery';
|
| Called from: | File(s): SpecialRecentchanges.php |
For more information about attaching hooks, see Manual:Hooks.
For examples of extensions using this hook, see Category:SpecialRecentChangesQuery extensions.
Details[edit]
&$conds: array of where conditionals for query&$tables: array of tables to be queried&$join_conds: join conditions for the tables$opts: FormOptions for this request&$query_options: additional query options (added in r61670)&$select: array of table fields to be fetched