translation_entity.module

Allows entities to be translated into different languages.

File

drupal/core/modules/translation_entity/translation_entity.module
View source
<?php

/**
 * @file
 * Allows entities to be translated into different languages.
 */
use Drupal\Core\Language\Language;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\Entity\EntityFormControllerInterface;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityNG;

/**
 * Implements hook_help().
 */
function translation_entity_help($path, $arg) {
  switch ($path) {
    case 'admin/help#translation_entity':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The Entity Translation module allows you to create and manage translations for your Drupal site content. You can specify which elements need to be translated at the content-type level for content items and comments, at the vocabulary level for taxonomy terms, and at the site level for user accounts. Other modules may provide additional elements that can be translated. For more information, see the online handbook entry for <a href="!url">Entity Translation</a>.', array(
        '!url' => 'http://drupal.org/documentation/modules/entity_translation',
      )) . '</p>';
      $output .= '<h3>' . t('Uses') . '</h3>';
      $output .= '<dl>';
      $output .= '<dt>' . t('Enabling translation') . '</dt>';
      $output .= '<dd><p>' . t('Before you can translate content, there must be at least two languages added on the <a href="!url">languages administration</a> page.', array(
        '!url' => url('admin/config/regional/language'),
      )) . '</p>';
      $output .= '<p>' . t('After adding languages, <a href="!url">configure translation</a>.', array(
        '!url' => url('admin/config/regional/content-language'),
      )) . '</p>';
      $output .= '<dt>' . t('Translating content') . '</dt>';
      $output .= '<dd>' . t('After enabling translation you can create a new piece of content, or edit existing content and assign it a language. Then, you will see a <em>Translate</em> tab or link that will gives an overview of the translation status for the current content. From there, you can add translations and edit or delete existing translations. This process is similar for every translatable element on your site, such as taxonomy terms, comments or user accounts.') . '</dd>';
      $output .= '<dt>' . t('Changing source language') . '</dt>';
      $output .= '<dd>' . t('When there are two or more possible source languages, selecting a <em>Source language</em> will repopulate the form using the specified source\'s values. For example, French is much closer to Spanish than to Chinese, so changing the French translation\'s source language to Spanish can assist translators.') . '</dd>';
      $output .= '<dt>' . t('Maintaining translations') . '</dt>';
      $output .= '<dd>' . t('If editing content in one language requires that translated versions also be updated to reflect the change, use the <em>Flag other translations as outdated</em> check box to mark the translations as outdated and in need of revision.') . '</dd>';
      $output .= '<dt>' . t('Translation permissions') . '</dt>';
      $output .= '<dd>' . t('The Entity Translation module makes a basic set of permissions available. Additional <a href="@permissions">permissions</a> are made available after translation is enabled for each translatable element.', array(
        '@permissions' => url('admin/people/permissions', array(
          'fragment' => 'module-translation_entity',
        )),
      )) . '</dd>';
      $output .= '</dl>';
      return $output;
    case 'admin/config/regional/content-language':
      $output = '';
      if (!language_multilingual()) {
        $output .= '<br/>' . t('Before you can translate content, there must be at least two languages added on the <a href="!url">languages administration</a> page.', array(
          '!url' => url('admin/config/regional/language'),
        ));
      }
      return $output;
  }
}

/**
 * Implements hook_module_implements_alter().
 */
function translation_entity_module_implements_alter(&$implementations, $hook) {
  switch ($hook) {

    // Move some of our hook implementations to the end of the list.
    case 'menu_alter':
    case 'entity_info_alter':
      $group = $implementations['translation_entity'];
      unset($implementations['translation_entity']);
      $implementations['translation_entity'] = $group;
      break;
  }
}

/**
 * Implements hook_language_type_info_alter().
 */
function translation_entity_language_types_info_alter(array &$language_types) {

  // Make content language negotiation configurable by removing its predefined
  // configuration.
  unset($language_types[Language::TYPE_CONTENT]['fixed']);
}

/**
 * Implements hook_entity_info_alter().
 */
function translation_entity_entity_info_alter(array &$entity_info) {

  // Provide defaults for translation info.
  foreach ($entity_info as $entity_type => &$info) {
    if (empty($info['translatable'])) {
      continue;
    }
    if (!isset($info['translation']['translation_entity'])) {
      $info['translation']['translation_entity'] = array();
    }

    // Every fieldable entity type must have a translation controller class, no
    // matter if it is enabled for translation or not. As a matter of fact we
    // might need it to correctly switch field translatability when a field is
    // shared accross different entities.
    $info['controllers'] += array(
      'translation' => 'Drupal\\translation_entity\\EntityTranslationController',
    );

    // If no menu base path is provided we default to the usual
    // "entity_type/%entity_type" pattern.
    if (!isset($info['menu_base_path'])) {
      $path = "{$entity_type}/%{$entity_type}";
      $info['menu_base_path'] = $path;
    }
    $path = $info['menu_base_path'];
    $info += array(
      'menu_view_path' => $path,
      'menu_edit_path' => "{$path}/edit",
      'menu_path_wildcard' => "%{$entity_type}",
    );
    $entity_position = count(explode('/', $path)) - 1;
    $info['translation']['translation_entity'] += array(
      'access_callback' => 'translation_entity_translate_access',
      'access_arguments' => array(
        $entity_position,
      ),
    );
  }
}

