Coder Social home page Coder Social logo

Configure FormElementManager about mezzio HOT 4 OPEN

mezzio avatar mezzio commented on July 1, 2024
Configure FormElementManager

from mezzio.

Comments (4)

weierophinney avatar weierophinney commented on July 1, 2024

How do you configure FormElementManager? Do you have a factory that injects it with configuration?

I did something similar here: https://github.com/mtymek/blast-input-filter - I configure validator, filter and input filter plugin managers in a similar manner as you do. Take a look - maybe it will give you some hints.
Alternatively, maybe you would like to contribute to my component and add support for form elements?


Originally posted by @mtymek at zendframework/zend-expressive#387 (comment)

from mezzio.

weierophinney avatar weierophinney commented on July 1, 2024

Like I said, I only have a special ConfigProvider which reads the config file and adds it to the configuration in the /config/config.php. i thought that all the configuration is passed to formElementManager and others. To fix this I added the lines I mentioned.

Your package looks like a better solution though I am missing hydrators and form elements. The name of the package seems a bit misleading when adding hydrators and form elements.


Originally posted by @RalfEggert at zendframework/zend-expressive#387 (comment)

from mezzio.

weierophinney avatar weierophinney commented on July 1, 2024

So, basically you're missing a factory that does the code you put in config.php ;) By itself, FormElementManager doesn't know that it should look for form_elements config key.

My package doesn't have hydrators and form elements because I don't use them (well, I use hydrators but I keep them in main SM...). But I'll be happy to accept PR or even consider changing the package name to something more relevant afterwards.


Originally posted by @mtymek at zendframework/zend-expressive#387 (comment)

from mezzio.

weierophinney avatar weierophinney commented on July 1, 2024

@RalfEggert for this i usually use Delegator Factories like

<?php

namespace My\Namespace\Form;

use Interop\Container\ContainerInterface;
use Zend\Form\FormElementManager\FormElementManagerV3Polyfill;
use Zend\ServiceManager\Config;
use Zend\ServiceManager\Factory\DelegatorFactoryInterface;

class FormElementManagerDelegatorFactory implements DelegatorFactoryInterface
{
    public function __invoke(ContainerInterface $container, $name, callable $callback, array $options = null)
    {
        $formElementManager = $callback();

        $config = $container->has('config') ? $container->get('config') : [];
        $config = isset($config['form_elements']) ? $config['form_elements'] : [];
        (new Config($config))->configureServiceManager($formElementManager);

        return $formElementManager;
    }
}

and in my ConfigProvider config

<?php

return [
    'dependencies' => [
        'delegators' => [
            'HydratorManager' => [
                My\Namespace\Hydrator\HydratorManagerDelegatorFactory::class,
            ],
            'InputFilterManager' => [
                My\Namespace\InputFilter\InputFilterManagerDelegatorFactory::class,
            ],
            'FormElementManager' => [
                My\Namespace\Form\FormElementManagerDelegatorFactory::class,
            ],
        ],
    ],
];

yes, class naming could be improved ;-)


Originally posted by @skors at zendframework/zend-expressive#387 (comment)

from mezzio.

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.