Go to file
Ingo Schommer 670575c18a Merge pull request #49 from creamarketing/pages-overview-redirect
BUG: redirect to pages overview not working from page edit view
2012-09-06 13:37:14 -07:00
code Merge pull request #49 from creamarketing/pages-overview-redirect 2012-09-06 13:37:14 -07: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 BUG: locale dropdown sometimes hidden after panel reload 2012-09-03 11:09:27 +03:00
lang ENHANCEMENT: Added Swedish translations 2012-09-03 15:09:24 +03: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
composer.json Added composer.json 2012-08-15 22:18:06 +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.