/**
 * Implements hook_entity_bundle_info_alter().
 */
function translation_entity_entity_bundle_info_alter(&$bundles) {
  foreach ($bundles as $entity_type => &$info) {
    foreach ($info as $bundle => &$bundle_info) {
      $enabled = translation_entity_get_config($entity_type, $bundle, 'enabled');
      $bundle_info['translatable'] = !empty($enabled);
    }
  }
}

/**
 * Implements hook_menu().
 */
function translation_entity_menu() {
  $items = array();

  // Create tabs for all possible entity types.
  foreach (entity_get_info() as $entity_type => $info) {

    // Provide the translation UI only for enabled types.
    if (translation_entity_enabled($entity_type)) {
      $path = $info['menu_base_path'];
      $entity_position = count(explode('/', $path)) - 1;
      $keys = array_flip(array(
        'theme_callback',
        'theme_arguments',
        'access_callback',
        'access_arguments',
        'load_arguments',
      ));
      $menu_info = array_intersect_key($info['translation']['translation_entity'], $keys) + array(
        'file' => 'translation_entity.pages.inc',
      );
      $item = array();

      // Plugin annotations cannot contain spaces, thus we need to restore them
      // from underscores.
      foreach ($menu_info as $key => $value) {
        $item[str_replace('_', ' ', $key)] = $value;
      }
      $items["{$path}/translations"] = array(
        'title' => 'Translate',
        'page callback' => 'translation_entity_overview',
        'page arguments' => array(
          $entity_position,
        ),
        'type' => MENU_LOCAL_TASK,
        'context' => MENU_CONTEXT_PAGE | MENU_CONTEXT_INLINE,
        'weight' => 2,
      ) + $item;
      $items["{$path}/translations/overview"] = array(
        'title' => 'Overview',
        'type' => MENU_DEFAULT_LOCAL_TASK,
        'weight' => 0,
      );

      // Add translation callback.
      // @todo Add the access callback instead of replacing it as soon as the
      // routing system supports multiple callbacks.
      $language_position = $entity_position + 3;
      $args = array(
        $entity_position,
        $language_position,
        $language_position + 1,
      );
      $items["{$path}/translations/add/%language/%language"] = array(
        'title' => 'Add',
        'page callback' => 'translation_entity_add_page',
        'page arguments' => $args,
        'access callback' => 'translation_entity_add_access',
        'access arguments' => $args,
        'type' => MENU_LOCAL_TASK,
        'weight' => 1,
      ) + $item;

      // Edit translation callback.
      $args = array(
        $entity_position,
        $language_position,
      );
      $items["{$path}/translations/edit/%language"] = array(
        'title' => 'Edit',
        'page callback' => 'translation_entity_edit_page',
        'page arguments' => $args,
        'access callback' => 'translation_entity_edit_access',
        'access arguments' => $args,
        'type' => MENU_LOCAL_TASK,
        'weight' => 1,
      ) + $item;

      // Delete translation callback.
      $items["{$path}/translations/delete/%language"] = array(
        'title' => 'Delete',
        'page callback' => 'drupal_get_form',
        'page arguments' => array(
          'translation_entity_delete_confirm',
          $entity_position,
          $language_position,
        ),
        'access callback' => 'translation_entity_delete_access',
        'access arguments' => $args,
      ) + $item;
    }
  }
  $items['admin/config/regional/translation_entity/translatable/%'] = array(
    'title' => 'Confirm change in translatability.',
    'description' => 'Confirm page for changing field translatability.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'translation_entity_translatable_form',
      5,
    ),
    'access arguments' => array(
      'administer entity translation',
    ),
    'file' => 'translation_entity.admin.inc',
  );
  return $items;
}

/**
 * Implements hook_menu_alter().
 */
function translation_entity_menu_alter(array &$items) {

  // Check that the declared menu base paths are actually valid.
  foreach (entity_get_info() as $entity_type => $info) {
    if (translation_entity_enabled($entity_type)) {
      $path = $info['menu_base_path'];

      // If the base path is not defined we cannot provide the translation UI
      // for this entity type. In some cases the actual base path might not have
      // a menu loader associated, hence we need to check also for the plain "%"
      // variant. See for instance comment_menu().
      if (!isset($items[$path]) && !isset($items["{$path}/edit"]) && !isset($items[_translation_entity_menu_strip_loaders($path)])) {
        unset($items["{$path}/translations"], $items["{$path}/translations/add/%language/%language"], $items["{$path}/translations/delete/%language"]);
        $t_args = array(
          '@entity_type' => isset($info['label']) ? $info['label'] : $entity_type,
        );
        watchdog('entity translation', 'The entities of type @entity_type do not define a valid base path: it will not be possible to translate them.', $t_args, WATCHDOG_WARNING);
      }
      else {
        $entity_position = count(explode('/', $path)) - 1;
        $edit_path = $info['menu_edit_path'];
        if (isset($items[$edit_path])) {

          // If the edit path is a default local task we need to find the parent
          // item.
          $edit_path_split = explode('/', $edit_path);
          do {
            $entity_form_item =& $items[implode('/', $edit_path_split)];
            array_pop($edit_path_split);
          } while (!empty($entity_form_item['type']) && $entity_form_item['type'] == MENU_DEFAULT_LOCAL_TASK);

          // Make the "Translate" tab follow the "Edit" one when possibile.
          if (isset($entity_form_item['weight'])) {
            $items["{$path}/translations"]['weight'] = $entity_form_item['weight'] + 0.01;
          }
        }
      }
    }
  }
}

