Setting up dependency injection for a module in Zikula php and Symfony

121 Views Asked by At

I have done this before for a Zikula module but I must be forgetting something. As I remember it, if you want to provide a service to a form you have to do three steps.

First, Create a folder in your module called DependencyInjection. Inside it create a php class that uses the YAML loader to load your YAML file. Here is the code for that:

class PaustianPMCIModuleExtension extends Extension
{
    public function load(array $configs, ContainerBuilder $container)
    {
        $loader = new YamlFileLoader($container, new FileLocator(realpath(__DIR__ . '/../Resources/config')));

        $loader->load('services.yml');
    }
}

Second create a services.yml file in the Resources/config/ folder of the module Third, in that services.yml file have your yml to configure the service. Here is that file:

services:
  paustian_pmci_module.container.link_container:
    class: Paustian\PMCIModule\Container\LinkContainer
    arguments: ["@translator.default", "@jms_i18n_routing.router", "@zikula_permissions_module.api.permission"]
    tags:
    - { name: zikula.link_container }

  paustian_pmci_module.person_type:
    class: Paustian\PMCIModule\Form\Person
    arguments: ["@translator.default"]
    tags:
      - { name: form.type }

Right now the load function of the PaustianPMCIModuleExtension class is not being called at all. I did clear the catch to force reloading of everything. I know I am missing something silly, but I just can't seem to see it.

0

There are 0 best solutions below