Validates news (Usenet) as defined by generic RFC 1738.
More...
Public Member Functions |
| doValidate (&$uri, $config, $context) |
| validate (&$uri, $config, $context) |
| Public interface for validating components of a URI.
|
Data Fields |
| $browsable = false |
| bool
|
| $may_omit_host = true |
| bool
|
| $default_port = null |
| Scheme's default port (integer).
|
| $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.
|
| $secure = false |
| Whether or not data transmitted over this scheme is encrypted.
|
| $hierarchical = false |
| Whether or not the URI always uses <hier_part>, resolves edge cases with making relative URIs absolute bool.
|
| $may_omit_host = false |
| Whether or not the URI may omit a hostname when the scheme is explicitly specified, ala file:///path/to/file.
|
Detailed Description
Validates news (Usenet) as defined by generic RFC 1738.
Definition at line 6 of file news.php.
Member Function Documentation
HTMLPurifier_URIScheme_news::doValidate |
( |
& |
$uri, |
|
|
|
$config, |
|
|
|
$context |
|
) |
| |
- Parameters
-
- Returns
- bool
Reimplemented from HTMLPurifier_URIScheme.
Definition at line 24 of file news.php.
{
$uri->userinfo = null;
$uri->host = null;
$uri->port = null;
$uri->query = null;
return true;
}
Field Documentation
HTMLPurifier_URIScheme_news::$browsable = false |
HTMLPurifier_URIScheme_news::$may_omit_host = true |
The documentation for this class was generated from the following file:
- Services/Html/HtmlPurifier/library/HTMLPurifier/URIScheme/news.php