summaryrefslogtreecommitdiff
blob: b4bb48c694d47899061e463e94df05604f2ad6be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

namespace MediaWiki\CheckUser\Hook;

use IContextSource;

interface CheckUserSubtitleLinksHook {
	/**
	 * Use this hook to modify the subtitle links on Special:Investigate.
	 *
	 * @since 1.36
	 *
	 * @param IContextSource $context
	 * @param array &$links
	 */
	public function onCheckUserSubtitleLinks(
		IContextSource $context,
		array &$links
	);
}