ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
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
l
m
n
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
HasNumbers.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 2018 Nils Haagen <nils.haagen@concepts-and-training.de> Extended GPL, see docs/LICENSE */
3
4
namespace
ILIAS\Refinery\Password
;
5
6
use
ILIAS\Refinery\Custom\Constraint
as
CustomConstraint
;
7
use
ILIAS\Refinery\Constraint
;
8
use
ILIAS\Data
;
9
10
class
HasNumbers
extends
CustomConstraint
implements
Constraint
11
{
12
public
function
__construct
(Data\
Factory
$data_factory
, \
ilLanguage
$lng
)
13
{
14
parent::__construct
(
15
function
(Data\
Password
$value) {
16
return
(
bool
) preg_match(
'/[0-9]/'
, $value->toString());
17
},
18
function
($value) {
19
return
"Password must contain numbers."
;
20
},
21
$data_factory
,
22
$lng
23
);
24
}
25
}
ILIAS\Refinery\Custom\Constraint\$data_factory
$data_factory
Definition:
Constraint.php:22
ilLanguage
ILIAS\Refinery\Constraint
A constraint encodes some resrtictions on values.
Definition:
Constraint.php:14
ILIAS\Data\Password
A password is used as part of credentials for authentication.
Definition:
Password.php:13
Constraint
ILIAS\Refinery\Custom\Constraint\$lng
$lng
Definition:
Constraint.php:27
ILIAS\Refinery\Password
Definition:
Group.php:4
ILIAS\Data\Factory
Builds data types.
Definition:
Factory.php:19
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:40
ILIAS\Refinery\Password\HasNumbers\__construct
__construct(Data\Factory $data_factory, \ilLanguage $lng)
Definition:
HasNumbers.php:12
ILIAS\Refinery\Password\HasNumbers
Definition:
HasNumbers.php:10
Constraint
ILIAS\Data
Definition:
Alphanumeric.php:10
src
Refinery
Password
HasNumbers.php
Generated on Sat Apr 5 2025 21:01:45 for ILIAS by
1.8.13 (using
Doxyfile
)