-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathStepConfig.php
More file actions
45 lines (40 loc) · 1.51 KB
/
Copy pathStepConfig.php
File metadata and controls
45 lines (40 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
declare(strict_types=1);
/**
* This source file is available under the terms of the
* Pimcore Open Core License (POCL)
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
* @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com)
* @license Pimcore Open Core License (POCL)
*/
namespace Pimcore\Bundle\StudioBackendBundle\ExecutionEngine\Util;
use Pimcore\Bundle\StudioBackendBundle\Util\Trait\EnumToValueArrayTrait;
enum StepConfig: string
{
use EnumToValueArrayTrait;
case ID = 'id';
case CUSTOM_REPORT_CONFIG = 'custom_report_config';
case CUSTOM_REPORT_TO_EXPORT = 'custom_report_to_export';
case ELEMENT_CLASS_ID = 'element_class_id';
case ELEMENT_TO_EXPORT = 'element_to_export';
case ELEMENT_TYPE = 'element_type';
case FOLDER_TO_EXPORT = 'folder_to_export';
case GRID_EXPORT_DATA = 'grid_export_data';
case GRID_EXPORT_DATA_INFO = 'grid_export_data_info';
case CONFIG_CONFIGURATION = 'config';
case CONFIG_COLUMNS = 'columns';
case CONFIG_FILTERS = 'filters';
case SETTINGS_DELIMITER = 'delimiter';
case SETTINGS_HEADER = 'header';
case SETTINGS_SHEET_NAME = 'sheetName';
case SETTINGS_HEADER_NO_HEADER = 'no_header';
case SETTINGS_HEADER_TITLE = 'title';
case SETTINGS_HEADER_NAME = 'name';
case NEW_LINE = "\r\n";
case CONFIG_TYPE_ARRAY = 'array';
case CONFIG_TYPE_INT = 'int';
case CONFIG_TYPE_STRING = 'string';
case CONFIG_TYPE_BOOL = 'bool';
}