Merge pull request #2288 from eileenmcnaughton/CRM-14043
[civicrm-core.git] / tests / phpunit / api / v3 / settings / test.setting.php
1 <?php
2 return array(
3 'test_key' => array(
4 'group_name' => 'Test Settings',
5 'group' => 'test',
6 'name' => 'test_key',
7 'type' => 'String',
8 'add' => '4.4',
9 'is_domain' => 1,
10 'is_contact' => 0,
11 'description' => 'Test Key',
12 'title' => 'Test Key',
13 'help_text' => '',
14 'html_type' => 'Text',
15 'quick_form_type' => 'Element',
16 ),
17 'test_secret' => array(
18 'group_name' => 'Test Settings',
19 'group' => 'test',
20 'name' => 'test_secret',
21 'type' => 'String',
22 'add' => '4.4',
23 'is_domain' => 1,
24 'is_contact' => 0,
25 'description' => 'Test Secret',
26 'title' => 'Test Secret',
27 'help_text' => '',
28 'html_type' => 'Text',
29 'quick_form_type' => 'Element',
30 ),
31 'test_public_certificate' => array(
32 'group_name' => 'Test Settings',
33 'group' => 'test',
34 'name' => 'test_public_certificate',
35 'type' => 'Text',
36 'add' => '4.4',
37 'is_domain' => 1,
38 'is_contact' => 0,
39 'title' => 'Test Public Certificate Path',
40 'description' => 'Enter the full path to your public Certificate',
41 'help_text' => '',
42 'html_type' => 'Text',
43 'html_attributes' => array(
44 'size' => 50,
45 ),
46 'quick_form_type' => 'Element',
47 ),
48 'test_private_key' => array(
49 'group_name' => 'Test Settings',
50 'group' => 'test',
51 'name' => 'test_private_key',
52 'type' => 'String',
53 'add' => '4.4',
54 'is_domain' => 1,
55 'is_contact' => 0,
56 'title' => 'Test Private Key Path',
57 'description' => 'Enter the full path to your private Key',
58 'help_text' => '',
59 'html_type' => 'Text',
60 'quick_form_type' => 'Element',
61 ),
62 );