Project

General

Profile

Actions

Feature #95307

closed

Allow glob imports in site configuration yaml files

Added by Simon Schaufelberger over 2 years ago. Updated over 1 year ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Link Handling, Site Handling & Routing
Start date:
2021-09-21
Due date:
% Done:

0%

Estimated time:
PHP Version:
Tags:
Complexity:
Sprint Focus:
On Location Sprint

Description

I have several websites in one installation which share all the same routes so I extracted them into a separate yaml file like this:

imports:
  - { resource: '../../shared/Index.yaml' }

base: 'https://www.example.de/'
#...

The Index.yaml file currently looks like this:

imports:
  - { resource: 'routeEnhancers/Plugin1.yaml' }
  - { resource: 'routeEnhancers/Plugin2.yaml' }
  - { resource: 'routeEnhancers/Plugin3.yaml' }
  - { resource: 'routeEnhancers/FeLogin.yaml' }
  - { resource: 'routeEnhancers/FormFormframework.yml' }
  - { resource: 'routeEnhancers/PageTypeSuffix.yaml' }

but it would be great if i could reduce it to just 1 line:

imports:
  - { resource: 'routeEnhancers/*.yaml'}

I thought that the same yaml file importer like the one from symfony is in use but TYPO3 has it's own implementation. See https://symfony.com/blog/new-in-symfony-3-3-import-config-files-with-glob-patterns and typo3/sysext/core/Classes/Configuration/Loader/YamlFileLoader.php in comparison with vendor/symfony/dependency-injection/Loader/YamlFileLoader.php which i though is more or less the same but the code is very different.


Related issues 6 (0 open6 closed)

Related to TYPO3 Core - Feature #90267: Custom placeholder processing in site configClosed2020-01-31

Actions
Related to TYPO3 Core - Feature #78917: Integrate Element Browser for creating linksClosedFrans Saris2016-12-08

Actions
Related to TYPO3 Core - Feature #86409: Allow usage of env vars in site configurationClosed2018-09-27

Actions
Related to TYPO3 Core - Feature #88742: Allow relative paths in Yaml file importsClosedBenni Mack2019-07-13

Actions
Related to TYPO3 Core - Feature #93112: Import whole directories in sites yaml filesClosed2020-12-19

Actions
Related to TYPO3 Core - Feature #86803: Possibility to import other yaml files into a yaml site configurationClosed2018-10-30

Actions
Actions

Also available in: Atom PDF