ILIAS  release_4-4 Revision
HTMLPurifier_URIScheme_file Class Reference

Validates file as defined by RFC 1630 and RFC 1738. More...

+ Inheritance diagram for HTMLPurifier_URIScheme_file:
+ Collaboration diagram for HTMLPurifier_URIScheme_file:

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

 $browsable = false
 
 $may_omit_host = true
 
- Data Fields inherited from HTMLPurifier_URIScheme
 $default_port = null
 Scheme's default port (integer). More...
 
 $browsable = false
 Whether or not URIs of this schem 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. 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 file as defined by RFC 1630 and RFC 1738.

Definition at line 6 of file file.php.

Member Function Documentation

◆ doValidate()

HTMLPurifier_URIScheme_file::doValidate ( $uri,
  $config,
  $context 
)

Definition at line 19 of file file.php.

19  {
20  // Authentication method is not supported
21  $uri->userinfo = null;
22  // file:// makes no provisions for accessing the resource
23  $uri->port = null;
24  // While it seems to work on Firefox, the querystring has
25  // no possible effect and is thus stripped.
26  $uri->query = null;
27  return true;
28  }

Field Documentation

◆ $browsable

HTMLPurifier_URIScheme_file::$browsable = false

Definition at line 10 of file file.php.

◆ $may_omit_host

HTMLPurifier_URIScheme_file::$may_omit_host = true

Definition at line 17 of file file.php.


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