public function YamlFormWizardPage::getTranslatableProperties in YAML Form 8
Get translatable properties.
Return value
array An associative array containing translatable element properties.
Overrides YamlFormElementBase::getTranslatableProperties
File
- src/
Plugin/ YamlFormElement/ YamlFormWizardPage.php, line 35
Class
- YamlFormWizardPage
- Provides a 'yamlform_wizard_page' element.
Namespace
Drupal\yamlform\Plugin\YamlFormElementCode
public function getTranslatableProperties() {
return array_merge(parent::getTranslatableProperties(), [
'prev_button_label',
'next_button_label',
]);
}