ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
s
t
w
+
Functions
_
a
b
c
f
g
h
i
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
HasMaxLength.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 2017 Jesús López <lopez@leifos.com> Extended GPL, see docs/LICENSE */
3
4
namespace
ILIAS\Refinery\String
;
5
6
use
ILIAS\Refinery\Constraint
;
7
use
ILIAS\Data
;
8
use
ILIAS\Refinery\Custom\Constraint
as
CustomConstraint
;
9
10
class
HasMaxLength
extends
CustomConstraint
implements
Constraint
11
{
15
protected
$max_length
;
16
17
public
function
__construct
(
int
$max_length
, Data\
Factory
$data_factory
, \
ilLanguage
$lng
)
18
{
19
$this->max_length =
$max_length
;
20
parent::__construct
(
21
function
($value) {
22
return
strlen($value) <=
$this->max_length
;
23
},
24
function
(
$txt
, $value) {
25
return
$txt
(
"not_max_length"
, $this->max_length);
26
},
27
$data_factory
,
28
$lng
29
);
30
}
31
}
ILIAS\Refinery\Custom\Constraint\$data_factory
$data_factory
Definition:
Constraint.php:20
ILIAS\Refinery\String\HasMaxLength
Definition:
HasMaxLength.php:10
ILIAS\Refinery\String\HasMaxLength\__construct
__construct(int $max_length, Data\Factory $data_factory, \ilLanguage $lng)
Definition:
HasMaxLength.php:17
ILIAS\Refinery\String\HasMaxLength\$max_length
$max_length
Definition:
HasMaxLength.php:15
ILIAS\Refinery\Constraint
A constraint encodes some resrtictions on values.
Definition:
Constraint.php:14
Constraint
ILIAS\Refinery\Custom\Constraint\$lng
$lng
Definition:
Constraint.php:25
ILIAS\Data\Factory
Builds data types.
Definition:
Factory.php:19
$txt
$txt
Definition:
error.php:13
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:30
ilLanguage
language handling
Definition:
class.ilLanguage.php:26
ILIAS\Refinery\String
Definition:
CaseOfLabel.php:5
Constraint
ILIAS\Data
Definition:
Alphanumeric.php:10
src
Refinery
String
HasMaxLength.php
Generated on Thu Apr 3 2025 20:01:21 for ILIAS by
1.8.13 (using
Doxyfile
)