/**
 * Strips out menu loaders from the given path.
 *
 * @param string $path
 *   The path to process.
 *
 * @return
 *   The given path where all the menu loaders are replaced with "%".
 */
function _translation_entity_menu_strip_loaders($path) {
  return preg_replace('|%[^/]+|', '%', $path);
}

/**
 * Access callback for the translation overview page.
 *
 * @param \Drupal\Core\Entity\EntityInterface $entity
 *   The entity whose translation overview should be displayed.
 */
function translation_entity_translate_access(EntityInterface $entity) {
  $entity_type = $entity
    ->entityType();
  return empty($entity
    ->language()->locked) && language_multilingual() && $entity
    ->isTranslatable() && (user_access('create entity translations') || user_access('update entity translations') || user_access('delete entity translations'));
}

/**
 * Checks whether the given user can view the specified translation.
 *
 * @param \Drupal\Core\Entity\EntityInterface $entity
 *   The entity whose translation overview should be displayed.
 * @param $langcode
 *   The language code of the translation to be displayed.
 * @param \Drupal\Core\Session\AccountInterface $account
 *   (optional) The account for which view access should be checked. Defaults to
 *   the current user.
 */
function translation_entity_view_access(EntityInterface $entity, $langcode, AccountInterface $account = NULL) {
  $entity_type = $entity
    ->entityType();
  return !empty($entity->translation[$langcode]['status']) || user_access('translate any entity', $account) || user_access("translate {$entity_type} entities", $account);
}

/**
 * Access callback for the translation addition page.
 *
 * @param \Drupal\Core\Entity\EntityInterface $entity
 *   The entity being translated.
 * @param \Drupal\Core\Language\Language $source
 *   (optional) The language of the values being translated. Defaults to the
 *   entity language.
 * @param \Drupal\Core\Language\Language $target
 *   (optional) The language of the translated values. Defaults to the current
 *   content language.
 */
function translation_entity_add_access(EntityInterface $entity, Language $source = NULL, Language $target = NULL) {
  $source = !empty($source) ? $source : $entity
    ->language();
  $target = !empty($target) ? $target : language(Language::TYPE_CONTENT);
  $translations = $entity
    ->getTranslationLanguages();
  $languages = language_list();
  return $source->langcode != $target->langcode && isset($languages[$source->langcode]) && isset($languages[$target->langcode]) && !isset($translations[$target->langcode]) && translation_entity_access($entity, 'create');
}

/**
 * Access callback for the translation edit page.
 *
 * @param \Drupal\Core\Entity\EntityInterface $entity
 *   The entity being translated.
 * @param \Drupal\Core\Language\Language $language
 *   (optional) The language of the translated values. Defaults to the current
 *   content language.
 */
function translation_entity_edit_access(EntityInterface $entity, Language $language = NULL) {
  $language = !empty($language) ? $language : language(Language::TYPE_CONTENT);
  $translations = $entity
    ->getTranslationLanguages();
  $languages = language_list();
  return isset($languages[$language->langcode]) && $language->langcode != $entity
    ->language()->langcode && isset($translations[$language->langcode]) && translation_entity_access($entity, 'update');
}

/**
 * Access callback for the translation delete page.
 *
 * @param \Drupal\Core\Entity\EntityInterface $entity
 *   The entity being translated.
 * @param \Drupal\Core\Language\Language $language
 *   (optional) The language of the translated values. Defaults to the current
 *   content language.
 */
function translation_entity_delete_access(EntityInterface $entity, Language $language = NULL) {
  $language = !empty($language) ? $language : language(Language::TYPE_CONTENT);
  $translations = $entity
    ->getTranslationLanguages();
  $languages = language_list();
  return isset($languages[$language->langcode]) && $language->langcode != $entity
    ->language()->langcode && isset($translations[$language->langcode]) && translation_entity_access($entity, 'delete');
}

/**
 * Implements hook_library_info().
 */
function translation_entity_library_info() {
  $path = drupal_get_path('module', 'translation_entity');
  $libraries['drupal.translation_entity.admin'] = array(
    'title' => 'Translation entity UI',
    'version' => VERSION,
    'js' => array(
      $path . '/translation_entity.admin.js' => array(),
    ),
    'css' => array(
      $path . '/css/translation_entity.admin.css' => array(),
    ),
    'dependencies' => array(
      array(
        'system',
        'jquery',
      ),
      array(
        'system',
        'drupal',
      ),
      array(
        'system',
        'jquery.once',
      ),
    ),
  );
  return $libraries;
}

