wiki.techinc.nl/includes/parser/Hook/ParserSectionCreateHook.php
apaskulin c44488f725 docs: Hook interface doc comment review
Edited doc comments for hook interfaces to improve
consistency and add type hints.

Bug: T246855
Change-Id: I38fa802463cd6f39bf5946dbbeb1b3ebaea604b2
2020-04-21 09:10:08 +10:00

31 lines
1 KiB
PHP

<?php
namespace MediaWiki\Hook;
use Parser;
/**
* @stable for implementation
* @ingroup Hooks
*/
interface ParserSectionCreateHook {
/**
* This hook is called each time the parser creates a document section
* from wikitext. Use this to apply per-section modifications to HTML (like
* wrapping the section in a DIV). Caveat: DIVs are valid wikitext, and a DIV
* can begin in one section and end in another. Make sure your code can handle
* that case gracefully. See the EditSectionClearerLink extension for an example.
*
* @since 1.35
*
* @param Parser $parser Calling Parser instance
* @param int $section Section number, zero-based, but section 0 is usually empty
* @param string &$sectionContent Reference to the content of the section, which
* can be modified by the hook
* @param bool $showEditLinks Whether this section has an edit link
* @return bool|void True or no return value to continue or false to abort
*/
public function onParserSectionCreate( $parser, $section, &$sectionContent,
$showEditLinks
);
}