CustomBlockExtension.php
<?php | |
namespace My\BlockBundle\DependencyInjection; | |
use Symfony\Component\Config\Resource\FileResource; | |
use Symfony\Component\DependencyInjection\ContainerBuilder; | |
use Symfony\Component\Config\FileLocator; | |
use Symfony\Component\DependencyInjection\Extension\PrependExtensionInterface; | |
use Symfony\Component\HttpKernel\DependencyInjection\Extension; | |
use Symfony\Component\DependencyInjection\Loader; | |
use Symfony\Component\Yaml\Yaml; | |
class CustomBlockExtension extends Extension implements PrependExtensionInterface | |
{ | |
public function load(array $configs, ContainerBuilder $container) | |
{ | |
$configuration = new Configuration(); | |
$config = $this->processConfiguration($configuration, $configs); | |
$loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); | |
$loader->load('services.yml'); | |
} | |
public function prepend(ContainerBuilder $container) | |
{ | |
$configFile = __DIR__ . '/../Resources/config/blocks.yml'; | |
$config = Yaml::parse(file_get_contents($configFile)); | |
$container->prependExtensionConfig('ez_systems_landing_page_field_type', $config); | |
$container->addResource(new FileResource($configFile)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment