fond-of-spryker/form-type-extensions

dev-master 2020-02-20 10:50 UTC

This package is auto-updated.

Last update: 2024-04-16 21:26:34 UTC


README

Build Status PHP from Travis config license

Installation

composer require fond-of-spryker/form-type-extensions

YVES

add to FormDependencyProvider in Yves

    /**
     * @return \Spryker\Shared\FormExtension\Dependency\Plugin\FormPluginInterface[]
     */
    protected function getFormPlugins(): array
    {
        return [
            ...
            new ChoiceTypeExtensionFormPlugin(),
        ];
    }

ZED

add to FormDependencyProvider in Zed

    /**
     * @return \Spryker\Shared\FormExtension\Dependency\Plugin\FormPluginInterface[]
     */
    protected function getFormPlugins(): array
    {
        return [
            ...
            new ChoiceTypeExtensionFormPlugin(),
        ];
    }