ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
HTMLPurifier_URIScheme_mailto Class Reference

Validates mailto (for E-mail) according to RFC 2368. More...

+ Inheritance diagram for HTMLPurifier_URIScheme_mailto:
+ Collaboration diagram for HTMLPurifier_URIScheme_mailto:

Public Member Functions

 validate (&$uri, $config, $context)
 Validates the components of a URI.

Data Fields

 $browsable = false
- Data Fields inherited from HTMLPurifier_URIScheme
 $default_port = null
 Scheme's default port (integer)
 $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.
 $hierarchical = false
 Whether or not the URI always uses <hier_part>, resolves edge cases with making relative URIs absolute.

Detailed Description

Validates mailto (for E-mail) according to RFC 2368.

Todo:

Validate the email address

Filter allowed query parameters

Definition at line 12 of file mailto.php.

Member Function Documentation

HTMLPurifier_URIScheme_mailto::validate ( $uri,
  $config,
  $context 
)

Validates the components of a URI.

Note
This implementation should be called by children if they define a default port, as it does port processing.
Parameters
$uriInstance of HTMLPurifier_URI
$configHTMLPurifier_Config object
$contextHTMLPurifier_Context object
Returns
Bool success or failure

Reimplemented from HTMLPurifier_URIScheme.

Definition at line 16 of file mailto.php.

References $config.

{
parent::validate($uri, $config, $context);
$uri->userinfo = null;
$uri->host = null;
$uri->port = null;
// we need to validate path against RFC 2368's addr-spec
return true;
}

Field Documentation

HTMLPurifier_URIScheme_mailto::$browsable = false

Definition at line 14 of file mailto.php.


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