blob: e992df1c3d38b8b1f497643058309a5682e6ce7f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<?php
namespace MediaWiki\Hook;
use MediaWiki\Language\Language;
use MediaWiki\Skin\Skin;
use MediaWiki\Title\Title;
/**
* This is a hook handler interface, see docs/Hooks.md.
* Use the hook name "SkinEditSectionLinks" to register handlers implementing this interface.
*
* @stable to implement
* @ingroup Hooks
*/
interface SkinEditSectionLinksHook {
/**
* Use this hook to modify section edit links.
*
* @since 1.35
*
* @param Skin $skin Skin object rendering the UI
* @param Title $title Title being linked to (may not be the same as the page title,
* if the section is included from a template)
* @param string $section Designation of the section being pointed to, to be included in
* the link, like "§ion=$section"
* @param string $sectionTitle Section title, used in the default tooltip. Escape before using.
* By default, this is wrapped in the 'editsectionhint' message.
* @param array &$result Array containing all link detail arrays. Each link detail array should
* contain the following keys:
* - `targetTitle`: Target Title object
* - `text`: String for the text
* - `attribs`: Array of attributes
* - `query`: Array of query parameters to add to the URL
* @param Language $lang Language to use for the link in the wfMessage function
* @return bool|void True or no return value to continue or false to abort
*/
public function onSkinEditSectionLinks( $skin, $title, $section, $sectionTitle,
&$result, $lang
);
}
|