Manual:Kancalar/APIEditBeforeSave

This page is a translated version of the page Manual:Hooks/APIEditBeforeSave and the translation is 10% complete.
APIEditBeforeSave
sürüm 1.13.0 sürümünden mevcuttur
sürüm 1.34.0 (Gerrit change 519797) içinde kaldırıldı
Called right before saving an edit submitted through api.php?action=edit
İşlevi tanımlayın:
public static function onAPIEditBeforeSave( $editPage, $text, &$resultArr ) { ... }
Ek kancası extension.json sürümünde:
{
	"Hooks": {
		"APIEditBeforeSave": "MediaWiki\\Extension\\MyExtension\\Hooks::onAPIEditBeforeSave"
	}
}
Çağrıdan: Dosya(lar): api/ApiEditPage.php
Arayüz: APIEditBeforeSaveHook.php

Kancaların takılmasıyla ilgili daha fazla bilgi için Manual:Hooks sayfasına bakın.
Bu kancayı kullanan uzantı örnekleri için Category:APIEditBeforeSave extensions/tr sayfasına bakın.

Details

  • $editPage: the EditPage object
  • $text: the new text of the article (has yet to be saved)
  • $resultArr: data in this array will be added to the API result

Notes

Return true to continue processing, return false to abort processing and reject the edit. If $resultArr was filled, the API will return an <edit result="Failure"> element with the contents of $resultArr added in. If $resultArr wasn't filled, the API will return an error message.