Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 869 Bytes

File metadata and controls

27 lines (17 loc) · 869 Bytes

Installation

Requirements

  • eZ Platform 3.x
  • PHP 7.1+

Installation steps

Run composer require ezsystems/ezplatform-automated-translation to install the bundle and its dependencies:

Change bundle's position in the configuration

The new bundle is automatically enabled in the configuration thanks to Flex. Even though, it's important and required to move EzSystems\EzPlatformAutomatedTranslationBundle\EzPlatformAutomatedTranslationBundle::class => ['all' => true] before EzSystems\EzPlatformAdminUiBundle\EzPlatformAdminUiBundle::class => ['all' => true], due to the templates loading order.

<?php

return [
    ...
    EzSystems\EzPlatformAutomatedTranslationBundle\EzPlatformAutomatedTranslationBundle::class => ['all' => true],
    EzSystems\EzPlatformAdminUiBundle\EzPlatformAdminUiBundle::class => ['all' => true],
    ...
];