/**
 * Returns the key name used to store the configuration setting.
 *
 * Based on the entity type and bundle, the keys used to store configuration
 * will have a common root name.
 *
 * @param string $entity_type
 *   The type of the entity the setting refers to.
 * @param string $bundle
 *   The bundle of the entity the setting refers to.
 * @param string $setting
 *   The name of the setting.
 *
 * @return string
 *   The key name of the configuration setting.
 *
 * @todo Generalize this logic so that it is available to any module needing
 *   per-bundle configuration.
 */
function translation_entity_get_config_key($entity_type, $bundle, $setting) {
  $entity_type = preg_replace('/[^0-9a-zA-Z_]/', "_", $entity_type);
  $bundle = preg_replace('/[^0-9a-zA-Z_]/', "_", $bundle);
  return $entity_type . '.' . $bundle . '.translation_entity.' . $setting;
}

/**
 * Retrieves the value for the specified setting.
 *
 * @param string $entity_type
 *   The type of the entity the setting refer to.
 * @param string $bundle
 *   The bundle of the entity the setting refer to.
 * @param string $setting
 *   The name of the setting.
 *
 * @returns mixed
 *   The stored value for the given setting.
 */
function translation_entity_get_config($entity_type, $bundle, $setting) {
  $key = translation_entity_get_config_key($entity_type, $bundle, $setting);
  return config('translation_entity.settings')
    ->get($key);
}

/**
 * Stores the given value for the specified setting.
 *
 * @param string $entity_type
 *   The type of the entity the setting refer to.
 * @param string $bundle
 *   The bundle of the entity the setting refer to.
 * @param string $setting
 *   The name of the setting.
 * @param $value
 *   The value to be stored for the given setting.
 */
function translation_entity_set_config($entity_type, $bundle, $setting, $value) {
  $key = translation_entity_get_config_key($entity_type, $bundle, $setting);
  return config('translation_entity.settings')
    ->set($key, $value)
    ->save();
}

/**
 * Determines whether the given entity type is translatable.
 *
 * @param string $entity_type
 *   The type of the entity.
 * @param string $bundle
 *   (optional) The bundle of the entity. If no bundle is provided, all the
 *   available bundles are checked.
 *
 * @returns
 *   TRUE if the specified bundle is translatable. If no bundle is provided
 *   returns TRUE if at least one of the entity bundles is translatable.
 */
function translation_entity_enabled($entity_type, $bundle = NULL) {
  $enabled = FALSE;
  $info = entity_get_info($entity_type);
  if (!empty($info['translatable'])) {
    $bundles = !empty($bundle) ? array(
      $bundle,
    ) : array_keys(entity_get_bundles($entity_type));
    foreach ($bundles as $bundle) {
      if (translation_entity_get_config($entity_type, $bundle, 'enabled')) {
        $enabled = TRUE;
        break;
      }
    }
  }
  return $enabled;
}

/**
 * Returns all the translatable entity types.
 *
 * @return array
 *   An array of entity types keyed by entity type.
 */
function translation_entity_types_translatable() {
  $entity_types =& drupal_static(__FUNCTION__, array());
  foreach (entity_get_info() as $entity_type => $info) {
    if (translation_entity_enabled($entity_type)) {

      // Lazy load router items.
      if (!isset($items)) {
        $items = menu_get_router();
      }

      // Check whether the required paths are defined. We need to strip out the
      // menu loader and replace it with a plain "%" as router items have no
      // menu loader in them.
      $path = _translation_entity_menu_strip_loaders($info['menu_base_path']);
      if (!empty($items[$path]) && !empty($items[$path . '/translations'])) {
        $entity_types[$entity_type] = $entity_type;
      }
    }
  }
  return $entity_types;
}

/**
 * Entity translation controller factory.
 *
 * @param string $entity_type
 *   The type of the entity being translated.
 *
 * @return \Drupal\translation_entity\EntityTranslationControllerInterface
 *   An instance of the entity translation controller interface.
 */
function translation_entity_controller($entity_type) {
  $entity_info = entity_get_info($entity_type);

  // @todo Throw an exception if the key is missing.
  return new $entity_info['controllers']['translation']($entity_type, $entity_info);
}

/**
 * Returns the entity form controller for the given form.
 *
 * @param array $form_state
 *   The form state array holding the entity form controller.
 *
 * @return \Drupal\Core\Entity\EntityFormControllerInterface;
 *   An instance of the entity translation form interface or FALSE if not an
 *   entity form.
 */
function translation_entity_form_controller(array $form_state) {
  return isset($form_state['controller']) && $form_state['controller'] instanceof EntityFormControllerInterface ? $form_state['controller'] : FALSE;
}

/**
 * Checks whether an entity translation is accessible.
 *
 * @param \Drupal\Core\Entity\EntityInterface $entity
 *   The entity to be accessed.
 * @param $op
 *   The operation to be performed on the translation. Possible values are:
 *   - "view"
 *   - "update"
 *   - "delete"
 *   - "create"
 *
 * @return
 *   TRUE if the current user is allowed to view the translation.
 */
function translation_entity_access(EntityInterface $entity, $op) {
  return translation_entity_controller($entity
    ->entityType())
    ->getTranslationAccess($entity, $op);
}

