File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
5
5
This projects adheres to [ Semantic Versioning] ( https://semver.org/ ) and [ Keep a CHANGELOG] ( https://keepachangelog.com/ ) .
6
6
7
+ ## [ 3.1.1]
8
+
9
+ ### Added
10
+
11
+ - added ` FD_FIELD_NAMES_FULL ` constants.
12
+
7
13
## [ 3.1.0]
8
14
9
15
### Removed
@@ -330,6 +336,7 @@ This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a
330
336
331
337
- Initial production release.
332
338
339
+ [ 3.1.1 ] : https://github.com/infinum/eightshift-forms-utils/compare/3.1.0...3.1.1
333
340
[ 3.1.0 ] : https://github.com/infinum/eightshift-forms-utils/compare/3.0.18...3.1.0
334
341
[ 3.0.18 ] : https://github.com/infinum/eightshift-forms-utils/compare/3.0.17...3.0.18
335
342
[ 3.0.17 ] : https://github.com/infinum/eightshift-forms-utils/compare/3.0.16...3.0.17
Original file line number Diff line number Diff line change @@ -501,6 +501,7 @@ class UtilsConfig
501
501
public const FD_ICON = 'icon ' ;
502
502
public const FD_FIELDS = 'fields ' ;
503
503
public const FD_FIELD_NAMES = 'fieldNames ' ;
504
+ public const FD_FIELD_NAMES_FULL = 'fieldNamesFull ' ;
504
505
public const FD_STEPS_SETUP = 'stepsSetup ' ;
505
506
public const FD_RESPONSE_OUTPUT_DATA = 'responseOutputData ' ;
506
507
public const FD_PARAMS_ORIGINAL = 'paramsOriginal ' ;
Original file line number Diff line number Diff line change @@ -307,6 +307,7 @@ public static function getFormDetails(string $formId): array
307
307
UtilsConfig::FD_FIELDS => [],
308
308
UtilsConfig::FD_FIELDS_ONLY => [],
309
309
UtilsConfig::FD_FIELD_NAMES => [],
310
+ UtilsConfig::FD_FIELD_NAMES_FULL => [],
310
311
UtilsConfig::FD_STEPS_SETUP => [],
311
312
];
312
313
@@ -391,6 +392,8 @@ public static function getFormDetails(string $formId): array
391
392
continue ;
392
393
}
393
394
395
+ $ output [UtilsConfig::FD_FIELD_NAMES_FULL ][] = $ value ;
396
+
394
397
if (isset ($ ignoreBlocks [$ blockItemName ])) {
395
398
continue ;
396
399
}
You can’t perform that action at this time.
0 commit comments