This has been approved as part of RFC T166010 Bug: T321882 Change-Id: I6bbdbbe6ea48cc1f50bc568bb8780fc7c5361a6f
27 lines
719 B
PHP
27 lines
719 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Hook;
|
|
|
|
// phpcs:disable Squiz.Classes.ValidClassName.NotCamelCaps
|
|
use MediaWiki\EditPage\EditPage;
|
|
use MediaWiki\Request\WebRequest;
|
|
|
|
/**
|
|
* This is a hook handler interface, see docs/Hooks.md.
|
|
* Use the hook name "EditPage::importFormData" to register handlers implementing this interface.
|
|
*
|
|
* @stable to implement
|
|
* @ingroup Hooks
|
|
*/
|
|
interface EditPage__importFormDataHook {
|
|
/**
|
|
* Use this hook to read additional data posted in the form.
|
|
*
|
|
* @since 1.35
|
|
*
|
|
* @param EditPage $editpage
|
|
* @param WebRequest $request
|
|
* @return bool|void Return value is ignored; this hook should always return true
|
|
*/
|
|
public function onEditPage__importFormData( $editpage, $request );
|
|
}
|