/**
 * Implements hook_permission().
 */
function translation_entity_permission() {
  $permission = array(
    'administer entity translation' => array(
      'title' => t('Administer translation settings'),
      'description' => t('Configure translatability of entities and fields.'),
    ),
    'create entity translations' => array(
      'title' => t('Create translations'),
    ),
    'update entity translations' => array(
      'title' => t('Edit translations'),
    ),
    'delete entity translations' => array(
      'title' => t('Delete translations'),
    ),
    'translate any entity' => array(
      'title' => t('Translate any entity'),
    ),
  );

  // Create a translate permission for each enabled entity type and (optionally)
  // bundle.
  foreach (entity_get_info() as $entity_type => $info) {
    if (!empty($info['permission_granularity'])) {
      $t_args = array(
        '@entity_label' => drupal_strtolower(t($info['label'])),
      );
      switch ($info['permission_granularity']) {
        case 'bundle':
          foreach (entity_get_bundles($entity_type) as $bundle => $bundle_info) {
            if (translation_entity_enabled($entity_type, $bundle)) {
              $t_args['%bundle_label'] = isset($bundle_info['label']) ? $bundle_info['label'] : $bundle;
              $permission["translate {$bundle} {$entity_type}"] = array(
                'title' => t('Translate %bundle_label @entity_label', $t_args),
              );
            }
          }
          break;
        case 'entity_type':
          if (translation_entity_enabled($entity_type)) {
            $permission["translate {$entity_type}"] = array(
              'title' => t('Translate @entity_label', $t_args),
            );
          }
          break;
      }
    }
  }
  return $permission;
}

/**
 * Implements hook_form_alter().
 */
function translation_entity_form_alter(array &$form, array &$form_state) {
  if (($form_controller = translation_entity_form_controller($form_state)) && ($entity = $form_controller
    ->getEntity()) && !$entity
    ->isNew() && $entity
    ->isTranslatable()) {
    $controller = translation_entity_controller($entity
      ->entityType());
    $controller
      ->entityFormAlter($form, $form_state, $entity);

    // @todo Move the following lines to the code generating the property form
    //   elements once we have an official #multilingual FAPI key.
    $translations = $entity
      ->getTranslationLanguages();
    $form_langcode = $form_controller
      ->getFormLangcode($form_state);

    // Handle fields shared between translations when there is at least one
    // translation available or a new one is being created.
    if (!$entity
      ->isNew() && (!isset($translations[$form_langcode]) || count($translations) > 1)) {
      $entity = $entity
        ->getNGEntity();
      if ($entity instanceof EntityNG) {
        foreach ($entity
          ->getPropertyDefinitions() as $property_name => $definition) {
          if (isset($form[$property_name])) {
            $form[$property_name]['#multilingual'] = !empty($definition['translatable']);
          }
        }
      }
      else {
        foreach (field_info_instances($entity
          ->entityType(), $entity
          ->bundle()) as $instance) {
          $field_name = $instance['field_name'];
          $field = field_info_field($field_name);
          $form[$field_name]['#multilingual'] = !empty($field['translatable']);
        }
      }
    }
  }
}

/**
 * Implements hook_field_language_alter().
 *
 * Performs language fallback for unaccessible translations.
 */
function translation_entity_field_language_alter(&$display_language, $context) {
  $entity = $context['entity'];
  $entity_type = $entity
    ->entityType();
  if (isset($entity->translation[$context['langcode']]) && $entity
    ->isTranslatable() && !translation_entity_view_access($entity, $context['langcode'])) {
    $instances = field_info_instances($entity_type, $entity
      ->bundle());

    // Avoid altering the real entity.
    $entity = clone $entity;
    $entity_langcode = $entity
      ->language()->langcode;
    foreach ($entity->translation as $langcode => $translation) {
      if ($langcode == $context['langcode'] || !translation_entity_view_access($entity, $langcode)) {

        // Unset unaccessible field translations: if the field is untranslatable
        // unsetting a language different from Language::LANGCODE_NOT_SPECIFIED has no
        // effect.
        foreach ($instances as $instance) {

          // @todo BC entities have the same value accessibile both with the
          //   entity language and with Language::LANGCODE_DEFAULT. We need need to unset
          //   both until we remove the BC layer.
          if ($langcode == $entity_langcode) {
            unset($entity->{$instance['field_name']}[Language::LANGCODE_DEFAULT]);
          }
          unset($entity->{$instance['field_name']}[$langcode]);
        }
      }
    }

    // Find the new fallback values.
    field_language_fallback($display_language, $entity, $context['langcode']);
  }
}

/**
 * Implements hook_entity_load().
 */
function translation_entity_entity_load(array $entities, $entity_type) {
  $enabled_entities = array();
  if (translation_entity_enabled($entity_type)) {
    foreach ($entities as $entity) {
      if ($entity
        ->isTranslatable()) {
        $enabled_entities[$entity
          ->id()] = $entity;
      }
    }
  }
  if (!empty($enabled_entities)) {
    translation_entity_load_translation_metadata($enabled_entities, $entity_type);
  }
}

