mediawiki-extensions-AbuseF.../includes/Hooks/AbuseFilterContentToStringHook.php
Umherirrender b849e5daea Move documentation from hooks.txt to hook interfaces
The new system allows to have documentation directly at the interfaces

Change-Id: I3e8afb3605dea80db95e314b3dd42087e9bc1b06
2021-03-31 21:50:30 +02:00

24 lines
641 B
PHP

<?php
namespace MediaWiki\Extension\AbuseFilter\Hooks;
use Content;
interface AbuseFilterContentToStringHook {
/**
* Hook runner for the `AbuseFilter-contentToString` hook
*
* Called when converting a Content object to a string to which
* filters can be applied. If the hook function returns true, Content::getTextForSearchIndex()
* will be used for non-text content.
*
* @param Content $content
* @param ?string &$text Set this to the desired text
* @return bool|void True or no return value to continue or false to abort
*/
public function onAbuseFilter_contentToString(
Content $content,
?string &$text
);
}