Important
You are browsing upcoming documentation for version 6.1 of OroCommerce, scheduled for release in 2025. Read the documentation for version 6.0 (the latest LTS version) to get up-to-date information.
See our Release Process documentation for more information on the currently supported and upcoming releases.
Cumulative Resources
This resource type provides a way to load configuration from any bundle without an additional registration of configuration files in each bundle.
For example, to load configuration for your current bundle from the Resources\config\acme.yml
file in a different bundle, you can allow other bundles to provide additional configuration. In this case, a bundle that requires this configuration can use CumulativeConfigLoader, as illustrated below:
namespace Acme\Bundle\SomeBundle\DependencyInjection;
use Symfony\Component\Config\FileLocator;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Loader;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
use Oro\Component\Config\Loader\ContainerBuilderAdapter;
use Oro\Component\Config\Loader\CumulativeConfigLoader;
use Oro\Component\Config\Loader\YamlCumulativeFileLoader;
class AcmeSomeExtension extends Extension
{
#[\Override]
public function load(array $configs, ContainerBuilder $container): void
{
// load configuration from acme.yml which can be located in any bundle
$acmeConfig = [];
$configLoader = new CumulativeConfigLoader(
'acme_config',
new YamlCumulativeFileLoader('Resources/config/acme.yml')
);
$resources = $configLoader->load(new ContainerBuilderAdapter($container));
foreach ($resources as $resource) {
$acmeConfig = array_merge($acmeConfig, $resource->data);
}
$container->setParameter('acme_some.configuration', $acmeConfig);
// load container configuration
$loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
$loader->load('services.yml');
}
}
Initialization
The Cumulative Resources
routine needs to be initialized in your application Kernel class before you can use it. The initialization steps include clearing the state of CumulativeResourceManager, which should be done before constructors of any bundle are called. The following example shows how it is done in OroPlatform:
namespace Oro\Bundle\DistributionBundle;
use Oro\Component\Config\CumulativeResourceManager;
use Symfony\Component\HttpKernel\Kernel;
abstract class OroKernel extends Kernel
{
protected function initializeBundles()
{
parent::initializeBundles();
// pass bundles to CumulativeResourceManager
$bundles = [];
foreach ($this->bundles as $name => $bundle) {
$bundles[$name] = get_class($bundle);
}
CumulativeResourceManager::getInstance()->setBundles($bundles);
}
public function registerBundles()
{
// clear state of CumulativeResourceManager
CumulativeResourceManager::getInstance()->clear();
...
}
...
}
Resource Loaders
As well as the Symfony Config Component
, the Oro Config Component
uses its own loader for each resource type. Currently, the following loaders are implemented:
YAML file loader
, YamlCumulativeFileLoader.php, is responsible for loading YAML files. Do not provide any normalization or validation of loaded data."Foldering" file loader
, FolderingCumulativeFileLoader.php, provides a way to load a configuration file in a folder that conforms to a particular pattern.
Load Configuration from Different File Types
class AcmeSomeExtension extends Extension
{
#[\Override]
public function load(array $configs, ContainerBuilder $container): void
{
$acmeConfig = [];
$configLoader = new CumulativeConfigLoader(
'acme_config',
[
new YamlCumulativeFileLoader('Resources/config/acme.yml')
new MyXmlCumulativeFileLoader('Resources/config/acme.xml')
]
);
$resources = $configLoader->load(new ContainerBuilderAdapter($container));
foreach ($resources as $resource) {
$acmeConfig = array_merge($acmeConfig, $resource->data);
}
}
}
Load Configuration Files from Different Folders
class AcmeSomeExtension extends Extension
{
#[\Override]
public function load(array $configs, ContainerBuilder $container): void
{
$acmeConfig = [];
$configLoader = new CumulativeConfigLoader(
'acme_config',
new FolderingCumulativeFileLoader(
'{folder}', // placeholder name
'\w+', // regex pattern the folder should conform
new YamlCumulativeFileLoader('Resources/config/widgets/{folder}/widget.yml')
)
);
$resources = $configLoader->load(new ContainerBuilderAdapter($container));
foreach ($resources as $resource) {
$folderName = basename(dirname($resource->path));
$acmeConfig[$folderName] = $resource->data;
}
}
}
Yml Inheritance
You can use inheritance in .yml files, for example:
imports:
- { resource: 'child1.yml' }
- { resource: 'child2.yml' }