/**
 * Loads translation data into the given entities.
 *
 * @param array $entities
 *   The entities keyed by entity ID.
 * @param string $entity_type
 *   The type of the entities.
 */
function translation_entity_load_translation_metadata(array $entities, $entity_type) {
  $query = 'SELECT * FROM {translation_entity} te WHERE te.entity_type = :entity_type AND te.entity_id IN (:entity_id)';
  $result = db_query($query, array(
    ':entity_type' => $entity_type,
    ':entity_id' => array_keys($entities),
  ));
  $exclude = array(
    'entity_type',
    'entity_id',
    'langcode',
  );
  foreach ($result as $record) {
    $entity = $entities[$record->entity_id];

    // @todo Declare these as entity (translation?) properties.
    foreach ($record as $field_name => $value) {
      if (!in_array($field_name, $exclude)) {
        $entity->translation[$record->langcode][$field_name] = $value;
      }
    }
  }
}

/**
 * Implements hook_entity_insert().
 */
function translation_entity_entity_insert(EntityInterface $entity) {

  // Only do something if translation support for the given entity is enabled.
  if (!$entity
    ->isTranslatable()) {
    return;
  }
  $fields = array(
    'entity_type',
    'entity_id',
    'langcode',
    'source',
    'outdated',
    'uid',
    'status',
    'created',
    'changed',
  );
  $query = db_insert('translation_entity')
    ->fields($fields);
  foreach ($entity
    ->getTranslationLanguages() as $langcode => $language) {
    $translation = isset($entity->translation[$langcode]) ? $entity->translation[$langcode] : array();
    $translation += array(
      'source' => '',
      'uid' => $GLOBALS['user']->uid,
      'outdated' => FALSE,
      'status' => TRUE,
      'created' => REQUEST_TIME,
      'changed' => REQUEST_TIME,
    );
    $translation['entity_type'] = $entity
      ->entityType();
    $translation['entity_id'] = $entity
      ->id();
    $translation['langcode'] = $langcode;

    // Reorder values to match the schema.
    $values = array();
    foreach ($fields as $field_name) {
      $value = is_bool($translation[$field_name]) ? intval($translation[$field_name]) : $translation[$field_name];
      $values[$field_name] = $value;
    }
    $query
      ->values($values);
  }
  $query
    ->execute();
}

/**
 * Implements hook_entity_delete().
 */
function translation_entity_entity_delete(EntityInterface $entity) {

  // Only do something if translation support for the given entity is enabled.
  if (!$entity
    ->isTranslatable()) {
    return;
  }
  db_delete('translation_entity')
    ->condition('entity_type', $entity
    ->entityType())
    ->condition('entity_id', $entity
    ->id())
    ->execute();
}

/**
 * Implements hook_entity_update().
 */
function translation_entity_entity_update(EntityInterface $entity) {

  // Only do something if translation support for the given entity is enabled.
  if (!$entity
    ->isTranslatable()) {
    return;
  }

  // Delete and create to ensure no stale value remains behind.
  translation_entity_entity_delete($entity);
  translation_entity_entity_insert($entity);
}

/**
 * Implements hook_field_extra_fields().
 */
function translation_entity_field_extra_fields() {
  $extra = array();
  foreach (entity_get_info() as $entity_type => $info) {
    foreach (entity_get_bundles($entity_type) as $bundle => $bundle_info) {
      if (translation_entity_enabled($entity_type, $bundle)) {
        $extra[$entity_type][$bundle]['form']['translation'] = array(
          'label' => t('Translation'),
          'description' => t('Translation settings'),
          'weight' => 10,
        );
      }
    }
  }
  return $extra;
}

/**
 * Implements hook_form_FORM_ID_alter() for 'field_ui_field_edit_form'.
 */
function translation_entity_form_field_ui_field_edit_form_alter(array &$form, array &$form_state, $form_id) {
  $field = $form['#field'];
  $field_name = $field['field_name'];
  $translatable = $field['translatable'];
  $label = t('Field translation');
  if (field_has_data($field)) {
    $form['field']['translatable'] = array(
      '#type' => 'item',
      '#title' => $label,
      '#attributes' => array(
        'class' => 'translatable',
      ),
      'link' => array(
        '#type' => 'link',
        '#prefix' => t('This field has data in existing content.') . ' ',
        '#title' => !$translatable ? t('Enable translation') : t('Disable translation'),
        '#href' => 'admin/config/regional/translation_entity/translatable/' . $field_name,
        '#options' => array(
          'query' => drupal_get_destination(),
        ),
        '#access' => user_access('administer entity translation'),
      ),
    );
  }
  else {
    $form['field']['translatable'] = array(
      '#type' => 'checkbox',
      '#title' => t('Users may translate this field.'),
      '#default_value' => $translatable,
    );
  }
  $form['field']['translatable']['#weight'] = 20;
}

/**
 * Implements hook_form_FORM_ID_alter() for 'field_ui_field_instance_edit_form'.
 */
function translation_entity_form_field_ui_field_instance_edit_form_alter(array &$form, array &$form_state, $form_id) {
  if ($form['#field']['translatable']) {
    module_load_include('inc', 'translation_entity', 'translation_entity.admin');
    $element = translation_entity_field_sync_widget($form['#field'], $form['#instance']);
    if ($element) {
      $form['instance']['settings']['translation_sync'] = $element;
    }
  }
}

