21493 Posts in 5784 Topics by 2622 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 676 Views |
-
Adding translatable fields

10 January 2009 at 12:44am Last edited: 10 January 2009 6:57am
Hi, i'm working on my HomePage pagetyp and wondering how to make the datafields i added translateable. I'm new to silverstripe and took a look to the tutorials, but i feel that i dont really get the sense of it.
This is my code so far (HomePage.php):
class HomePage extends Page {
static $db = array(
'Name1' => 'Varchar(20)'
);static $has_one = array(
);
static $icon = "mysite/images/treeicons/home";function getCMSFields() {
$fields = parent::getCMSFields();
$fields->removeFieldFromTab("Root.Content.Main","Content");$fields->addFieldToTab('Root.Content.Main', new TextField('Name1'), 'Content');
return $fields;
}Can anybody help?
-
Re: Adding translatable fields

10 January 2009 at 7:05am
I shortened the code i posted above. Its basicly just about making Name1 translateable.
I took some further look to this forum and found out that this problems appears to be a well known and beeing discussed here:
http://ssorg.bigbird.silverstripe.com/archive/show/21167?showPost=116768&start=0Cause this Topic is a bit older I'm wondering if there is any solution which came along SS v2.2.3. Need your help please...
| 676 Views | ||
|
Page:
1
|
Go to Top |
