You are here

function openlayers_i18n_string_refresh in Openlayers 7.3

Implements hook_i18n_string_refresh().

File

./openlayers.module, line 193
Openlayers module.

Code

function openlayers_i18n_string_refresh() {
  foreach (\Drupal\openlayers\Openlayers::getPluginTypes() as $type) {
    foreach (\Drupal\openlayers\Openlayers::loadAllExportable($type) as $exportable) {
      $object = \Drupal\openlayers\Openlayers::load($type, $exportable);
      $object
        ->i18nStringsRefresh();
    }
  }
}