ILIAS
release_5-2 Revision v5.2.25-18-g3f80b828510
|
Validator for the components of a URI for a specific scheme. More...
Public Member Functions | |
doValidate (&$uri, $config, $context) | |
Validates the components of a URI for a specific scheme. More... | |
validate (&$uri, $config, $context) | |
Public interface for validating components of a URI. More... | |
Data Fields | |
$default_port = null | |
Scheme's default port (integer). More... | |
$browsable = false | |
Whether or not URIs of this scheme are locatable by a browser http and ftp are accessible, while mailto and news are not. More... | |
$secure = false | |
Whether or not data transmitted over this scheme is encrypted. More... | |
$hierarchical = false | |
Whether or not the URI always uses <hier_part>, resolves edge cases with making relative URIs absolute bool. More... | |
$may_omit_host = false | |
Whether or not the URI may omit a hostname when the scheme is explicitly specified, ala file:///path/to/file. More... | |
Validator for the components of a URI for a specific scheme.
Definition at line 6 of file URIScheme.php.
|
abstract |
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 |
Referenced by validate().
HTMLPurifier_URIScheme::validate | ( | & | $uri, |
$config, | |||
$context | |||
) |
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 |
Definition at line 63 of file URIScheme.php.
References $config, and doValidate().
HTMLPurifier_URIScheme::$browsable = false |
Whether or not URIs of this scheme are locatable by a browser http and ftp are accessible, while mailto and news are not.
bool
Definition at line 22 of file URIScheme.php.
HTMLPurifier_URIScheme::$default_port = null |
Scheme's default port (integer).
If an explicit port number is specified that coincides with the default port, it will be elided. int
Definition at line 15 of file URIScheme.php.
HTMLPurifier_URIScheme::$hierarchical = false |
Whether or not the URI always uses <hier_part>, resolves edge cases with making relative URIs absolute bool.
Definition at line 36 of file URIScheme.php.
HTMLPurifier_URIScheme::$may_omit_host = false |
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. bool
Definition at line 44 of file URIScheme.php.
HTMLPurifier_URIScheme::$secure = false |
Whether or not data transmitted over this scheme is encrypted.
https is secure, http is not. bool
Definition at line 29 of file URIScheme.php.