Notice: You are browsing the documentation for PrestaShop 9, which is currently in development.

You might want to read the documentation for the current version, PrestaShop 8. Read the current version of this page

TranslatableChoiceType

Class TranslatableChoiceType adds translatable choice types with custom inner type to forms. Language selection uses a dropdown.

Type options

Option Type Default value Description

Code example

$builder->add('template', TranslatableChoiceType::class, [
    'hint' => sprintf(
        '%s<br>%s',
        $this->trans('Only letters, numbers and underscores ("_") are allowed.', 'Admin.Shopparameters.Help'),
        $this->trans('Email template for both .html and .txt.', 'Admin.Shopparameters.Help')
    ),
    'required' => false,
    'choices' => $this->templates,
    'row_attr' => $this->templateAttributes,
])