For compliance with the new version of the table interface policy (T255803). This patch was created by an automated search & replace operation on the includes/ directory. Bug: T257789 Change-Id: I17e5e92e24c708ffc846945a136347670a3a20c7
24 lines
630 B
PHP
24 lines
630 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Hook;
|
|
|
|
// phpcs:disable Squiz.Classes.ValidClassName.NotCamelCaps
|
|
use Title;
|
|
|
|
/**
|
|
* @stable to implement
|
|
* @ingroup Hooks
|
|
*/
|
|
interface GetLocalURL__InternalHook {
|
|
/**
|
|
* Use this hook to modify local URLs to internal pages.
|
|
*
|
|
* @since 1.35
|
|
*
|
|
* @param Title $title Title object of page
|
|
* @param string &$url String value as output (out parameter, can modify)
|
|
* @param string $query Query options as string passed to Title::getLocalURL()
|
|
* @return bool|void True or no return value to continue or false to abort
|
|
*/
|
|
public function onGetLocalURL__Internal( $title, &$url, $query );
|
|
}
|