Conditions | 1 |
Paths | 1 |
Total Lines | 41 |
Code Lines | 26 |
Lines | 41 |
Ratio | 100 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | protected function getMinimalConfiguration() |
||
24 | { |
||
25 | return array( |
||
26 | 'system' => array( |
||
27 | 'default' => array( |
||
28 | 'action_config' => array( |
||
29 | 'email' => array( |
||
30 | 'templates' => array( |
||
31 | 'default' => 'some_template', |
||
32 | 'content_types' => array( |
||
33 | 'content_type1' => 'content_type1_template', |
||
34 | 'content_type2' => 'content_type2_template', |
||
35 | ), |
||
36 | ), |
||
37 | 'default_variables' => array( |
||
38 | 'sender' => 'sender', |
||
39 | 'recipient' => 'recipient', |
||
40 | 'subject' => 'subject', |
||
41 | ), |
||
42 | ), |
||
43 | ), |
||
44 | 'actions' => array( |
||
45 | 'default' => array( |
||
46 | 'action1', |
||
47 | 'action2', |
||
48 | ), |
||
49 | 'content_types' => array( |
||
50 | 'content_type1' => array( |
||
51 | 'action3', |
||
52 | 'action4', |
||
53 | ), |
||
54 | 'content_type2' => array( |
||
55 | 'action5', |
||
56 | 'action6', |
||
57 | ), |
||
58 | ), |
||
59 | ), |
||
60 | ), |
||
61 | ), |
||
62 | ); |
||
63 | } |
||
64 | } |
||
65 |