ILIAS
release_5-0 Revision 5.0.0-1144-gc4397b1f870
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Files
File List
+
Globals
+
All
$
(
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
o
p
r
s
t
u
v
w
x
+
Variables
$
(
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
SimpleCheck.php
Go to the documentation of this file.
1
<?php
2
7
class
HTMLPurifier_AttrDef_URI_Email_SimpleCheck
extends
HTMLPurifier_AttrDef_URI_Email
8
{
9
16
public
function
validate
($string, $config, $context)
17
{
18
// no support for named mailboxes i.e. "Bob <bob@example.com>"
19
// that needs more percent encoding to be done
20
if
($string ==
''
) {
21
return
false
;
22
}
23
$string = trim($string);
24
$result
= preg_match(
'/^[A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$/i'
, $string);
25
return
$result
? $string :
false
;
26
}
27
}
28
29
// vim: et sw=4 sts=4
$result
$result
Definition:
CleanUpTest.php:407
HTMLPurifier_AttrDef_URI_Email
Definition:
Email.php:3
HTMLPurifier_AttrDef_URI_Email_SimpleCheck\validate
validate($string, $config, $context)
Definition:
SimpleCheck.php:16
HTMLPurifier_AttrDef_URI_Email_SimpleCheck
Primitive email validation class based on the regexp found at http://www.regular-expressions.info/email.html.
Definition:
SimpleCheck.php:7
Services
Html
HtmlPurifier
library
HTMLPurifier
AttrDef
URI
Email
SimpleCheck.php
Generated on Mon Mar 31 2025 19:00:46 for ILIAS by
1.8.13 (using
Doxyfile
)