level51 / translatable-tlds
SilverStripe module providing TLD-based locale switching using Translatable.
Installs: 1 938
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 2
Open Issues: 1
Type:silverstripe-module
Requires
- php: >=5.3.2
- silverstripe/cms: ~3.1
- silverstripe/framework: ~3.1
- silverstripe/translatable: ~2.1
This package is auto-updated.
Last update: 2024-10-13 21:45:31 UTC
README
This modules enables having duplicate URLSegments for different TLDs on one host, e.g. lvl51.de/about and lvl51.com/about. Since this is intended to be used alongside the Translatable module there will be entries in the SiteTree
table for each of pages/URLSegments.
Dependencies
- SilverStripe Framework ~3.1
- SilverStripe CMS ~3.1
- Translatable ~2.1
Installation
composer require level51/translatable-tlds
If you don't like composer you can just download and unpack it to the root of your SilverStripe project.
Be sure to run dev/build?flush=all
after you have added the module.
Features
- Locale-sensitive delivery of
SiteTree
records. - Helper methods for working with TLDs:
// Fetches the current TLD and looks for a rule in the config $locale = TranslatableTLDs::lookup_tld_rule(); // Apply the rule (if not null) if($locale) Translatable::set_current_locale($locale);
Configuration
You can add rules via Config API:
TranslatableTLDs: part: 'tld' rules: 'com': 'en_US' 'de': 'de_DE' 'net': 'de_AT'
If part is set to 'subdomain', then the module will switch to subdomain matching.
Maintainers
- Julian Scheuchenzuber js@lvl51.de