Moodle PHP Documentation 4.4
Moodle 4.4.1 (Build: 20240610) (db07c09afc5)
|
Validates IRC defined by IETF Draft. More...
Public Member Functions | |
doValidate (&$uri, $config, $context) | |
Validates the components of a URI for a specific scheme. | |
validate (&$uri, $config, $context) | |
Public interface for validating components of a URI. | |
Public Attributes | |
$browsable = true | |
$default_port = null | |
Scheme's default port (integer). | |
$hierarchical = true | |
$may_omit_host = false | |
Whether or not the URI may omit a hostname when the scheme is explicitly specified, ala file:///path/to/file. | |
$secure = false | |
Whether or not data transmitted over this scheme is encrypted. | |
Validates IRC defined by IETF Draft.
HTMLPurifier_URIScheme_irc::doValidate | ( | & | $uri, |
$config, | |||
$context ) |
Validates the components of a URI for a specific scheme.
HTMLPurifier_URI | $uri | Reference to a HTMLPurifier_URI object |
HTMLPurifier_Config | $config | |
HTMLPurifier_Context | $context |
bool | success or failure |
Reimplemented from HTMLPurifier_URIScheme.
|
inherited |
Public interface for validating components of a URI.
Performs a bunch of default actions. Don't overload this method.
HTMLPurifier_URI | $uri | Reference to a HTMLPurifier_URI object |
HTMLPurifier_Config | $config | |
HTMLPurifier_Context | $context |
bool | success or failure |
|
inherited |
Scheme's default port (integer).
If an explicit port number is specified that coincides with the default port, it will be elided. @type int
|
inherited |
Whether or not the URI may omit a hostname when the scheme is explicitly specified, ala file:///path/to/file.
As of writing, 'file' is the only scheme that browsers support his properly. @type bool
|
inherited |
Whether or not data transmitted over this scheme is encrypted.
https is secure, http is not. @type bool