mediawiki-extensions-AbuseF.../includes/Hooks/AbuseFilterContentToStringHook.php
DannyS712 9c1868d55e Update hook calling to use new HookContainer
Bug: T254306
Change-Id: Ic5c82a367e34135bbc0f00ece5aeef4f2d92881b
2020-09-17 10:05:45 +00:00

24 lines
611 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
* @return bool|void True or no return value to continue or false to abort
*/
public function onAbuseFilterContentToString(
Content $content,
?string &$text
);
}