Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
config_section.php
Go to the documentation of this file.
1 <?php
7 return [
8  [
9  'section' => 'dev',
10  'groups' => [
11  'log' => [
12  'fields' => [
13  'active' => ['value' => '1'],
14  'file' => ['value' => 'fileName.log'],
15  'exception_file' => ['value' => 'exceptionFileName.log'],
16  ],
17  ],
18  'debug' => [
19  'fields' => [
20  'template_hints_storefront' => ['value' => '1'],
21  'template_hints_blocks' => ['value' => '0'],
22  ],
23  ],
24  ],
25  'expected' => [
26  'dev/log' => [
27  'dev/log/active' => '1',
28  'dev/log/file' => 'fileName.log',
29  'dev/log/exception_file' => 'exceptionFileName.log',
30  ],
31  'dev/debug' => [
32  'dev/debug/template_hints_storefront' => '1',
33  'dev/debug/template_hints_blocks' => '0',
34  ],
35  ],
36  ]
37 ];