ILIAS
release_5-3 Revision v5.3.23-19-g915713cf615
◀ ilDoc Overview
ComponentEntryRules.php
Go to the documentation of this file.
1
<?
php
2
3
namespace
ILIAS\UI\Implementation\Crawler\Entry
;
4
12
class
ComponentEntryRules
extends
AbstractEntryPart
implements
\JsonSerializable
13
{
17
protected
$rules
= array(
18
"usage"
=>array(),
19
"composition"
=>array(),
20
"interaction"
=>array(),
21
"wording"
=>array(),
22
"ordering"
=>array(),
23
"style"
=>array(),
24
"responsiveness"
=>array(),
25
"accessibility"
=>array()
26
);
27
32
public
function
__construct
(
$rules
= array())
33
{
34
parent::__construct();
35
$this->
setRules
(
$rules
);
36
}
37
42
public
function
withRules
(
$rules
= array())
43
{
44
$clone = clone $this;
45
$clone->setRules(
$rules
);
46
return
$clone;
47
}
48
53
protected
function
setRules
(
$rules
)
54
{
55
if
(!
$rules
) {
56
return
;
57
}
58
$this->
assert
()->isArray(
$rules
);
59
foreach
(
$rules
as $rule_category => $category_rules) {
60
$this->
assert
()->isIndex($rule_category, $this->rules);
61
if
($category_rules && $category_rules !=
""
) {
62
$this->
assert
()->isArray($category_rules);
63
foreach
($category_rules as $rule_id =>
$rule
) {
64
$this->
assert
()->isString(
$rule
);
65
$this->rules[$rule_category][$rule_id] =
$rule
;
66
}
67
}
68
}
69
}
70
74
public
function
getRules
()
75
{
76
return
$this->rules
;
77
}
78
82
public
function
jsonSerialize
()
83
{
84
return
$this->
getRules
();
85
}
86
}
php
An exception for terminatinating execution or to throw for unit testing.
ILIAS\UI\Implementation\Crawler\Entry\AbstractEntryPart
Abstract Entry Part to share some common entry functionality.
Definition:
AbstractEntryPart.php:14
ILIAS\UI\Implementation\Crawler\Entry\AbstractEntryPart\assert
assert()
Definition:
AbstractEntryPart.php:31
ILIAS\UI\Implementation\Crawler\Entry\ComponentEntryRules
Container to hold rules of UI Components.
Definition:
ComponentEntryRules.php:13
ILIAS\UI\Implementation\Crawler\Entry\ComponentEntryRules\$rules
$rules
Definition:
ComponentEntryRules.php:17
ILIAS\UI\Implementation\Crawler\Entry\ComponentEntryRules\__construct
__construct($rules=array())
ComponentEntryDescription constructor.
Definition:
ComponentEntryRules.php:32
ILIAS\UI\Implementation\Crawler\Entry\ComponentEntryRules\getRules
getRules()
Definition:
ComponentEntryRules.php:74
ILIAS\UI\Implementation\Crawler\Entry\ComponentEntryRules\jsonSerialize
jsonSerialize()
Definition:
ComponentEntryRules.php:82
ILIAS\UI\Implementation\Crawler\Entry\ComponentEntryRules\setRules
setRules($rules)
Definition:
ComponentEntryRules.php:53
ILIAS\UI\Implementation\Crawler\Entry\ComponentEntryRules\withRules
withRules($rules=array())
Definition:
ComponentEntryRules.php:42
JsonSerializable
ILIAS\UI\Implementation\Crawler\Entry
Definition:
AbstractEntryPart.php:4
$rule
$rule
Definition:
showstats.php:43
src
UI
Implementation
Crawler
Entry
ComponentEntryRules.php
Generated on Tue Sep 30 2025 19:01:23 for ILIAS by
1.9.4 (using
Doxyfile
)