ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
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
62background: >
63 \"Some wild background with quotes\"
64 and links <a href='http:test'>test</a>
65context:
66 - Some Context
67featurewiki:
68 - http://www.ilias.de/docu/goto_docu_wiki_wpage_3208_1357.html
69rules:
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
77namespace: \\ILIAS\\UI\\Crawler\\Fixture\\ProperEntry
78function_name: properEntry";
79}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Fixture.php:20
array $properEntryYamlArray
Definition: Fixture.php:21
string $properEntryYamlString
Definition: Fixture.php:51