ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
Fixture.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 2016 Timon Amstutz <timon.amstutz@ilub.unibe.ch> Extended GPL, see docs/LICENSE */
3 
5 {
6  public $properEntryYamlArray = array(
7  array(
8  "description" => array(
9  "purpose" => "Description of Purpose",
10  "composition" => "Description of Composition with line break",
11  "effect" => "Effect Description on one line",
12  "rivals" => array(
13  "icon" => "Icon Description"
14  )
15 
16  ),
17  "background" => "\"Some wild background with quotes\" and links <a href='http:test'>test</a>",
18  "featurewiki" => array("http://www.ilias.de/docu/goto_docu_wiki_wpage_3208_1357.html"),
19  "context" => array("Some Context"),
20  "rules" => array(
21  "usage" => array(
22  1 => "Usage Rule 1",
23  2 => "Usage Rule 2",
24  3 => "Usage Rule 3 multi line"
25  ),
26  "style" => array(
27  4 => "Style Rule"
28  )
29  ),
30  "namespace" => "\\ILIAS\\UI\\Crawler\\Fixture\\ProperEntry",
31  "function_name" => "properEntry"
32 
33  )
34  );
35 
37 "description:
38  purpose: >
39  Description of Purpose
40  composition: >
41  Description of Composition
42  with line break
43  effect: Effect Description on one line
44  rivals:
45  icon: >
46  Icon Description
47 background: >
48  \"Some wild background with quotes\"
49  and links <a href='http:test'>test</a>
50 context:
51  - Some Context
52 featurewiki:
53  - http://www.ilias.de/docu/goto_docu_wiki_wpage_3208_1357.html
54 rules:
55  usage:
56  1: Usage Rule 1
57  2: Usage Rule 2
58  3: >
59  Usage Rule 3 multi line
60  style:
61  4: Style Rule
62 namespace: \\ILIAS\\UI\\Crawler\\Fixture\\ProperEntry
63 function_name: properEntry";
64 }