agoat/contao-languagerelation

Contao 4 Lanugagerelation

Installs: 15

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 1

Type:contao-bundle

pkg:composer/agoat/contao-languagerelation

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

This package is not auto-updated.

Last update: 2025-10-15 04:27: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(),
        ];
    }
}