Manual:Hooks/ContributionsLineEnding
Appearance
| ContributionsLineEnding | |
|---|---|
| Available from version 1.13.0 Called before an HTML line for Special:Contributions is finished | |
| Define function: | public static function onContributionsLineEnding( MediaWiki\Pager\ContributionsPager $pager, string &$ret, stdClass $row, array &$classes, array &$attribs ) { ... }
|
| Attach hook: | In extension.json:
{
"Hooks": {
"ContributionsLineEnding": "MediaWiki\\Extension\\MyExtension\\Hooks::onContributionsLineEnding"
}
}
|
| Called from: | File(s): Pager/ContributionsPager.php |
| Interface: | ContributionsLineEndingHook.php |
For more information about attaching hooks, see Manual:Hooks.
For examples of extensions using this hook, see Category:ContributionsLineEnding extensions.
Details
[edit]$pager: MediaWiki\Pager\ContributionsPager object&$ret: the HTML string representing the line$row: the DB row for this line&$classes: array of CSS classes to apply to the surrounding line wrapper&$attrib: associative array of other HTML attributes to apply to the surrounding line wrapper. Currently only data attributes reserved to MediaWiki are allowed (seeSanitizer::isReservedDataAttribute).