Manual:Hooks/ModifyExportQuery/de

From mediawiki.org
This page is a translated version of the page Manual:Hooks/ModifyExportQuery and the translation is 11% complete.
ModifyExportQuery
Erhältlich ab Version 1.16.0
Modify the query used by the exporter.
Funktion definieren:
public static function onModifyExportQuery( $db, &$tables, &$cond, &$opts, &$join_conds, &$conds ) { ... }
Haken anbringen: In extension.json:
{
	"Hooks": {
		"ModifyExportQuery": "MediaWiki\\Extension\\MyExtension\\Hooks::onModifyExportQuery"
	}
}
Angerufen von: Datei(en): export/WikiExporter.php
Interface: ModifyExportQueryHook.php

For more information about attaching hooks, see Handbuch:Hooks .
For examples of extensions using this hook, see Category:ModifyExportQuery extensions/de.

Details

  • $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.