Code Monkey home page Code Monkey logo

Comments (6)

Matth-- avatar Matth-- commented on July 21, 2024 2

@gdecorbiac

I went trough the gridbundle code and actually you don't need to load the phpcr-odm.xml file.

This piece of code

foreach ($config['drivers'] as $enabledDriver) {
    $loader->load(sprintf('services/integrations/%s.xml', $enabledDriver));
}

Is being executed in the SyliusGridExtension class. It means that you can just enable this in config.yml file. You need to do the same thing for the sylius_resource and the sylius_gridconfig

sylius_grid:
    drivers:
        - doctrine/orm
        - doctrine/phpcr-odm

This means you can ignore my previous comment 😄

from cmsplugin.

Matth-- avatar Matth-- commented on July 21, 2024 1

@gdecorbiac

I don't know if this is the best way to do so but I'm loading the file from my AppExtension (gridloader)

<?php

namespace AppBundle\DependencyInjection;

use Symfony\Component\Config\FileLocator;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Loader;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;

class AppExtension extends Extension
{
    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');

        $gridLoader = new Loader\XmlFileLoader($container, new FileLocator($container->getParameter('kernel.root_dir') . '/../vendor/sylius/sylius/src/Sylius/Bundle/GridBundle/Resources/config/services/integrations/doctrine'));
        $gridLoader->load('phpcr-odm.xml');
    }
}

If anybody knows a better way to do this...

from cmsplugin.

Matth-- avatar Matth-- commented on July 21, 2024

I had to include the GridBundle/Resources/config/services/integrations/doctrine/phpcr-odm.xml config file for everything to work.

from cmsplugin.

michalmarcinkowski avatar michalmarcinkowski commented on July 21, 2024

Reopening since this should be added to installation docs or if possible configured in the bundle. /cc @pamil

from cmsplugin.

gdecorbiac avatar gdecorbiac commented on July 21, 2024

@Matth-- : how do you include the GridBundle/Resources/config/services/integrations/doctrine/phpcr-odm.xml config file ?

@michalmarcinkowski : it seems that you also need to mention the following code in order to complete the installation

sylius_resource:
    drivers:
        - doctrine/orm
        - doctrine/phpcr-odm

from cmsplugin.

gdecorbiac avatar gdecorbiac commented on July 21, 2024

thanks a lot @Matth-- for your quick answer !

from cmsplugin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.