ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
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
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
Validates mailto (for E-mail) according to RFC 2368.
Definition: mailto.php:13
doValidate(&$uri, $config, $context)
Definition: mailto.php:30
Validator for the components of a URI for a specific scheme.
Definition: URIScheme.php:7