/**
 * Implements hook_field_info_alter().
 */
function translation_entity_field_info_alter(&$info) {
  foreach ($info as $field_type => &$field_type_info) {

    // By default no column has to be synchronized.
    $field_type_info['settings'] += array(
      'translation_sync' => FALSE,
    );

    // Synchronization can be enabled per instance.
    $field_type_info['instance_settings'] += array(
      'translation_sync' => FALSE,
    );
  }
}

/**
 * Implements hook_field_attach_presave().
 */
function translation_entity_field_attach_presave(EntityInterface $entity) {
  if ($entity
    ->isTranslatable()) {
    $attributes = drupal_container()
      ->get('request')->attributes;
    Drupal::service('translation_entity.synchronizer')
      ->synchronizeFields($entity, $attributes
      ->get('working_langcode'), $attributes
      ->get('source_langcode'));
  }
}

/**
 * Implements hook_element_info_alter().
 */
function translation_entity_element_info_alter(&$type) {
  if (isset($type['language_configuration'])) {
    $type['language_configuration']['#process'][] = 'translation_entity_language_configuration_element_process';
  }
}

/**
 * Returns a widget to enable entity translation per entity bundle.
 *
 * Backward compatibility layer to support entities not using the language
 * configuration form element.
 *
 * @todo Remove once all core entities have language configuration.
 *
 * @param string $entity_type
 *   The type of the entity being configured for translation.
 * @param string $bundle
 *   The bundle of the entity being configured for translation.
 * @param array $form
 *   The configuration form array.
 * @param array $form_state
 *   The configuration form state array.
 */
function translation_entity_enable_widget($entity_type, $bundle, array &$form, array &$form_state) {
  $key = $form_state['translation_entity']['key'];
  if (!isset($form_state['language'][$key])) {
    $form_state['language'][$key] = array();
  }
  $form_state['language'][$key] += array(
    'entity_type' => $entity_type,
    'bundle' => $bundle,
  );
  $element = translation_entity_language_configuration_element_process(array(
    '#name' => $key,
  ), $form_state, $form);
  unset($element['translation_entity']['#element_validate']);
  return $element;
}

/**
 * Process callback: Expands the language_configuration form element.
 *
 * @param array $element
 *   Form API element.
 *
 * @return
 *   Processed language configuration element.
 */
function translation_entity_language_configuration_element_process(array $element, array &$form_state, array &$form) {
  if (empty($element['#translation_entity_skip_alter']) && user_access('administer entity translation')) {
    $form_state['translation_entity']['key'] = $element['#name'];
    $context = $form_state['language'][$element['#name']];
    $element['translation_entity'] = array(
      '#type' => 'checkbox',
      '#title' => t('Enable translation'),
      '#default_value' => translation_entity_enabled($context['entity_type'], $context['bundle']),
      '#element_validate' => array(
        'translation_entity_language_configuration_element_validate',
      ),
      '#prefix' => '<label>' . t('Translation') . '</label>',
    );
    $form['#submit'][] = 'translation_entity_language_configuration_element_submit';
  }
  return $element;
}

/**
 * Form validation handler for element added with translation_entity_language_configuration_element_process().
 *
 * Checks whether translation can be enabled: if language is set to one of the
 * special languages and language selector is not hidden, translation cannot be
 * enabled.
 *
 * @see translation_entity_language_configuration_element_submit()
 */
function translation_entity_language_configuration_element_validate($element, array &$form_state, array $form) {
  $key = $form_state['translation_entity']['key'];
  $values = $form_state['values'][$key];
  if (language_is_locked($values['langcode']) && !$values['language_show'] && $values['translation_entity']) {
    foreach (language_list(Language::STATE_LOCKED) as $language) {
      $locked_languages[] = $language->name;
    }

    // @todo Set the correct form element name as soon as the element parents
    //   are correctly set. We should be using NestedArray::getValue() but for
    //   now we cannot.
    form_set_error('', t('"Show language selector" is not compatible with translating content that has default language: %choice. Either do not hide the language selector or pick a specific language.', array(
      '%choice' => $locked_languages[$values['langcode']],
    )));
  }
}

/**
 * Form submission handler for element added with translation_entity_language_configuration_element_process().
 *
 * Stores the entity translation settings.
 *
 * @see translation_entity_language_configuration_element_validate()
 */
function translation_entity_language_configuration_element_submit(array $form, array &$form_state) {
  $key = $form_state['translation_entity']['key'];
  $context = $form_state['language'][$key];
  $enabled = $form_state['values'][$key]['translation_entity'];
  if (translation_entity_enabled($context['entity_type'], $context['bundle']) != $enabled) {
    translation_entity_set_config($context['entity_type'], $context['bundle'], 'enabled', $enabled);
    entity_info_cache_clear();
    menu_router_rebuild();
  }
}

/**
 * Implements hook_form_FORM_ID_alter() for language_content_settings_form().
 */
