Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
eav_expected_meta_output_w_default.php
Go to the documentation of this file.
1 <?php
7 return [
8  "product-details" => [
9  "arguments" => [
10  "data" => [
11  "config" => [
12  "dataScope" => "data.product",
13  ],
14  ],
15  ],
16  "children" => [
17  "container_status" => [
18  "children" => [
19  "status" => [
20  "arguments" => [
21  "data" => [
22  "config" => [
23  "dataType" => "select",
24  "formElement" => "select",
25  "options" => [
26  [
27  "value" => 1,
28  "label" => "Enabled"
29  ],
30  [
31  "value" => 2,
32  "label" => "Disabled"
33  ]
34  ],
35  "visible" => "1",
36  "required" => "0",
37  "label" => "Enable Product",
38  "default" => "1",
39  "source" => "product-details",
40  "scopeLabel" => "[WEBSITE]",
41  "globalScope" => false,
42  "code" => "status",
43  "sortOrder" => "__placeholder__",
44  "componentType" => "field"
45  ],
46  ],
47  ],
48  ],
49  ],
50  ],
51  "container_name" => [
52  "children" => [
53  "name" => [
54  "arguments" => [
55  "data" => [
56  "config" => [
57  "dataType" => "text",
58  "formElement" => "input",
59  "visible" => "1",
60  "required" => "1",
61  "label" => "Product Name",
62  "source" => "product-details",
63  "scopeLabel" => "[STORE VIEW]",
64  "globalScope" => false,
65  "code" => "name",
66  "sortOrder" => "__placeholder__",
67  "componentType" => "field",
68  "validation" => [
69  "required-entry" => true
70  ],
71  ],
72  ],
73  ],
74  ],
75  ],
76  ],
77  "container_sku" => [
78  "children" => [
79  "sku" => [
80  "arguments" => [
81  "data" => [
82  "config" => [
83  "dataType" => "text",
84  "formElement" => "input",
85  "visible" => "1",
86  "required" => "1",
87  "label" => "SKU",
88  "source" => "product-details",
89  "scopeLabel" => "[GLOBAL]",
90  "globalScope" => true,
91  "code" => "sku",
92  "sortOrder" => "__placeholder__",
93  "componentType" => "field",
94  "validation" => [
95  "required-entry" => true
96  ],
97  ],
98  ],
99  ],
100  ],
101  ],
102  ],
103  ],
104  ],
105 ];