mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-13 17:27:20 +00:00
57ecef75c5
Changes to the use statements done automatically via script Addition of missing use statement done manually Change-Id: If80031678a474157e4cc78a3d3621dab53aded67
24 lines
659 B
PHP
24 lines
659 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\AbuseFilter\Hooks;
|
|
|
|
use MediaWiki\Content\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
|
|
);
|
|
}
|