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

TranslateType

This form class is responsible for creating a translatable form. Language selection uses tabs.

  • Namespace: PrestaShopBundle\Form\Admin\Type
  • Reference: TranslateType

Type options

Option Type Default value Description

Code example

$builder->add('custom_value', TranslateType::class, [
    'type' => FormType\TextType::class,
    'options' => [],
    'locales' => $this->locales,
    'hideTabs' => true,
    'required' => false,
    'label' => $this->translator->trans('OR Customized value', [], 'Admin.Catalog.Feature'),
]);