Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
1 | <?php |
2 | |
3 | namespace MediaWiki\Hook; |
4 | |
5 | use DatabaseLogEntry; |
6 | use LogEventsList; |
7 | |
8 | /** |
9 | * This is a hook handler interface, see docs/Hooks.md. |
10 | * Use the hook name "LogEventsListLineEnding" to register handlers implementing this interface. |
11 | * |
12 | * @stable to implement |
13 | * @ingroup Hooks |
14 | */ |
15 | interface LogEventsListLineEndingHook { |
16 | /** |
17 | * This hook is called before a Special:Log line is finished. |
18 | * |
19 | * @since 1.35 |
20 | * |
21 | * @param LogEventsList $page |
22 | * @param string &$ret HTML line |
23 | * @param DatabaseLogEntry $entry DatabaseLogEntry object for this row |
24 | * @param string[] &$classes Classes to add to the surrounding `<li>` |
25 | * @param array &$attribs Associative array of other HTML attributes for the `<li>` element. |
26 | * Currently only data attributes reserved to MediaWiki are allowed |
27 | * (see Sanitizer::isReservedDataAttribute). |
28 | * @return bool|void True or no return value to continue or false to abort |
29 | */ |
30 | public function onLogEventsListLineEnding( $page, &$ret, $entry, &$classes, |
31 | &$attribs |
32 | ); |
33 | } |