Manual:Hooks/ModifyExportQuery/pl
Appearance
ModifyExportQuery | |
---|---|
Dostępne od wersji version 1.16.0 Modify the query used by the exporter. | |
Zdefiniuj funkcję: | public static function onModifyExportQuery( $db, &$tables, &$cond, &$opts, &$join_conds, &$conds ) { ... }
|
Dołącz hak: | W extension.json:
{
"Hooks": {
"ModifyExportQuery": "MediaWiki\\Extension\\MyExtension\\Hooks::onModifyExportQuery"
}
}
|
Called from: | Plik(i): export/WikiExporter.php |
Interface: | ModifyExportQueryHook.php |
For more information about attaching hooks, see Podręcznik:Haki .
For examples of extensions using this hook, see Category:ModifyExportQuery extensions/pl.
Szczegóły
- $db - The database object to be queried.
- &$tables - Tables in the query.
- &$cond - An SQL fragment included in the WHERE clause which is used to filter the results
- &$opts - Options for the query.
- &$join_conds - Join conditions for the query.
- &$conds - Conditions in the query.