Translatable Enum fieldtype
Elvinas LiutkeviÄius
<elvinas (at) unisolutions (dot) eu>
SilverStripe 3
Simply install the module using the standard method.
Now you can create datafield with translatable enum Field:
class MyDataObject extends DataObject {
public static $db = array(
'DbField' => "i18nEnum('default, other', 'default')",
);
}
To get translated Enum value in GridField, you need to return the value in this way:
class MyDataObject extends DataObject {
...
public function DbField() {
return i18nEnum::getTranslatedValue($this->className, __FUNCTION__, $this->{__FUNCTION__});
}
}
By default translation namespace will be your DataObject class name and the entity will be constructed like this: "db_{DbField}_{enum value}".
So your translation file should look like this:
lang:
MyDataObject:
db_DbField_default: 'Default'
db_DbField_other: 'Other'
Module rating system helping users find modules that are well supported. For more on how the rating system works visit Module standards
Score not correct? Let us know there is a problem