agoat / contao-languagerelation
Contao 4 Lanugagerelation
Installs: 15
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 1
Type:contao-bundle
Requires
- php: ^7.0
- contao/core-bundle: ^4.4.5
- symfony/framework-bundle: ~2.8|~3.0
Requires (Dev)
- phpunit/phpunit: ~4.5
Suggests
- agoat/contao-permalink: Clear and easy url handling for multilingual pages
This package is not auto-updated.
Last update: 2024-11-13 00:21:08 UTC
README
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(), ]; } }