Go to file
Ingo Schommer 8b923ca84a Merge pull request #39 from tractorcow/3.0-fatal-fixes
FIXED: Error where uninitialised Locale field would crash queries.
2012-08-09 00:35:04 -07:00
code FIXED: Error where uninitialised Locale field would crash queries. This is noticeable during full text search, when full model fields might not be initialised. 2012-08-09 15:40:11 +12:00
css BUGFIX 3.0 compatibility: Query manipulation, CMS links, separation of settings fields, new place for language selector on tree 2012-05-15 23:04:57 +02:00
docs/en Updated screenshots, added note about UTF8 urls 2012-08-08 11:23:52 +02:00
javascript Translation of SiteConfig 2012-08-06 09:39:46 +02:00
tests/unit BUGFIX 3.0 compatibility: Query manipulation, CMS links, separation of settings fields, new place for language selector on tree 2012-05-15 23:04:57 +02:00
_config.php Translation of SiteConfig 2012-08-06 09:39:46 +02:00
LICENSE MINOR Initial commit, moved files from 'sapphire' and 'cms' modules 2011-03-22 22:18:48 +13:00
README.md MINOR Added link to issue tracker 2011-03-29 21:00:36 +13:00

Translatable module for SilverStripe CMS

Introduction

Allows translation of DataObject and SiteTree records into multiple languages. See /docs/en/index.md for details.

Requirements

  • SilverStripe 3.0 (both cms and sapphire modules)

Maintainers

  • Ingo Schommer

Issues

See open.silverstripe.org

TODO

This module was originally part of the SilverStripe CMS core codebase. While the bulk of the logic has been separated out into this module, there are still many places across SilverStripe CMS which this modules relies on:

  • CMSBatchActionHandler->handleAction()
  • ContentController->handleRequest()
  • ContentController->ContentLocale()
  • ErrorPage::response_for()
  • LeftAndMain->init()
  • ModelAsController->getNestedController()
  • RootURLController::get_homepage_link()
  • SearchForm
  • SiteConfig
  • SiteTree->RelativeLink()
  • SiteTree->getSiteConfig()

These APIs mostly require either hooks for an Extension subclass, or refactoring to allow better customization.