-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathStepConfig.php
More file actions
53 lines (48 loc) · 1.99 KB
/
StepConfig.php
File metadata and controls
53 lines (48 loc) · 1.99 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
46
47
48
49
50
51
52
53
<?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 ELEMENTS_TO_EXPORT = 'elements_to_export';
case ELEMENTS_TO_REWRITE_REFERENCES = 'elements_to_rewrite_references';
case ELEMENTS_TO_TAG = 'elements_to_tag';
case ELEMENT_TYPE = 'element_type';
case ELEMENT_TYPE_TO_TAG = 'element_type_to_tag';
case ELEMENT_TYPE_TO_REWRITE_REFERENCES = 'element_type_to_rewrite_references';
case EXPORT_FORMAT = 'export_format';
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_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';
case ITEMS_TO_BATCH_DELETE = 'items_to_batch_delete';
case ITEMS_TO_DELETE = 'items_to_delete';
case ELEMENT_TYPE_TO_BATCH_DELETE = 'element_type_to_batch_delete';
case ITEMS_TO_RESTORE = 'items_to_restore';
}