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