ILIAS  release_8 Revision v8.23
Fixture.php
Go to the documentation of this file.
1 <?php
19 {
20  public array $properEntryYamlArray = array(
21  array(
22  "description" => array(
23  "purpose" => "Description of Purpose",
24  "composition" => "Description of Composition with line break",
25  "effect" => "Effect Description on one line",
26  "rivals" => array(
27  "icon" => "Icon Description"
28  )
29 
30  ),
31  "background" => "\"Some wild background with quotes\" and links <a href='http:test'>test</a>",
32  "featurewiki" => array("http://www.ilias.de/docu/goto_docu_wiki_wpage_3208_1357.html"),
33  "context" => array("Some Context"),
34  "rules" => array(
35  "usage" => array(
36  1 => "Usage Rule 1",
37  2 => "Usage Rule 2",
38  3 => "Usage Rule 3 multi line"
39  ),
40  "style" => array(
41  4 => "Style Rule"
42  )
43  ),
44  "namespace" => "\\ILIAS\\UI\\Crawler\\Fixture\\ProperEntry",
45  "function_name" => "properEntry"
46 
47  )
48  );
49 
50  public string $properEntryYamlString =
51 "description:
52  purpose: >
53  Description of Purpose
54  composition: >
55  Description of Composition
56  with line break
57  effect: Effect Description on one line
58  rivals:
59  icon: >
60  Icon Description
61 background: >
62  \"Some wild background with quotes\"
63  and links <a href='http:test'>test</a>
64 context:
65  - Some Context
66 featurewiki:
67  - http://www.ilias.de/docu/goto_docu_wiki_wpage_3208_1357.html
68 rules:
69  usage:
70  1: Usage Rule 1
71  2: Usage Rule 2
72  3: >
73  Usage Rule 3 multi line
74  style:
75  4: Style Rule
76 namespace: \\ILIAS\\UI\\Crawler\\Fixture\\ProperEntry
77 function_name: properEntry";
78 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Fixture.php:18
array $properEntryYamlArray
Definition: Fixture.php:20
string $properEntryYamlString
Definition: Fixture.php:50