Manual:フック/ModifyExportQuery

This page is a translated version of the page Manual:Hooks/ModifyExportQuery and the translation is 22% complete.
ModifyExportQuery
バージョン 1.16.0 から利用可能
Modify the query used by the exporter.
関数の定義:
public static function onModifyExportQuery( $db, &$tables, &$cond, &$opts, &$join_conds, &$conds ) { ... }
フックのアタッチ: extension.json 内:
{
	"Hooks": {
		"ModifyExportQuery": "MediaWiki\\Extension\\MyExtension\\Hooks::onModifyExportQuery"
	}
}
呼び出し元: ファイル: export/WikiExporter.php
インターフェイス: ModifyExportQueryHook.php

フックの設定についての詳細情報は Manual:フック を参照してください。
このフックを使用する拡張機能の例については、Category:ModifyExportQuery extensions/ja を参照してください。

詳細

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