-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathdg_dev_sidebar.yml
More file actions
1869 lines (1766 loc) · 116 KB
/
Copy pathdg_dev_sidebar.yml
File metadata and controls
1869 lines (1766 loc) · 116 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
title: Development guide
entries:
- product: Development
nested:
- title: Developer getting started guide
url: /docs/dg/dev/development-getting-started-guide.html
nested:
- title: Development tools
url: /docs/dg/dev/development-tools.html
nested:
- title: XDebug
url: /docs/dg/dev/set-up-spryker-locally/configure-after-installing/configure-debugging/configure-debugging.html
nested:
- title: Set up XDebug profiling
url: /docs/dg/dev/set-up-spryker-locally/configure-after-installing/configure-debugging/set-up-xdebug-profiling.html
- title: WebProfiler
nested:
- title: Web Profiler for Yves
url: /docs/dg/dev/integrate-and-configure/integrate-development-tools/integrate-web-profiler-widget-for-yves.html
- title: Web Profiler for Glue
url: /docs/dg/dev/integrate-and-configure/integrate-development-tools/integrate-web-profiler-for-glue.html
- title: Web Profiler for Backend Gateway
url: /docs/dg/dev/integrate-and-configure/integrate-development-tools/integrate-web-profiler-for-backend-gateway.html
- title: Web Profiler for Zed
url: /docs/dg/dev/integrate-and-configure/integrate-development-tools/integrate-web-profiler-for-zed.html
- title: Code Quality Tools
nested:
- title: PHPStan
url: /docs/dg/dev/sdks/sdk/development-tools/phpstan.html
- title: Code Sniffer
url: /docs/dg/dev/sdks/sdk/development-tools/code-sniffer.html
- title: Architecture Sniffer
url: /docs/dg/dev/sdks/sdk/development-tools/architecture-sniffer.html
- title: Project Architecture Sniffer
url: /docs/dg/dev/sdks/sdk/development-tools/project-architecture-sniffer.html
- title: Evaluator
url: /docs/dg/dev/guidelines/keeping-a-project-upgradable/run-the-evaluator-tool.html
- title: AI tools
nested:
- title: AI Assistant
url: /docs/dg/dev/ai/ai-assistants/ai-assistants.html
- title: Continuous Integration
url: /docs/dg/dev/ci.html
- title: Post-Installation Configuration
url: /docs/dg/dev/post-installation-configuration.html
- title: AI
nested:
- title: AI Foundation
nested:
- title: AI Foundation Overview
url: /docs/dg/dev/ai/ai-foundation/ai-foundation-module.html
- title: Structured Transfer Response
url: /docs/dg/dev/ai/ai-foundation/ai-foundation-transfer-response.html
- title: Tool call
url: /docs/dg/dev/ai/ai-foundation/ai-foundation-tool-support.html
- title: Conversation History
url: /docs/dg/dev/ai/ai-foundation/ai-foundation-conversation-history.html
- title: Workflow orchestration with state machines
url: /docs/dg/dev/ai/ai-foundation/ai-foundation-workflow-state-machine.html
- title: AI Interaction Audit Logs
url: /docs/dg/dev/ai/ai-foundation/ai-foundation-audit-logs.html
- title: AI Commerce
nested:
- title: AI Commerce overview
url: /docs/dg/dev/ai/ai-commerce/ai-commerce-overview.html
- title: Install AI Commerce
url: /docs/dg/dev/ai/ai-commerce/install-ai-commerce.html
- title: Visual Add to Cart
url: /docs/dg/dev/ai/ai-commerce/visual-add-to-cart/visual-add-to-cart.html
nested:
- title: Install Visual Add to Cart
url: /docs/dg/dev/ai/ai-commerce/visual-add-to-cart/install-visual-add-to-cart.html
- title: Back Office Assistant
url: /docs/dg/dev/ai/ai-commerce/backoffice-assistant/backoffice-assistant.html
nested:
- title: Install Back Office Assistant
url: /docs/dg/dev/ai/ai-commerce/backoffice-assistant/install-backoffice-assistant.html
- title: Search by Image
url: /docs/dg/dev/ai/ai-commerce/search-by-image/search-by-image.html
nested:
- title: Install Search by Image
url: /docs/dg/dev/ai/ai-commerce/search-by-image/install-search-by-image.html
- title: AI Dev SDK
url: /docs/dg/dev/ai/ai-dev/ai-dev.html
nested:
- title: AI Dev SDK Overview
url: /docs/dg/dev/ai/ai-dev/ai-dev-overview.html
- title: AI Dev MCP Server
url: /docs/dg/dev/ai/ai-dev/ai-dev-mcp-server.html
- title: AI Assistants
url: /docs/dg/dev/ai/ai-assistants/ai-assistants.html
nested:
- title: AI IDE Assistants
url: /docs/dg/dev/ai/ai-assistants/ai-ide-assistants.html
- title: Context7 MCP Server
url: /docs/dg/dev/ai/ai-assistants/context7-mcp-server.html
- title: Language Server for Claude Code CLI
url: /docs/dg/dev/ai/ai-assistants/lsp-for-claude.html
- title: Spryker Engineer GPT
url: /docs/dg/dev/ai/ai-assistants/spryker-engineer-gpt.html
- title: Spryker K6 Performance Assistant GPT
url: /docs/dg/dev/ai/ai-assistants/spryker-k6-performance-assistant-gpt.html
- title: Spryker DevQA Assistant GPT
url: /docs/dg/dev/ai/ai-assistants/spryker-devqa-assistant-gpt.html
- title: Spryker Cypress E2E Assistant GPT
url: /docs/dg/dev/ai/ai-assistants/spryker-cypress-e2e-assistant-gpt.html
- title: Set up locally
url: /docs/dg/dev/set-up-spryker-locally/set-up-spryker-locally.html
nested:
- title: System requirements
url: /docs/dg/dev/system-requirements/system-requirements.html
- title: "Quickstart guides: Install Spryker"
url: /docs/dg/dev/set-up-spryker-locally/quickstart-guides-install-spryker/quickstart-guides-install-spryker.html
nested:
- title: "Quickstart guide: Install Spryker on MacOS and Linux"
url: /docs/dg/dev/set-up-spryker-locally/quickstart-guides-install-spryker/quickstart-guide-install-spryker-on-macos-and-linux.html
- title: "Quickstart guide: Install Spryker on Windows"
url: /docs/dg/dev/set-up-spryker-locally/quickstart-guides-install-spryker/quickstart-guide-install-spryker-on-windows.html
- title: Install Spryker
url: /docs/dg/dev/set-up-spryker-locally/install-spryker/install-spryker.html
nested:
- title: Install Docker prerequisites
url: /docs/dg/dev/set-up-spryker-locally/install-spryker/install-docker-prerequisites/install-docker-prerequisites.html
nested:
- title: Install Docker prerequisites on MacOS
url: /docs/dg/dev/set-up-spryker-locally/install-spryker/install-docker-prerequisites/install-docker-prerequisites-on-macos.html
- title: Install Docker prerequisites on Linux
url: /docs/dg/dev/set-up-spryker-locally/install-spryker/install-docker-prerequisites/install-docker-prerequisites-on-linux.html
- title: Install Docker prerequisites on Windows with WSL2
url: /docs/dg/dev/set-up-spryker-locally/install-spryker/install-docker-prerequisites/install-docker-prerequisites-on-windows-with-wsl2.html
- title: Install Docker prerequisites on Windows with WSL1
url: /docs/dg/dev/set-up-spryker-locally/install-spryker/install-docker-prerequisites/install-docker-prerequisites-on-windows-with-wsl1.html
- title: Install
url: /docs/dg/dev/set-up-spryker-locally/install-spryker/install/choose-an-installation-mode.html
nested:
- title: Install in Development mode on MacOS and Linux
url: /docs/dg/dev/set-up-spryker-locally/install-spryker/install/install-in-development-mode-on-macos-and-linux.html
- title: Install in Development mode on Windows
url: /docs/dg/dev/set-up-spryker-locally/install-spryker/install/install-in-development-mode-on-windows.html
- title: Install in Demo mode on MacOS and Linux
url: /docs/dg/dev/set-up-spryker-locally/install-spryker/install/install-in-demo-mode-on-macos-and-linux.html
- title: Install in Demo mode on Windows
url: /docs/dg/dev/set-up-spryker-locally/install-spryker/install/install-in-demo-mode-on-windows.html
- title: Configure after installing
url: /docs/dg/dev/set-up-spryker-locally/configure-after-installing/configure-spryker-after-installing.html
nested:
- title: Set up a self-signed SSL certificate
url: /docs/dg/dev/set-up-spryker-locally/configure-after-installing/set-up-a-self-signed-ssl-certificate.html
- title: Limit the memory usage of WSL2-based projects
url: /docs/dg/dev/set-up-spryker-locally/configure-after-installing/limit-the-memory-usage-of-wsl2-based-projects.html
- title: Configure debugging
url: /docs/dg/dev/set-up-spryker-locally/configure-after-installing/configure-debugging/configure-debugging.html
nested:
- title: Set up XDebug profiling
url: /docs/dg/dev/set-up-spryker-locally/configure-after-installing/configure-debugging/set-up-xdebug-profiling.html
- title: Database access credentials
url: /docs/dg/dev/set-up-spryker-locally/database-access-credentials.html
- title: Manage dependencies with Composer
url: /docs/dg/dev/set-up-spryker-locally/manage-dependencies-with-composer.html
- title: Key-value store configuration
url: /docs/dg/dev/set-up-spryker-locally/key-value-store-configuration.html
- title: Troubleshooting installation
url: /docs/dg/dev/set-up-spryker-locally/troubleshooting-installation/troubleshooting-installation.html
nested:
- title: An error during frontend setup
url: /docs/dg/dev/set-up-spryker-locally/troubleshooting-installation/an-error-during-front-end-setup.html
- title: Demo data was imported incorrectly
url: /docs/dg/dev/set-up-spryker-locally/troubleshooting-installation/demo-data-was-imported-incorrectly.html
- title: Docker daemon is not running
url: /docs/dg/dev/set-up-spryker-locally/troubleshooting-installation/docker-daemon-is-not-running.html
- title: docker-sync cannot start
url: /docs/dg/dev/set-up-spryker-locally/troubleshooting-installation/docker-sync-cannot-start.html
- title: Error 403 No valid crumb was included in the request
url: /docs/dg/dev/set-up-spryker-locally/troubleshooting-installation/error-403-no-valid-crumb-was-included-in-the-request.html
- title: Node Sass does not yet support your current environment
url: /docs/dg/dev/set-up-spryker-locally/troubleshooting-installation/node-saas-does-not-yet-support-your-current-environment.html
- title: Setup of new indexes throws an exception
url: /docs/dg/dev/set-up-spryker-locally/troubleshooting-installation/setup-of-new-indexes-throws-an-exception.html
- title: Unable to bring up Mutagen Compose sidecar service
url: /docs/dg/dev/set-up-spryker-locally/troubleshooting-installation/unable-to-bring-up-mutagen-compose-sidecar-service.html
- title: Vendor folder synchronization error
url: /docs/dg/dev/set-up-spryker-locally/troubleshooting-installation/vendor-folder-synchronization-error.html
- title: Session locking issues
url: /docs/dg/dev/troubleshooting/troubleshooting-general-technical-issues/session-locking-issues.html
- title: Backend development
url: /docs/dg/dev/backend-development/back-end-development.html
nested:
- title: Client
url: /docs/dg/dev/backend-development/client/client.html
nested:
- title: Implement a client
url: /docs/dg/dev/backend-development/client/implement-a-client.html
- title: Use and configure Redis or Valkey as a key-value store
url: /docs/dg/dev/backend-development/client/use-and-configure-redis-or-valkey-as-a-key-value-store.html
- title: Yves
url: /docs/dg/dev/backend-development/yves/yves.html
nested:
- title: Modular frontend
url: /docs/dg/dev/backend-development/yves/modular-frontend.html
- title: Controllers and actions
url: /docs/dg/dev/backend-development/yves/controllers-and-actions.html
- title: CLI entry point for Yves
url: /docs/dg/dev/backend-development/yves/cli-entry-point-for-yves.html
- title: Add translations for Yves
url: /docs/dg/dev/backend-development/yves/adding-translations-for-yves.html
- title: URL
url: /docs/dg/dev/backend-development/yves/url.html
- title: Implement URL routing in Yves
url: /docs/dg/dev/backend-development/yves/implement-url-routing-in-yves.html
- title: Yves bootstrapping
url: /docs/dg/dev/backend-development/yves/yves-bootstrapping.html
- title: Yves routes
url: /docs/dg/dev/backend-development/yves/yves-routes.html
- title: Implementing widgets and widget plugins
url: /docs/dg/dev/backend-development/yves/implementing-widgets-and-widget-plugins.html
- title: Implementing Twig extensions
url: /docs/dg/dev/backend-development/yves/implementing-twig-extensions.html
- title: Set up custom response headers
url: /docs/dg/dev/backend-development/yves/set-up-custom-response-headers.html
- title: Zed
url: /docs/dg/dev/backend-development/zed/zed.html
nested:
- title: Business layer
url: /docs/dg/dev/backend-development/zed/business-layer/business-layer.html
nested:
- title: Facade
url: /docs/dg/dev/backend-development/zed/business-layer/facade/facade.html
nested:
- title: Facade use cases
url: /docs/dg/dev/backend-development/zed/business-layer/facade/facade-use-cases.html
- title: Design by Contract (DBC) - Facade
url: /docs/dg/dev/backend-development/zed/business-layer/facade/design-by-contract-dbc-facade.html
- title: A facade implementation
url: /docs/dg/dev/backend-development/zed/business-layer/facade/a-facade-implementation.html
- title: Business models
url: /docs/dg/dev/backend-development/zed/business-layer/business-models.html
- title: Custom exceptions
url: /docs/dg/dev/backend-development/zed/business-layer/custom-exceptions.html
- title: Communication layer
url: /docs/dg/dev/backend-development/zed/communication-layer/communication-layer.html
nested:
- title: Add indexes to foreign key columns - index generator
url: /docs/dg/dev/backend-development/zed/communication-layer/add-indexes-to-foreign-key-columns-index-generator.html
- title: Persistence layer
url: /docs/dg/dev/backend-development/zed/persistence-layer/persistence-layer.html
nested:
- title: Entity
url: /docs/dg/dev/backend-development/zed/persistence-layer/entity.html
- title: Entity manager
url: /docs/dg/dev/backend-development/zed/persistence-layer/entity-manager.html
- title: Repository
url: /docs/dg/dev/backend-development/zed/persistence-layer/repository.html
- title: Database schema definition
url: /docs/dg/dev/backend-development/zed/persistence-layer/database-schema-definition.html
- title: Database overview
url: /docs/dg/dev/backend-development/zed/persistence-layer/database-overview.html
- title: Query objects - creation and usage
url: /docs/dg/dev/backend-development/zed/persistence-layer/query-objects-creation-and-usage.html
- title: Query container
url: /docs/dg/dev/backend-development/zed/persistence-layer/query-container/query-container.html
nested:
- title: Using a query container
url: /docs/dg/dev/backend-development/zed/persistence-layer/query-container/using-a-query-container.html
- title: Implement a query container
url: /docs/dg/dev/backend-development/zed/persistence-layer/query-container/implement-a-query-container.html
- title: Add navigation in the Back Office
url: /docs/dg/dev/backend-development/zed/add-navigation-in-the-back-office.html
- title: Create table views
url: /docs/dg/dev/backend-development/zed/create-table-views.html
- title: Cronjobs
url: /docs/dg/dev/backend-development/cronjobs/cronjobs.html
nested:
- title: Add and configure cronjobs
url: /docs/dg/dev/backend-development/cronjobs/add-and-configure-cronjobs.html
- title: Create a custom scheduler
url: /docs/dg/dev/backend-development/cronjobs/create-a-custom-scheduler.html
- title: Migrate to Jenkins
url: /docs/dg/dev/backend-development/cronjobs/migrate-to-jenkins.html
- title: Optimizing Jenkins execution
url: /docs/dg/dev/backend-development/cronjobs/optimizing-jenkins-execution.html
- title: Stable Workers
url: /docs/dg/dev/backend-development/cronjobs/stable-workers.html
- title: Multi process run
url: /docs/dg/dev/backend-development/cronjobs/multi-process-run-console.html
- title: Forms
url: /docs/dg/dev/backend-development/forms/forms.html
nested:
- title: Create forms
url: /docs/dg/dev/backend-development/forms/create-forms.html
- title: Plugins
url: /docs/dg/dev/backend-development/plugins/plugins.html
nested:
- title: Get an overview of the used plugins
url: /docs/dg/dev/backend-development/plugins/get-an-overview-of-the-used-plugins.html
- title: Session management
url: /docs/dg/dev/backend-development/session-management.html
- title: Running production
url: /docs/dg/dev/backend-development/running-production.html
- title: Console commands
url: /docs/dg/dev/backend-development/console-commands/console-commands.html
nested:
- title: Get the list of console commands and available options
url: /docs/dg/dev/backend-development/console-commands/get-the-list-of-console-commands-and-available-options.html
- title: Implement console commands
url: /docs/dg/dev/backend-development/console-commands/implement-console-commands.html
- title: Data manipulation
url: /docs/dg/dev/backend-development/data-manipulation/data-manipulation.html
nested:
- title: Data publishing
url: /docs/dg/dev/backend-development/data-manipulation/data-publishing/data-publishing.html
nested:
- title: Publish and Synchronization
url: /docs/dg/dev/backend-development/data-manipulation/data-publishing/publish-and-synchronization.html
- title: Implement Publish and Synchronization
url: /docs/dg/dev/backend-development/data-manipulation/data-publishing/implement-publish-and-synchronization.html
- title: "Publish and synchronize: Re-synchronization and re-generation"
url: /docs/dg/dev/backend-development/data-manipulation/data-publishing/publish-and-synchronize-re-synchronization-and-re-generation.html
- title: Publish and synchronize and multi-store shop systems
url: /docs/dg/dev/backend-development/data-manipulation/data-publishing/publish-and-synchronize-and-multi-store-shop-systems.html
- title: Add publish events
url: /docs/dg/dev/backend-development/data-manipulation/data-publishing/add-publish-events.html
- title: Handle data with Publish and Synchronization
url: /docs/dg/dev/backend-development/data-manipulation/data-publishing/handle-data-with-publish-and-synchronization.html
- title: Implement synchronization plugins
url: /docs/dg/dev/backend-development/data-manipulation/data-publishing/implement-synchronization-plugins.html
- title: Implement event trigger publisher plugins
url: /docs/dg/dev/backend-development/data-manipulation/data-publishing/implement-event-trigger-publisher-plugins.html
- title: Debug listeners
url: /docs/dg/dev/backend-development/data-manipulation/data-publishing/debug-listeners.html
- title: "Publish and synchronize: Advanced use cases"
url: /docs/dg/dev/backend-development/data-manipulation/data-publishing/publish-and-synchronize-advanced-use-cases.html
- title: "Publish and synchronize: Debugging"
url: /docs/dg/dev/backend-development/data-manipulation/data-publishing/publish-and-synchronize-debugging.html
- title: Configuration
nested:
- title: Chunk size configuration
url: /docs/dg/dev/backend-development/data-manipulation/data-publishing/configurartion/chunk-size-configuration.html
- title: Configure direct synchronize
url: /docs/dg/dev/backend-development/data-manipulation/data-publishing/configurartion/configure-direct-synchronize.html
- title: Mapping configuration
url: /docs/dg/dev/backend-development/data-manipulation/data-publishing/configurartion/mapping-configuration.html
- title: Configure a queue to be used by a publisher
url: /docs/dg/dev/backend-development/data-manipulation/data-publishing/configurartion/queues-in-publisher-plugins.html
- title: Specific use cases and problem solving
nested:
- title: Bypass the key-value storage
url: /docs/dg/dev/backend-development/data-manipulation/data-publishing/specific-use-cases-and-problem-solving/bypass-the-key-value-storage.html
- title: Dynamic batch size
url: /docs/dg/dev/backend-development/data-manipulation/data-publishing/specific-use-cases-and-problem-solving/dynamic-batch-size.html
- title: "Minimize memory consumption: Managing excessive Jenkins logs"
url: /docs/dg/dev/backend-development/data-manipulation/data-publishing/specific-use-cases-and-problem-solving/minimize-memory-consumption-managing-excessive-jenkins-logs.html
- title: Splitting a single event queue into multiple publish queues
url: /docs/dg/dev/backend-development/data-manipulation/data-publishing/specific-use-cases-and-problem-solving/splitting-a-single-event-queue-into-multiple-publish-queues.html
- title: "Worker configuration for optimal memory and CPU usage"
url: /docs/dg/dev/backend-development/data-manipulation/data-publishing/specific-use-cases-and-problem-solving/worker-configuration-for-optimal-memory-and-cpu-usage.html
- title: Configuration management
url: /docs/dg/dev/backend-development/data-manipulation/configuration-management.html
- title: Data interaction
url: /docs/dg/dev/backend-development/data-manipulation/data-interaction/data-interaction.html
nested:
- title: Standard filters - backend and frontend technical details
url: /docs/dg/dev/backend-development/data-manipulation/data-interaction/standard-filters-backend-and-frontend-technical-details.html
- title: Transfer data between Yves and Zed
url: /docs/dg/dev/backend-development/data-manipulation/data-interaction/transfer-data-between-yves-and-zed.html
- title: Define the module dependencies - Dependency Provider
url: /docs/dg/dev/backend-development/data-manipulation/data-interaction/define-module-dependencies-dependency-provider.html
- title: Define the module dependencies - Dependency Provider
url: /docs/dg/dev/backend-development/data-manipulation/data-interaction/replace-module-dependencies.html
- title: Create an Order Management System - Spryker Commerce OS
url: /docs/dg/dev/backend-development/data-manipulation/set-up-an-order-management-system.html
- title: Queue
url: /docs/dg/dev/backend-development/data-manipulation/queue/queue.html
nested:
- title: Queue pool
url: /docs/dg/dev/backend-development/data-manipulation/queue/queue-pool.html
- title: Integrate RabbitMQ Headers in Queue Messages
url: /docs/dg/dev/backend-development/data-manipulation/queue/integrate-rabbitmq-headers-in-queue-messages.html
- title: Data ingestion
url: /docs/dg/dev/backend-development/data-manipulation/data-ingestion/data-ingestion.html
nested:
- title: Structural preparations
url: /docs/dg/dev/backend-development/data-manipulation/data-ingestion/structural-preparations/structural-preparations.html
nested:
- title: File System
url: /docs/dg/dev/backend-development/data-manipulation/data-ingestion/structural-preparations/file-system.html
- title: Flysystem
url: /docs/dg/dev/backend-development/data-manipulation/data-ingestion/structural-preparations/flysystem.html
- title: Extend the database schema
url: /docs/dg/dev/backend-development/data-manipulation/data-ingestion/structural-preparations/extend-the-database-schema.html
- title: Create, use, and extend the transfer objects
url: /docs/dg/dev/backend-development/data-manipulation/data-ingestion/structural-preparations/create-use-and-extend-the-transfer-objects.html
- title: Adding UUID to the DB model
url: /docs/dg/dev/backend-development/data-manipulation/data-ingestion/structural-preparations/adding-uuid-to-db-model.html
- title: Spryker LINK Middleware
url: /docs/dg/dev/backend-development/data-manipulation/data-ingestion/spryker-link-middleware.html
- title: Event
url: /docs/dg/dev/backend-development/data-manipulation/event/event.html
nested:
- title: Configure event queues
url: /docs/dg/dev/backend-development/data-manipulation/event/configure-event-queues.html
- title: Listen to events
url: /docs/dg/dev/backend-development/data-manipulation/event/listen-to-events.html
- title: Add events
url: /docs/dg/dev/backend-development/data-manipulation/event/add-events.html
- title: Extend Spryker
url: /docs/dg/dev/backend-development/extend-spryker/extend-spryker.html
nested:
- title: Development strategies
url: /docs/dg/dev/backend-development/extend-spryker/development-strategies.html
nested:
- title: Project modules
nested:
- title: Create modules
url: /docs/dg/dev/backend-development/extend-spryker/create-modules.html
- title: Spryker OS module customization
url: /docs/dg/dev/backend-development/extend-spryker/spryker-os-module-customisation/spryker-os-module-customisation.html
nested:
- title: Extend a core module that is used by another
url: /docs/dg/dev/backend-development/extend-spryker/spryker-os-module-customisation/extend-a-core-module-that-is-used-by-another-module.html
- title: Extend the core
url: /docs/dg/dev/backend-development/extend-spryker/spryker-os-module-customisation/extend-the-core.html
- title: Extend the Spryker Core functionality
url: /docs/dg/dev/backend-development/extend-spryker/spryker-os-module-customisation/extend-the-spryker-core-functionality.html
- title: Install module structure and configuration
url: /docs/dg/dev/backend-development/extend-spryker/spryker-os-module-customisation/install-module-structure-and-configuration.html
- title: Audit logs
url: /docs/dg/dev/backend-development/audit-logs/audit-logs.html
nested:
- title: Add audit log types
url: /docs/dg/dev/backend-development/audit-logs/add-audit-log-types.html
- title: Extend the audit log structure
url: /docs/dg/dev/backend-development/audit-logs/extend-the-audit-log-structure.html
- title: Zed UI tables
url: /docs/dg/dev/backend-development/zed-ui-tables/zed-ui-tables.html
nested:
- title: Create and configure Zed tables
url: /docs/dg/dev/backend-development/zed-ui-tables/create-and-configure-zed-tables.html
- title: Add buttons to Zed tables
url: /docs/dg/dev/backend-development/zed-ui-tables/adding-buttons-to-zed-tables.html
- title: Messages and errors
url: /docs/dg/dev/backend-development/messages-and-errors/messages-and-errors.html
nested:
- title: Showing messages in the Back Office
url: /docs/dg/dev/backend-development/messages-and-errors/show-messages-in-the-back-office.html
- title: Registering a new service
url: /docs/dg/dev/backend-development/messages-and-errors/registering-a-new-service.html
- title: Handling internal server messages
url: /docs/dg/dev/backend-development/messages-and-errors/handling-internal-server-messages.html
- title: Handling errors with ErrorHandler
url: /docs/dg/dev/backend-development/messages-and-errors/handling-errors-with-errorhandler.html
- title: Factory
url: /docs/dg/dev/backend-development/factory/factory.html
nested:
- title: "Inject dependencies within factories: Container globals"
url: /docs/dg/dev/backend-development/factory/inject-dependencies-within-factories-container-globals.html
- title: Composable UI in Back Office
url: /docs/dg/dev/backend-development/composable-ui/composable-ui.html
nested:
- title: Install Composable UI
url: /docs/dg/dev/backend-development/composable-ui/install-composable-ui.html
- title: Create a Composable UI module
url: /docs/dg/dev/backend-development/composable-ui/create-a-composable-ui-module.html
- title: Entity configuration reference
url: /docs/dg/dev/backend-development/composable-ui/entity-configuration-reference.html
- title: Composable UI best practices
url: /docs/dg/dev/backend-development/composable-ui/composable-ui-best-practices.html
- title: Composable UI troubleshooting
url: /docs/dg/dev/backend-development/composable-ui/composable-ui-troubleshooting.html
- title: Extend Composable UI with custom Angular modules
url: /docs/dg/dev/backend-development/composable-ui/extend-composable-ui-with-custom-angular-modules.html
- title: Configuration Management
url: /docs/dg/dev/backend-development/configuration-management.html
nested:
- title: Adding Custom Scopes
url: /docs/dg/dev/backend-development/configuration-management/custom-scopes.html
- title: Frontend development
url: /docs/dg/dev/frontend-development/frontend-development.html
nested:
- title: Zed
url: /docs/dg/dev/frontend-development/zed/zed-frontend.html
nested:
- title: Custom twig functions for Zed
url: /docs/dg/dev/frontend-development/zed/custom-twig-functions-for-zed.html
- title: Overriding Webpack, JS, SCSS for ZED on project level
url: /docs/dg/dev/frontend-development/zed/overriding-webpack-js-scss-for-zed-on-the-project-level.html
- title: Oryx for Zed
url: /docs/dg/dev/frontend-development/zed/oryx-for-zed.html
- title: Yves
url: /docs/dg/dev/frontend-development/yves/yves-frontend.html
nested:
- title: Yves multi-themes
url: /docs/dg/dev/frontend-development/yves/yves-multi-themes.html
- title: Atomic Frontend
url: /docs/dg/dev/frontend-development/yves/atomic-frontend/atomic-frontend.html
nested:
- title: Integrating JQuery into Atomic Frontend
url: /docs/dg/dev/frontend-development/yves/atomic-frontend/integrate-jquery-into-atomic-frontend.html
- title: Customization example - Suite Product Details page
url: /docs/dg/dev/frontend-development/yves/atomic-frontend/frontend-customization-example-suite-product-details-page.html
- title: Customization example - B2B Product Details page
url: /docs/dg/dev/frontend-development/yves/atomic-frontend/frontend-customization-example-b2b-product-details-page.html
- title: Integrating React into Atomic Frontend
url: /docs/dg/dev/frontend-development/yves/atomic-frontend/integrate-react-into-atomic-frontend.html
- title: Managing the Components
nested:
- title: Creating a component
url: /docs/dg/dev/frontend-development/yves/atomic-frontend/managing-components/creating-components.html
- title: Overriding a component
url: /docs/dg/dev/frontend-development/yves/atomic-frontend/managing-components/overriding-components.html
- title: Extending a component
url: /docs/dg/dev/frontend-development/yves/atomic-frontend/managing-components/extending-components.html
- title: Using a component
url: /docs/dg/dev/frontend-development/yves/atomic-frontend/managing-components/using-components.html
- title: Customization example - B2C Product Details page
url: /docs/dg/dev/frontend-development/yves/atomic-frontend/frontend-customization-example-b2c-product-details-page.html
- title: Atomic Frontend
url: /docs/dg/dev/frontend-development/yves/atomic-frontend/atomic-frontend.html
- title: Customizing Spryker frontend
url: /docs/dg/dev/frontend-development/yves/atomic-frontend/customizing-spryker-frontend.html
- title: Frontend assets building and loading
url: /docs/dg/dev/frontend-development/yves/frontend-assets-building-and-loading.html
- title: Adding and using external libraries in Yves
url: /docs/dg/dev/frontend-development/yves/adding-and-using-external-libraries-in-yves.html
- title: Frontend builder for Yves
url: /docs/dg/dev/frontend-development/yves/frontend-builder-for-yves.html
- title: Custom twig functions for Yves
url: /docs/dg/dev/frontend-development/yves/custom-twig-functions-for-yves.html
- title: Multi-theme
url: /docs/dg/dev/frontend-development/yves/multi-theme.html
- title: Image optimization usage
url: /docs/dg/dev/frontend-development/yves/implement-image-optimization.html
- title: Oryx
url: /docs/dg/dev/frontend-development/oryx/oryx.html
nested:
- title: Getting started
nested:
- title: Set up
url: /docs/dg/dev/frontend-development/oryx/getting-started/set-up-oryx.html
- title: Technology
url: /docs/dg/dev/frontend-development/oryx/getting-started/oryx-technology.html
- title: Boilerplate
url: /docs/dg/dev/frontend-development/oryx/getting-started/oryx-boilerplate.html
- title: Packages
url: /docs/dg/dev/frontend-development/oryx/getting-started/oryx-packages.html
- title: Versioning
url: /docs/dg/dev/frontend-development/oryx/getting-started/oryx-versioning.html
- title: Supported browsers
url: /docs/dg/dev/frontend-development/oryx/getting-started/oryx-supported-browsers.html
- title: Building applications
nested:
- title: Presets
url: /docs/dg/dev/frontend-development/oryx/building-applications/oryx-presets.html
- title: Feature sets
url: /docs/dg/dev/frontend-development/oryx/building-applications/oryx-feature-sets.html
- title: Application orchestration
url: /docs/dg/dev/frontend-development/oryx/building-applications/oryx-application-orchestration/oryx-application-orchestration.html
nested:
- title: Application
url: /docs/dg/dev/frontend-development/oryx/building-applications/oryx-application-orchestration/oryx-application.html
- title: Application environment
url: /docs/dg/dev/frontend-development/oryx/building-applications/oryx-application-orchestration/oryx-application-environment.html
- title: Application feature
url: /docs/dg/dev/frontend-development/oryx/building-applications/oryx-application-orchestration/oryx-application-feature.html
- title: Application plugins
url: /docs/dg/dev/frontend-development/oryx/building-applications/oryx-application-orchestration/oryx-application-plugins.html
- title: Styling
nested:
- title: Color system
url: /docs/dg/dev/frontend-development/oryx/building-applications/styling/oryx-color-system.html
- title: Design tokens
url: /docs/dg/dev/frontend-development/oryx/building-applications/styling/oryx-design-tokens.html
- title: Icon system
url: /docs/dg/dev/frontend-development/oryx/building-applications/styling/oryx-icon-system.html
- title: Typography
url: /docs/dg/dev/frontend-development/oryx/building-applications/styling/oryx-typography.html
- title: Responsive Design
url: /docs/dg/dev/frontend-development/oryx/building-applications/styling/oryx-responsive-design.html
- title: Building pages
nested:
- title: "Pages"
url: /docs/dg/dev/frontend-development/oryx/building-pages/oryx-pages.html
- title: "Compositions"
url: /docs/dg/dev/frontend-development/oryx/building-pages/oryx-compositions.html
- title: Routing
url: /docs/dg/dev/frontend-development/oryx/building-pages/oryx-routing.html
- title: Building components
url: /docs/dg/dev/frontend-development/oryx/building-components/oryx-building-components.html
nested:
- title: Component types
url: /docs/dg/dev/frontend-development/oryx/building-components/oryx-component-types.html
- title: Implementing components
url: /docs/dg/dev/frontend-development/oryx/building-components/oryx-implementing-components.html
- title: Providing component definitions
url: /docs/dg/dev/frontend-development/oryx/building-components/oryx-providing-component-definitions.html
- title: Managing components options
url: /docs/dg/dev/frontend-development/oryx/building-components/oryx-managing-component-options.html
- title: Integrating components
url: /docs/dg/dev/frontend-development/oryx/building-components/oryx-integrating-components.html
- title: Architecture
nested:
- title: Dependency injection
url: /docs/dg/dev/frontend-development/oryx/architecture/dependency-injection/dependency-injection.html
nested:
- title: Oryx service layer
url: /docs/dg/dev/frontend-development/oryx/architecture/dependency-injection/oryx-service-layer.html
- title: Using services
url: /docs/dg/dev/frontend-development/oryx/architecture/dependency-injection/dependency-injection-using-services.html
- title: Defining services
url: /docs/dg/dev/frontend-development/oryx/architecture/dependency-injection/dependency-injection-defining-services.html
- title: Providing services
url: /docs/dg/dev/frontend-development/oryx/architecture/dependency-injection/dependency-injection-providing-services.html
- title: Advanced strategies
url: /docs/dg/dev/frontend-development/oryx/architecture/dependency-injection/dependency-injection-advanced-strategies.html
- title: Reactivity
url: /docs/dg/dev/frontend-development/oryx/architecture/reactivity/reactivity.html
nested:
- title: Key concepts
url: /docs/dg/dev/frontend-development/oryx/architecture/reactivity/key-concepts-of-reactivity.html
- title: Reactive components
url: /docs/dg/dev/frontend-development/oryx/architecture/reactivity/reactive-components.html
- title: Integration of backend APIs
url: /docs/dg/dev/frontend-development/oryx/architecture/reactivity/oryx-integration-of-backend-apis.html
- title: Signals
url: /docs/dg/dev/frontend-development/oryx/architecture/reactivity/signals.html
- title: Server-side rendering
url: /docs/dg/dev/frontend-development/oryx/architecture/oryx-server-side-rendering.html
- title: Internationalization
nested:
- title: Localization
url: /docs/dg/dev/frontend-development/oryx/internationalization/oryx-localization.html
- title: Directionality
url: /docs/dg/dev/frontend-development/oryx/internationalization/oryx-directionality.html
- title: Contribute to Oryx
url: /docs/dg/dev/frontend-development/oryx/contribute-to-oryx.html
- title: Marketplace
url: /docs/dg/dev/frontend-development/marketplace/marketplace-frontend.html
nested:
- title: Extending the Merchant Portal frontend
url: /docs/dg/dev/frontend-development/marketplace/extending-the-merchant-portal-frontend.html
- title: "Table design"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-design.html
nested:
- title: "Table Column Types"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-column-type-extension/table-column-type-extension.html
nested:
- title: "Autocomplete"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-column-type-extension/table-column-type-autocomplete.html
- title: "Button Action"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-column-type-extension/table-column-type-button-action.html
- title: "Chip"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-column-type-extension/table-column-type-chip.html
- title: "Date"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-column-type-extension/table-column-type-date.html
- title: "Dynamic"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-column-type-extension/table-column-type-dynamic.html
- title: "Image"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-column-type-extension/table-column-type-image.html
- title: "Input"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-column-type-extension/table-column-type-input.html
- title: "List"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-column-type-extension/table-column-type-list.html
- title: "Select"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-column-type-extension/table-column-type-select.html
- title: "Text"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-column-type-extension/table-column-type-text.html
- title: "Table Features"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-feature-extension/table-feature-extension.html
nested:
- title: "Batch Actions"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-feature-extension/table-feature-batch-actions.html
- title: "Editable"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-feature-extension/table-feature-editable.html
- title: "Pagination"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-feature-extension/table-feature-pagination.html
- title: "Row Actions"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-feature-extension/table-feature-row-actions.html
- title: "Search"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-feature-extension/table-feature-search.html
- title: "Selectable"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-feature-extension/table-feature-selectable.html
- title: "Settings"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-feature-extension/table-feature-settings.html
- title: "Sync State"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-feature-extension/table-feature-sync-state.html
- title: "Title"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-feature-extension/table-feature-title.html
- title: "Total"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-feature-extension/table-feature-total.html
- title: "Table Filters"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-filter-extension/table-filter-extension.html
nested:
- title: "Date Range"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-filter-extension/table-filter-date-range.html
- title: "Select"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-filter-extension/table-filter-select.html
- title: "Tree Select"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-filter-extension/table-filter-tree-select.html
- title: "Table Configuration"
url: /docs/dg/dev/frontend-development/marketplace/table-design/table-configuration.html
- title: "UI components library"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/ui-components-library.html
nested:
- title: "Actions"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/actions/ui-components-library-actions.html
nested:
- title: "Close Drawer"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/actions/actions-close-drawer.html
- title: "Confirmation"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/actions/actions-confirmation.html
- title: "Drawer"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/actions/actions-drawer.html
- title: "HTTP"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/actions/actions-http.html
- title: "Notification"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/actions/actions-notification.html
- title: "Redirect"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/actions/actions-redirect.html
- title: "Refresh Drawer"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/actions/actions-refresh-drawer.html
- title: "Refresh Parent Table"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/actions/actions-refresh-parent-table.html
- title: "Refresh Table"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/actions/actions-refresh-table.html
- title: "Cache"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/cache/ui-components-library-cache-service.html
nested:
- title: "Static"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/cache/ui-components-library-cache-service-cache-strategy-static-service.html
- title: "Data Transformers"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/data-transformers/data-transformers.html
nested:
- title: "Collate"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/data-transformers/data-transformer-collate/data-transformer-collate.html
nested:
- title: "Data Configurators"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/data-transformers/data-transformer-collate/collate-data-transformer-data-configurators/collate-data-transformer-data-configurators.html
nested:
- title: "Table"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/data-transformers/data-transformer-collate/collate-data-transformer-data-configurators/collate-data-transformer-table-configurator.html
- title: "Filters"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/data-transformers/data-transformer-collate/collate-data-transformer-filters/collate-data-transformer-filters.html
nested:
- title: "Equals"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/data-transformers/data-transformer-collate/collate-data-transformer-filters/data-transformer-collate-filter-equals.html
- title: "Range"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/data-transformers/data-transformer-collate/collate-data-transformer-filters/data-transformer-collate-filter-range.html
- title: "Text"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/data-transformers/data-transformer-collate/collate-data-transformer-filters/data-transformer-collate-filter-text.html
- title: "Array-map"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/data-transformers/data-transformer-array-map.html
- title: "Chain"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/data-transformers/data-transformer-chain.html
- title: "Date-parse"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/data-transformers/data-transformer-date-parse.html
- title: "Date-serialize"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/data-transformers/data-transformer-date-serialize.html
- title: "Lens"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/data-transformers/data-transformer-lens.html
- title: "Object-map"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/data-transformers/data-transformer-object-map.html
- title: "Pluck"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/data-transformers/data-transformer-pluck.html
- title: "Datasources"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/datasources/datasources.html
nested:
- title: "Trigger"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/datasources/datasource-trigger/datasource-trigger.html
nested:
- title: "Change"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/datasources/datasource-trigger/datasource-trigger-change.html
- title: "Input"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/datasources/datasource-trigger/datasource-trigger-input.html
- title: "Dependable"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/datasources/datasource-dependable.html
- title: "HTTP"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/datasources/datasource-http.html
- title: "Inline"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/datasources/datasource-inline.html
- title: "Inline Table"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/datasources/datasource-inline-table.html
- title: "Persistence"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/persistence/persistence.html
nested:
- title: "In Memory"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/persistence/in-memory-persistence-strategy.html
- title: "Local Storage"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/persistence/local-storage-persistence-strategy.html
- title: "Url"
url: /docs/dg/dev/frontend-development/marketplace/ui-components-library/persistence/url-persistence-strategy.html
- title: "Angular Components"
url: /docs/dg/dev/frontend-development/marketplace/angular-components.html
- title: "Angular Services"
url: /docs/dg/dev/frontend-development/marketplace/angular-services.html
- title: "Building the Merchant Portal frontend"
url: /docs/dg/dev/frontend-development/marketplace/building-the-merchant-portal-frontend.html
- title: "Project structure"
url: /docs/dg/dev/frontend-development/marketplace/marketplace-frontend-project-and-module-structure.html
- title: "Set up the Merchant Portal"
url: /docs/dg/dev/frontend-development/marketplace/set-up-the-merchant-portal.html
- title: "Web components"
url: /docs/dg/dev/frontend-development/marketplace/web-components.html
- title: Create Angular modules
url: /docs/dg/dev/frontend-development/create-angular-modules.html
- title: Define Twig tag
url: /docs/dg/dev/frontend-development/define-twig-tag.html
- title: Notifying about unsupported browsers
url: /docs/dg/dev/frontend-development/notifying-about-unsupported-browsers.html
- title: Upgrade and migrate
url: /docs/dg/dev/upgrade-and-migrate/upgrade-and-migrate.html
nested:
- title: Upgrade to Symfony Dependency Injection
url: /docs/dg/dev/upgrade-and-migrate/upgrade-to-symfony-dependency-injection.html
- title: How to integrate API Platform
url: /docs/dg/dev/upgrade-and-migrate/integrate-api-platform.html
- title: How to integrate API Platform Security
url: /docs/dg/dev/upgrade-and-migrate/integrate-api-platform-security.html
- title: How to migrate to API Platform
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform.html
- title: Migrate Glue REST API to API Platform
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-glue-api-to-api-platform.html
nested:
- title: Migrate AgentAuthRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-agentauthrestapi.html
- title: Migrate AlternativeProductsRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-alternativeproductsrestapi.html
- title: Migrate AuthRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-authrestapi.html
- title: Migrate CartCodesRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-cartcodesrestapi.html
- title: Migrate CartPermissionGroupsRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-cartpermissiongroupsrestapi.html
- title: Migrate CartsRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-cartsrestapi.html
- title: Migrate CatalogSearchRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-catalogsearchrestapi.html
- title: Migrate CategoriesRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-categoriesrestapi.html
- title: Migrate CheckoutRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-checkoutrestapi.html
- title: Migrate CompaniesRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-companiesrestapi.html
- title: Migrate CompanyUsersRestApi and CompanyUserAuthRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-companyusersrestapi.html
- title: Migrate ContentProductAbstractListsRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-contentproductabstractlistsrestapi.html
- title: Migrate CustomersRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-customersrestapi.html
- title: Migrate CustomerAccessRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-customeraccessrestapi.html
- title: Migrate MerchantOpeningHoursRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-merchantopeninghoursrestapi.html
- title: Migrate MerchantProductOffersRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-merchantproductoffersrestapi.html
- title: Migrate MerchantsRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-merchantsrestapi.html
- title: Migrate NavigationsRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-navigationsrestapi.html
- title: Migrate OauthApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-oauthapi.html
- title: Migrate OrderPaymentsRestApi and PaymentsRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-orderpaymentsrestapi.html
- title: Migrate OrdersRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-ordersrestapi.html
- title: Migrate ProductAttributesRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-productattributesrestapi.html
- title: Migrate ProductAvailabilitiesRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-productavailabilitiesrestapi.html
- title: Migrate ProductBundlesRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-productbundlesrestapi.html
- title: Migrate ProductImageSetsRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-productimagesetsrestapi.html
- title: Migrate ProductLabelsRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-productlabelsrestapi.html
- title: Migrate ProductMeasurementUnitsRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-productmeasurementunitsrestapi.html
- title: Migrate ProductOfferAvailabilitiesRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-productofferavailabilitiesrestapi.html
- title: Migrate ProductOfferPricesRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-productofferpricesrestapi.html
- title: Migrate ProductOfferServicePointAvailabilitiesRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-productofferservicepointavailabilitiesrestapi.html
- title: Migrate ProductOptionsRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-productoptionsrestapi.html
- title: Migrate ProductPricesRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-productpricesrestapi.html
- title: Migrate ProductReviewsRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-productreviewsrestapi.html
- title: Migrate ProductsRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-productsrestapi.html
- title: Migrate ProductTaxSetsRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-producttaxsetsrestapi.html
- title: Migrate QuoteRequestsRestApi and QuoteRequestAgentsRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-quoterequestsrestapi.html
- title: Migrate SharedCartsRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-sharedcartsrestapi.html
- title: Migrate ShipmentTypesRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-shipmenttypesrestapi.html
- title: Migrate StoresRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-storesrestapi.html
- title: Migrate TaxAppRestApi
url: /docs/dg/dev/upgrade-and-migrate/migrate-to-api-platform/migrate-taxapprestapi.html
- title: Migrate from Auth to SecurityGui module
url: /docs/dg/dev/upgrade-and-migrate/migrate-from-auth-to-securitygui-module.html
- title: Migrating from Twig v1 to Twig v3
url: /docs/dg/dev/upgrade-and-migrate/migrating-from-twig-v1-to-twig-v3.html
- title: Silex Replacement
url: /docs/dg/dev/upgrade-and-migrate/silex-replacement/silex-replacement.html
nested:
- title: Application
url: /docs/dg/dev/upgrade-and-migrate/silex-replacement/application.html
- title: Container
url: /docs/dg/dev/upgrade-and-migrate/silex-replacement/container.html
- title: Router
url: /docs/dg/dev/upgrade-and-migrate/silex-replacement/router/router.html
nested:
- title: Router Yves
url: /docs/dg/dev/upgrade-and-migrate/silex-replacement/router/router-yves.html
- title: Router Zed
url: /docs/dg/dev/upgrade-and-migrate/silex-replacement/router/router-zed.html
- title: Migrate modules
nested:
- title: ErrorHandler
url: /docs/dg/dev/upgrade-and-migrate/silex-replacement/upgrade-modules/upgrade-the-errorhandler-module.html
- title: EventDispatcher
url: /docs/dg/dev/upgrade-and-migrate/silex-replacement/upgrade-modules/upgrade-the-eventdispatcher-module.html
- title: Form
url: /docs/dg/dev/upgrade-and-migrate/silex-replacement/upgrade-modules/upgrade-the-form-module.html
- title: HTTP
url: /docs/dg/dev/upgrade-and-migrate/silex-replacement/upgrade-modules/upgrade-the-http-module.html
- title: Locale
url: /docs/dg/dev/upgrade-and-migrate/silex-replacement/upgrade-modules/upgrade-the-locale-module.html
- title: Messenger
url: /docs/dg/dev/upgrade-and-migrate/silex-replacement/upgrade-modules/upgrade-the-messenger-module.html
- title: Propel
url: /docs/dg/dev/upgrade-and-migrate/silex-replacement/upgrade-modules/upgrade-the-propel-module.html
- title: Router
url: /docs/dg/dev/upgrade-and-migrate/silex-replacement/upgrade-modules/upgrade-the-router-module.html
- title: Security
url: /docs/dg/dev/upgrade-and-migrate/silex-replacement/upgrade-modules/upgrade-the-security-module.html
- title: Session