ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
◀ ilDoc Overview
mailto.php
Go to the documentation of this file.
1
<?
php
2
3
// VERY RELAXED! Shouldn't cause problems, not even Firefox checks if the
4
// email is valid, but be careful!
5
12
class
HTMLPurifier_URIScheme_mailto
extends
HTMLPurifier_URIScheme
13
{
17
public
$browsable
=
false
;
18
22
public
$may_omit_host
=
true
;
23
30
public
function
doValidate
(&$uri,
$config
,
$context
)
31
{
32
$uri->userinfo = null;
33
$uri->host = null;
34
$uri->port = null;
35
// we need to validate path against RFC 2368's addr-spec
36
return
true
;
37
}
38
}
39
40
// vim: et sw=4 sts=4
$context
$context
Definition:
webdav.php:25
$config
$config
Definition:
bootstrap.php:15
HTMLPurifier_URIScheme_mailto
Validates mailto (for E-mail) according to RFC 2368.
Definition:
mailto.php:12
HTMLPurifier_URIScheme_mailto\doValidate
doValidate(&$uri, $config, $context)
Definition:
mailto.php:30
HTMLPurifier_URIScheme_mailto\$may_omit_host
$may_omit_host
bool
Definition:
mailto.php:22
php
HTMLPurifier_URIScheme_mailto\$browsable
$browsable
bool
Definition:
mailto.php:17
HTMLPurifier_URIScheme
Validator for the components of a URI for a specific scheme.
Definition:
URIScheme.php:6
libs
composer
vendor
ezyang
htmlpurifier
library
HTMLPurifier
URIScheme
mailto.php
Generated on Thu Jan 30 2025 19:01:17 for ILIAS by
1.8.13 (using
Doxyfile
)