ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f87
HTMLPurifier_URIScheme_nntp Class Reference

Validates nntp (Network News Transfer Protocol) as defined by generic RFC 1738. More...

+ Inheritance diagram for HTMLPurifier_URIScheme_nntp:
+ Collaboration diagram for HTMLPurifier_URIScheme_nntp:

Public Member Functions

 doValidate (&$uri, $config, $context)
 
- Public Member Functions inherited from HTMLPurifier_URIScheme
 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 = 119
 int More...
 
 $browsable = false
 bool More...
 
- Data Fields inherited from HTMLPurifier_URIScheme
 $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...
 

Detailed Description

Validates nntp (Network News Transfer Protocol) as defined by generic RFC 1738.

Definition at line 6 of file nntp.php.

Member Function Documentation

◆ doValidate()

HTMLPurifier_URIScheme_nntp::doValidate ( $uri,
  $config,
  $context 
)
Parameters
HTMLPurifier_URI$uri
HTMLPurifier_Config$config
HTMLPurifier_Context$context
Returns
bool

Definition at line 24 of file nntp.php.

25  {
26  $uri->userinfo = null;
27  $uri->query = null;
28  return true;
29  }

Field Documentation

◆ $browsable

HTMLPurifier_URIScheme_nntp::$browsable = false

bool

Definition at line 16 of file nntp.php.

◆ $default_port

HTMLPurifier_URIScheme_nntp::$default_port = 119

int

Definition at line 11 of file nntp.php.


The documentation for this class was generated from the following file: