├── .editorconfig ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── ci.yml ├── .gitignore ├── .php-cs-fixer.dist.php ├── LICENSE ├── README.md ├── UPGRADE-3.0.md ├── a2lix_translationForm.jpg ├── composer.json ├── phpunit.xml.dist ├── psalm.xml ├── rector.php ├── src ├── A2lixTranslationFormBundle.php ├── DependencyInjection │ ├── A2lixTranslationFormExtension.php │ ├── Compiler │ │ ├── LocaleProviderPass.php │ │ └── TemplatingPass.php │ └── Configuration.php ├── Form │ ├── EventListener │ │ ├── TranslationsFormsListener.php │ │ └── TranslationsListener.php │ └── Type │ │ ├── TranslatedEntityType.php │ │ ├── TranslationsFormsType.php │ │ ├── TranslationsLocalesSelectorType.php │ │ └── TranslationsType.php ├── Locale │ ├── LocaleProviderInterface.php │ └── SimpleProvider.php └── Resources │ ├── config │ └── a2lix_form.xml │ └── views │ ├── bootstrap_3_layout.html.twig │ ├── bootstrap_4_layout.html.twig │ ├── bootstrap_5_layout.html.twig │ ├── macros.html.twig │ ├── macros_bootstrap_3.html.twig │ ├── macros_bootstrap_4.html.twig │ └── macros_bootstrap_5.html.twig └── tests ├── DependencyInjection └── A2lixTranslationFormExtensionTest.php ├── Fixtures ├── Entity │ ├── MediaLocalize.php │ ├── Product.php │ └── ProductTranslation.php └── Form │ └── MediaLocalizeType.php ├── Form ├── Type │ ├── TranslationsFormsTypeAdvancedTest.php │ ├── TranslationsFormsTypeSimpleTest.php │ ├── TranslationsTypeAdvancedTest.php │ └── TranslationsTypeSimpleTest.php └── TypeTestCase.php └── Locale └── SimpleProviderTest.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADE-3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/UPGRADE-3.0.md -------------------------------------------------------------------------------- /a2lix_translationForm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/a2lix_translationForm.jpg -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/psalm.xml -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/rector.php -------------------------------------------------------------------------------- /src/A2lixTranslationFormBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/src/A2lixTranslationFormBundle.php -------------------------------------------------------------------------------- /src/DependencyInjection/A2lixTranslationFormExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/src/DependencyInjection/A2lixTranslationFormExtension.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/LocaleProviderPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/src/DependencyInjection/Compiler/LocaleProviderPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/TemplatingPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/src/DependencyInjection/Compiler/TemplatingPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/Form/EventListener/TranslationsFormsListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/src/Form/EventListener/TranslationsFormsListener.php -------------------------------------------------------------------------------- /src/Form/EventListener/TranslationsListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/src/Form/EventListener/TranslationsListener.php -------------------------------------------------------------------------------- /src/Form/Type/TranslatedEntityType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/src/Form/Type/TranslatedEntityType.php -------------------------------------------------------------------------------- /src/Form/Type/TranslationsFormsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/src/Form/Type/TranslationsFormsType.php -------------------------------------------------------------------------------- /src/Form/Type/TranslationsLocalesSelectorType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/src/Form/Type/TranslationsLocalesSelectorType.php -------------------------------------------------------------------------------- /src/Form/Type/TranslationsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/src/Form/Type/TranslationsType.php -------------------------------------------------------------------------------- /src/Locale/LocaleProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/src/Locale/LocaleProviderInterface.php -------------------------------------------------------------------------------- /src/Locale/SimpleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/src/Locale/SimpleProvider.php -------------------------------------------------------------------------------- /src/Resources/config/a2lix_form.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/src/Resources/config/a2lix_form.xml -------------------------------------------------------------------------------- /src/Resources/views/bootstrap_3_layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/src/Resources/views/bootstrap_3_layout.html.twig -------------------------------------------------------------------------------- /src/Resources/views/bootstrap_4_layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/src/Resources/views/bootstrap_4_layout.html.twig -------------------------------------------------------------------------------- /src/Resources/views/bootstrap_5_layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/src/Resources/views/bootstrap_5_layout.html.twig -------------------------------------------------------------------------------- /src/Resources/views/macros.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/src/Resources/views/macros.html.twig -------------------------------------------------------------------------------- /src/Resources/views/macros_bootstrap_3.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/src/Resources/views/macros_bootstrap_3.html.twig -------------------------------------------------------------------------------- /src/Resources/views/macros_bootstrap_4.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/src/Resources/views/macros_bootstrap_4.html.twig -------------------------------------------------------------------------------- /src/Resources/views/macros_bootstrap_5.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/src/Resources/views/macros_bootstrap_5.html.twig -------------------------------------------------------------------------------- /tests/DependencyInjection/A2lixTranslationFormExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/tests/DependencyInjection/A2lixTranslationFormExtensionTest.php -------------------------------------------------------------------------------- /tests/Fixtures/Entity/MediaLocalize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/tests/Fixtures/Entity/MediaLocalize.php -------------------------------------------------------------------------------- /tests/Fixtures/Entity/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/tests/Fixtures/Entity/Product.php -------------------------------------------------------------------------------- /tests/Fixtures/Entity/ProductTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/tests/Fixtures/Entity/ProductTranslation.php -------------------------------------------------------------------------------- /tests/Fixtures/Form/MediaLocalizeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/tests/Fixtures/Form/MediaLocalizeType.php -------------------------------------------------------------------------------- /tests/Form/Type/TranslationsFormsTypeAdvancedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/tests/Form/Type/TranslationsFormsTypeAdvancedTest.php -------------------------------------------------------------------------------- /tests/Form/Type/TranslationsFormsTypeSimpleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/tests/Form/Type/TranslationsFormsTypeSimpleTest.php -------------------------------------------------------------------------------- /tests/Form/Type/TranslationsTypeAdvancedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/tests/Form/Type/TranslationsTypeAdvancedTest.php -------------------------------------------------------------------------------- /tests/Form/Type/TranslationsTypeSimpleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/tests/Form/Type/TranslationsTypeSimpleTest.php -------------------------------------------------------------------------------- /tests/Form/TypeTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/tests/Form/TypeTestCase.php -------------------------------------------------------------------------------- /tests/Locale/SimpleProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2lix/TranslationFormBundle/HEAD/tests/Locale/SimpleProviderTest.php --------------------------------------------------------------------------------