agoat/contao-languagerelation

Contao 4 Lanugagerelation

1.0.0-beta3 2018-04-24 11:20 UTC

This package is not auto-updated.

Last update: 2024-04-16 21:46:16 UTC


README

Version License Downloads

About

Easy management of different languages. Contao itself already has the ability to manage multilingual pages. This is achieved by creating a seprate page tree for each of the languages.

This extension adds the missing language relations for the single pages. This makes it easy to manage a page in multiple languages. Of course there is also a language navigation module for the frontend.

Install

Contao manager

Search for the package and install it

agoat/contao-languagerelation

Managed edition

Add the package

# Using the composer
composer require agoat/contao-languagerelation

Registration and configuration is done by the manager-plugin automatically.

Standard edition

Add the package

# Using the composer
composer require agoat/contao-languagerelation

Register the bundle in the AppKernel

# app/AppKernel.php
class AppKernel
{
    // ...
    public function registerBundles()
    {
        $bundles = [
            // ...
            // after Contao\CoreBundle\ContaoCoreBundle
            new Agoat\LanguageRelationBundle\AgoatLanguageRelationBundle(),
        ];
    }
}