-
Notifications
You must be signed in to change notification settings - Fork 2
/
README
executable file
·59 lines (45 loc) · 1.89 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
###############################################
Multilingual Module
###############################################
Maintainer Contact
-----------------------------------------------
Herbert Cuba Garcia
<herbert (at) kreationsbyran (dot) se>
Requirements
-----------------------------------------------
Tested on Silverstripe 2.4.6
For Multilingual module 2.0, for Silverstripe 3.0 see
http://www.kreationsbyran.se/blogg/multilingual-module-2-0-for-silverstripe-cms-3-0/
Documentation
-----------------------------------------------
This module allows you to add multilanguage fields to your page/dataobjects.
Read more on http://www.kreationsbyran.se/blogg/multilingual-module-for-silverstripe/
and
http://ss-multilingualdemo.kreationsbyran.se/documentation/
On classes that have extended from MultilingualPage/MultilingualDataObject one might
be forced to use:
function getCMSFields() {
SiteTree::disableCMSFieldsExtensions();
$fields = parent::getCMSFields();
SiteTree::enableCMSFieldsExtensions();
...
....
.
.
$this->extend('updateCMSFields', $fields);
return $fields;
}
in order to get all the fields to appear in the CMS as multilingual.
Installation Instructions
-----------------------------------------------
Add the module to the root of your site and name it to "multilingual" if not already namned that way.
- Make your Page class extend from MultilingualPage (both class and controller)
- Make SiteConfig extend MultilingualSiteConfig
- Make all Dataobjects you want in multilingual extend from MultilingualDataObject instead of DataObject.
Open up /multilingual/_config.php and set the module up
Do /dev/build/ and Voila!
You can also do a /dev/build/?en=1 if you want all pages (that extend multilingualpage) to be viewable for english.
Usage Overview
-----------------------------------------------
Use this module if you want to add multilanguage to your site in
an easy way.