< Manual:Hooks
CanIPUseHTTPS
Available from version 1.22.0
Removed in version 1.37.0
Called when checking if an IP address can use HTTPS
Define function:
public static function onCanIPUseHTTPS( $ip, &$canDo ) { ... }
Attach hook: In extension.json:
{
	"Hooks": {
		"CanIPUseHTTPS": "MyExtensionHooks::onCanIPUseHTTPS"
	}
}
Called from: File(s): GlobalFunctions.php
Interface: CanIPUseHTTPSHook.php

For more information about attaching hooks, see Manual:Hooks .
For examples of extensions using this hook, see Category:CanIPUseHTTPS extensions.

Details

  • $ip: The IP address in human-readable form
  • &$canDo: This reference should be set to false if the client may not be able to use HTTPS

See also

  • Manual:HTTPS
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.