\Drupal\Core\TypedData\TypedDataInterface[]|\Drupal\Core\Config\Schema\TypedConfigInterface $schema: A list of schema definitions.
$config_data:
string $base_key:
array
Overrides DefaultConfigProcessor::extractTranslatables
public function extractTranslatables($schema, $config_data, $base_key = '') {
$data = array();
foreach ($schema as $key => $element) {
if ($key == 'elements' && empty($base_key)) {
$webform = $this->configMapper
->getEntity();
$translation_manager = \Drupal::service('webform.translation_manager');
$source_elements = $translation_manager
->getSourceElements($webform);
$data[$key] = $this
->convertElementsToData($source_elements);
$data[$key]['#label'] = t('Elements');
continue;
}
$element_key = isset($base_key) ? "{$base_key}.{$key}" : $key;
$definition = $element
->getDataDefinition();
// + array('label' => t('N/A'));
if ($element instanceof Mapping || $element instanceof Sequence) {
// Build sub-structure and include it with a wrapper in the form
// if there are any translatable elements there.
$sub_data = $this
->extractTranslatables($element, $config_data[$key], $element_key);
if ($sub_data) {
$data[$key] = $sub_data;
$data[$key]['#label'] = $definition
->getLabel();
}
}
else {
if (!isset($definition['translatable']) || !isset($definition['type']) || empty($config_data[$key])) {
continue;
}
$data[$key] = array(
'#label' => $definition['label'],
'#text' => $config_data[$key],
'#translate' => $this
->isTranslatable($config_data[$key]),
);
}
}
return $data;
}