function translation_entity_form_language_content_settings_form_alter(array &$form, array &$form_state) {
  module_load_include('inc', 'translation_entity', 'translation_entity.admin');
  _translation_entity_form_language_content_settings_form_alter($form, $form_state);
}

/**
 * Implements hook_preprocess_HOOK() for theme_language_content_settings_table().
 */
function translation_entity_preprocess_language_content_settings_table(&$variables) {
  module_load_include('inc', 'translation_entity', 'translation_entity.admin');
  _translation_entity_preprocess_language_content_settings_table($variables);
}

/**
 * Stores entity translation settings.
 *
 * @param array $settings
 *   An associative array of settings keyed by entity type and bundle. At bundle
 *   level the following keys are available:
 *   - translatable: The bundle translatability status, which is a bool.
 *   - settings: An array of language configuration settings as defined by
 *     language_save_default_configuration().
 *   - fields: An associative array with field names as keys and a boolean as
 *     value, indicating field translatability.
 *   - columns: An associative array of translation synchronization settings
 *     keyed by field names.
 */
function translation_entity_save_settings($settings) {
  foreach ($settings as $entity_type => $entity_settings) {
    foreach ($entity_settings as $bundle => $bundle_settings) {

      // The 'translatable' value is set only if it is possible to enable.
      if (isset($bundle_settings['translatable'])) {

        // Store whether a bundle has translation enabled or not.
        translation_entity_set_config($entity_type, $bundle, 'enabled', $bundle_settings['translatable']);

        // Store whether fields have translation enabled or not.
        if (!empty($bundle_settings['columns'])) {
          foreach ($bundle_settings['columns'] as $field_name => $column_settings) {
            $field = field_info_field($field_name);
            $instance = field_info_instance($entity_type, $field_name, $bundle);
            if ($field['translatable']) {
              $instance['settings']['translation_sync'] = $column_settings;
            }
            else {
              unset($instance['settings']['translation_sync']);
            }
            field_update_instance($instance);
          }
        }
      }
    }
  }

  // Ensure entity and menu router information are correctly rebuilt.
  entity_info_cache_clear();
  menu_router_rebuild();
}

Functions

Namesort descending Description
translation_entity_access Checks whether an entity translation is accessible.
translation_entity_add_access Access callback for the translation addition page.
translation_entity_controller Entity translation controller factory.
translation_entity_delete_access Access callback for the translation delete page.
translation_entity_edit_access Access callback for the translation edit page.
translation_entity_element_info_alter Implements hook_element_info_alter().
translation_entity_enabled Determines whether the given entity type is translatable.
translation_entity_enable_widget Returns a widget to enable entity translation per entity bundle.
translation_entity_entity_bundle_info_alter Implements hook_entity_bundle_info_alter().
translation_entity_entity_delete Implements hook_entity_delete().
translation_entity_entity_info_alter Implements hook_entity_info_alter().
translation_entity_entity_insert Implements hook_entity_insert().
translation_entity_entity_load Implements hook_entity_load().
translation_entity_entity_update Implements hook_entity_update().
translation_entity_field_attach_presave Implements hook_field_attach_presave().
translation_entity_field_extra_fields Implements hook_field_extra_fields().
translation_entity_field_info_alter Implements hook_field_info_alter().
translation_entity_field_language_alter Implements hook_field_language_alter().
translation_entity_form_alter Implements hook_form_alter().
translation_entity_form_controller Returns the entity form controller for the given form.
translation_entity_form_field_ui_field_edit_form_alter Implements hook_form_FORM_ID_alter() for 'field_ui_field_edit_form'.
translation_entity_form_field_ui_field_instance_edit_form_alter Implements hook_form_FORM_ID_alter() for 'field_ui_field_instance_edit_form'.
translation_entity_form_language_content_settings_form_alter Implements hook_form_FORM_ID_alter() for language_content_settings_form().
translation_entity_get_config Retrieves the value for the specified setting.
translation_entity_get_config_key Returns the key name used to store the configuration setting.
translation_entity_help Implements hook_help().
translation_entity_language_configuration_element_process Process callback: Expands the language_configuration form element.
translation_entity_language_configuration_element_submit Form submission handler for element added with translation_entity_language_configuration_element_process().
translation_entity_language_configuration_element_validate Form validation handler for element added with translation_entity_language_configuration_element_process().
translation_entity_language_types_info_alter Implements hook_language_type_info_alter().
translation_entity_library_info Implements hook_library_info().
translation_entity_load_translation_metadata Loads translation data into the given entities.
translation_entity_menu Implements hook_menu().
translation_entity_menu_alter Implements hook_menu_alter().
translation_entity_module_implements_alter Implements hook_module_implements_alter().
translation_entity_permission Implements hook_permission().
translation_entity_preprocess_language_content_settings_table Implements hook_preprocess_HOOK() for theme_language_content_settings_table().
translation_entity_save_settings Stores entity translation settings.
translation_entity_set_config Stores the given value for the specified setting.
translation_entity_translate_access Access callback for the translation overview page.
translation_entity_types_translatable Returns all the translatable entity types.
translation_entity_view_access Checks whether the given user can view the specified translation.
_translation_entity_menu_strip_loaders Strips out menu loaders from the given path.