template_preprocess_locale_translation_update_info

template_preprocess_locale_translation_update_info(array &$variables)

Prepares variables for translation status information templates.

Translation status information is displayed per language.

Default template: locale-translate-edit-form-strings.html.twig.

Parameters

array $variables: An associative array containing:

  • updates: The projects which have updates.
  • not_found: The projects which updates are not found.

See also

\Drupal\locale\Form\TranslationStatusForm

File

core/modules/locale/locale.pages.inc, line 49
Interface translation summary, editing and deletion user interfaces.

Code

function template_preprocess_locale_translation_update_info(array &$variables) {
  foreach ($variables['updates'] as $update) {
    $variables['modules'][] = $update['name'];
  }
}
doc_Drupal
2016-10-29 09:46:45
Comments
Leave a Comment

Please login to continue.