You are here

function entity_i18n_string_objects in Entity API 7

Implements hook_i18n_string_objects().

File

./entity.i18n.inc, line 63
Internationalization (i18n) integration.

Code

function entity_i18n_string_objects($type) {
  if ($controller = entity_i18n_controller($type)) {
    return $controller
      ->hook_string_objects();
  }
}