Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
<?php
/**
* @file
* Allows entities to be translated into different languages.
*/
use Drupal\Core\Language\Language;
2013-06-11 14:04:34 +00:00
use Drupal\Core\Session\AccountInterface;
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
use Drupal\Core\Entity\EntityFormControllerInterface;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityNG;
/**
* Implements hook_help().
*/
2013-06-25 19:16:20 +00:00
function content_translation_help($path, $arg) {
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
switch ($path) {
2013-06-25 19:16:20 +00:00
case 'admin/help#content_translation':
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
2013-06-25 19:16:20 +00:00
$output .= '<p>' . t('The Content 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">Content Translation</a>.', array('!url' => 'http://drupal.org/documentation/modules/entity_translation')) . '</p>';
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$output .= '<h3>' . t('Uses') . '</h3>';
$output .= '<dl>';
$output .= '<dt>' . t('Enabling translation') . '</dt>';
2013-01-16 13:41:49 +00:00
$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>';
2012-12-29 08:13:54 +00:00
$output .= '<p>' . t('After adding languages, <a href="!url">configure translation</a>.', array('!url' => url('admin/config/regional/content-language'))) . '</p>';
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$output .= '<dt>' . t('Translating content') . '</dt>';
2013-06-14 13:03:28 +00:00
$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>';
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$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>';
2013-06-25 19:16:20 +00:00
$output .= '<dd>' . t('The Content 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-content_translation')))) . '</dd>';
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$output .= '</dl>';
return $output;
2012-12-29 08:13:54 +00:00
case 'admin/config/regional/content-language':
$output = '';
if (!language_multilingual()) {
2013-01-16 13:41:49 +00:00
$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')));
2012-12-29 08:13:54 +00:00
}
return $output;
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
}
}
2013-01-07 11:36:47 +00:00
/**
* Implements hook_module_implements_alter().
*/
2013-06-25 19:16:20 +00:00
function content_translation_module_implements_alter(&$implementations, $hook) {
2013-01-07 11:36:47 +00:00
switch ($hook) {
// Move some of our hook implementations to the end of the list.
case 'menu_alter':
case 'entity_info_alter':
2013-06-25 19:16:20 +00:00
$group = $implementations['content_translation'];
unset($implementations['content_translation']);
$implementations['content_translation'] = $group;
2013-01-07 11:36:47 +00:00
break;
}
}
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
/**
* Implements hook_language_type_info_alter().
*/
2013-06-25 19:16:20 +00:00
function content_translation_language_types_info_alter(array &$language_types) {
2013-01-07 11:36:47 +00:00
// Make content language negotiation configurable by removing its predefined
// configuration.
2013-05-25 20:12:45 +00:00
unset($language_types[Language::TYPE_CONTENT]['fixed']);
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
}
/**
* Implements hook_entity_info_alter().
*/
2013-06-25 19:16:20 +00:00
function content_translation_entity_info_alter(array &$entity_info) {
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
// Provide defaults for translation info.
foreach ($entity_info as $entity_type => &$info) {
2013-03-18 12:40:12 +00:00
if (empty($info['translatable'])) {
continue;
}
2013-06-25 19:16:20 +00:00
if (!isset($info['translation']['content_translation'])) {
$info['translation']['content_translation'] = array();
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
}
// 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.
2013-06-25 19:16:20 +00:00
$info['controllers'] += array('translation' => 'Drupal\content_translation\ContentTranslationController');
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
2013-03-18 12:40:12 +00:00
// 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;
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
}
2013-03-18 12:40:12 +00:00
$path = $info['menu_base_path'];
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
2013-03-18 12:40:12 +00:00
$info += array(
'menu_view_path' => $path,
'menu_edit_path' => "$path/edit",
'menu_path_wildcard' => "%$entity_type",
);
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
2013-03-18 12:40:12 +00:00
$entity_position = count(explode('/', $path)) - 1;
2013-06-25 19:16:20 +00:00
$info['translation']['content_translation'] += array(
'access_callback' => 'content_translation_translate_access',
2013-03-18 12:40:12 +00:00
'access_arguments' => array($entity_position),
);
}
}
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
2013-03-18 12:40:12 +00:00
/**
* Implements hook_entity_bundle_info_alter().
*/
2013-06-25 19:16:20 +00:00
function content_translation_entity_bundle_info_alter(&$bundles) {
2013-03-18 12:40:12 +00:00
foreach ($bundles as $entity_type => &$info) {
foreach ($info as $bundle => &$bundle_info) {
2013-06-25 19:16:20 +00:00
$enabled = content_translation_get_config($entity_type, $bundle, 'enabled');
2013-03-18 12:40:12 +00:00
$bundle_info['translatable'] = !empty($enabled);
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
}
}
}
/**
* Implements hook_menu().
*/
2013-06-25 19:16:20 +00:00
function content_translation_menu() {
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$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.
2013-06-25 19:16:20 +00:00
if (content_translation_enabled($entity_type)) {
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$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'));
2013-06-25 19:16:20 +00:00
$menu_info = array_intersect_key($info['translation']['content_translation'], $keys) + array('file' => 'content_translation.pages.inc');
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$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(
2013-06-14 13:03:28 +00:00
'title' => 'Translate',
2013-06-25 19:16:20 +00:00
'page callback' => 'content_translation_overview',
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
'page arguments' => array($entity_position),
'type' => MENU_LOCAL_TASK,
2012-11-27 04:58:27 +00:00
'context' => MENU_CONTEXT_PAGE | MENU_CONTEXT_INLINE,
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
'weight' => 2,
) + $item;
2013-01-30 06:52:39 +00:00
$items["$path/translations/overview"] = array(
'title' => 'Overview',
'type' => MENU_DEFAULT_LOCAL_TASK,
'weight' => 0,
);
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
// 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);
2013-01-30 06:52:39 +00:00
$items["$path/translations/add/%language/%language"] = array(
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
'title' => 'Add',
2013-06-25 19:16:20 +00:00
'page callback' => 'content_translation_add_page',
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
'page arguments' => $args,
2013-06-25 19:16:20 +00:00
'access callback' => 'content_translation_add_access',
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
'access arguments' => $args,
2013-01-30 06:52:39 +00:00
'type' => MENU_LOCAL_TASK,
'weight' => 1,
) + $item;
// Edit translation callback.
$args = array($entity_position, $language_position);
$items["$path/translations/edit/%language"] = array(
'title' => 'Edit',
2013-06-25 19:16:20 +00:00
'page callback' => 'content_translation_edit_page',
2013-01-30 06:52:39 +00:00
'page arguments' => $args,
2013-06-25 19:16:20 +00:00
'access callback' => 'content_translation_edit_access',
2013-01-30 06:52:39 +00:00
'access arguments' => $args,
'type' => MENU_LOCAL_TASK,
'weight' => 1,
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
) + $item;
// Delete translation callback.
$items["$path/translations/delete/%language"] = array(
'title' => 'Delete',
'page callback' => 'drupal_get_form',
2013-06-25 19:16:20 +00:00
'page arguments' => array('content_translation_delete_confirm', $entity_position, $language_position),
'access callback' => 'content_translation_delete_access',
2013-01-30 06:52:39 +00:00
'access arguments' => $args,
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
) + $item;
}
}
2013-06-25 19:16:20 +00:00
$items['admin/config/regional/content_translation/translatable/%'] = array(
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
'title' => 'Confirm change in translatability.',
'description' => 'Confirm page for changing field translatability.',
'page callback' => 'drupal_get_form',
2013-06-25 19:16:20 +00:00
'page arguments' => array('content_translation_translatable_form', 5),
'access arguments' => array('administer content translation'),
'file' => 'content_translation.admin.inc',
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
);
return $items;
}
/**
* Implements hook_menu_alter().
*/
2013-06-25 19:16:20 +00:00
function content_translation_menu_alter(array &$items) {
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
// Check that the declared menu base paths are actually valid.
foreach (entity_get_info() as $entity_type => $info) {
2013-06-25 19:16:20 +00:00
if (content_translation_enabled($entity_type)) {
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$path = $info['menu_base_path'];
2013-01-07 11:36:47 +00:00
// 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().
2013-02-18 22:17:49 +00:00
if (!isset($items[$path]) && !isset($items["$path/edit"])
2013-06-25 19:16:20 +00:00
&& !isset($items[_content_translation_menu_strip_loaders($path)])) {
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
unset(
$items["$path/translations"],
2013-01-07 11:36:47 +00:00
$items["$path/translations/add/%language/%language"],
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$items["$path/translations/delete/%language"]
);
2013-01-07 11:36:47 +00:00
$t_args = array('@entity_type' => isset($info['label']) ? $info['label'] : $entity_type);
2013-06-25 19:16:20 +00:00
watchdog('content 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);
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
}
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;
}
}
}
}
}
}
2013-01-07 11:36:47 +00:00
/**
* 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 "%".
*/
2013-06-25 19:16:20 +00:00
function _content_translation_menu_strip_loaders($path) {
2013-01-07 11:36:47 +00:00
return preg_replace('|%[^/]+|', '%', $path);
}
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
/**
* Access callback for the translation overview page.
*
* @param \Drupal\Core\Entity\EntityInterface $entity
* The entity whose translation overview should be displayed.
*/
2013-06-25 19:16:20 +00:00
function content_translation_translate_access(EntityInterface $entity) {
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$entity_type = $entity->entityType();
2013-03-18 12:40:12 +00:00
return empty($entity->language()->locked) && language_multilingual() && $entity->isTranslatable() &&
2013-06-25 19:16:20 +00:00
(user_access('create content translations') || user_access('update content translations') || user_access('delete content translations'));
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
}
2013-02-12 12:05:19 +00:00
/**
* 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.
2013-06-11 14:04:34 +00:00
* @param \Drupal\Core\Session\AccountInterface $account
2013-02-12 12:05:19 +00:00
* (optional) The account for which view access should be checked. Defaults to
* the current user.
*/
2013-06-25 19:16:20 +00:00
function content_translation_view_access(EntityInterface $entity, $langcode, AccountInterface $account = NULL) {
2013-02-12 12:05:19 +00:00
$entity_type = $entity->entityType();
return !empty($entity->translation[$langcode]['status']) || user_access('translate any entity', $account) || user_access("translate $entity_type entities", $account);
}
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
/**
* Access callback for the translation addition page.
*
* @param \Drupal\Core\Entity\EntityInterface $entity
* The entity being translated.
* @param \Drupal\Core\Language\Language $source
2013-01-30 06:52:39 +00:00
* (optional) The language of the values being translated. Defaults to the
* entity language.
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
* @param \Drupal\Core\Language\Language $target
2013-01-30 06:52:39 +00:00
* (optional) The language of the translated values. Defaults to the current
* content language.
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
*/
2013-06-25 19:16:20 +00:00
function content_translation_add_access(EntityInterface $entity, Language $source = NULL, Language $target = NULL) {
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$source = !empty($source) ? $source : $entity->language();
2013-05-25 20:12:45 +00:00
$target = !empty($target) ? $target : language(Language::TYPE_CONTENT);
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$translations = $entity->getTranslationLanguages();
$languages = language_list();
2013-06-25 19:16:20 +00:00
return $source->langcode != $target->langcode && isset($languages[$source->langcode]) && isset($languages[$target->langcode]) && !isset($translations[$target->langcode]) && content_translation_access($entity, 'create');
2013-01-30 06:52:39 +00:00
}
/**
* 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.
*/
2013-06-25 19:16:20 +00:00
function content_translation_edit_access(EntityInterface $entity, Language $language = NULL) {
2013-05-25 20:12:45 +00:00
$language = !empty($language) ? $language : language(Language::TYPE_CONTENT);
2013-01-30 06:52:39 +00:00
$translations = $entity->getTranslationLanguages();
$languages = language_list();
2013-06-25 19:16:20 +00:00
return isset($languages[$language->langcode]) && $language->langcode != $entity->language()->langcode && isset($translations[$language->langcode]) && content_translation_access($entity, 'update');
2013-01-30 06:52:39 +00:00
}
/**
* 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.
*/
2013-06-25 19:16:20 +00:00
function content_translation_delete_access(EntityInterface $entity, Language $language = NULL) {
2013-05-25 20:12:45 +00:00
$language = !empty($language) ? $language : language(Language::TYPE_CONTENT);
2013-01-30 06:52:39 +00:00
$translations = $entity->getTranslationLanguages();
$languages = language_list();
2013-06-25 19:16:20 +00:00
return isset($languages[$language->langcode]) && $language->langcode != $entity->language()->langcode && isset($translations[$language->langcode]) && content_translation_access($entity, 'delete');
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
}
2013-01-02 17:28:23 +00:00
/**
* Implements hook_library_info().
*/
2013-06-25 19:16:20 +00:00
function content_translation_library_info() {
$path = drupal_get_path('module', 'content_translation');
$libraries['drupal.content_translation.admin'] = array(
'title' => 'Content translation UI',
2013-01-02 17:28:23 +00:00
'version' => VERSION,
'js' => array(
2013-06-25 19:16:20 +00:00
$path . '/content_translation.admin.js' => array(),
2013-01-02 17:28:23 +00:00
),
'css' => array(
2013-06-25 19:16:20 +00:00
$path . '/css/content_translation.admin.css' => array(),
2013-01-02 17:28:23 +00:00
),
'dependencies' => array(
array('system', 'jquery'),
array('system', 'drupal'),
array('system', 'jquery.once'),
),
);
return $libraries;
}
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
/**
2013-01-07 11:36:47 +00:00
* Returns the key name used to store the configuration setting.
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
*
2013-01-07 11:36:47 +00:00
* Based on the entity type and bundle, the keys used to store configuration
* will have a common root name.
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
*
* @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
2013-01-07 11:36:47 +00:00
* The key name of the configuration setting.
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
*
* @todo Generalize this logic so that it is available to any module needing
* per-bundle configuration.
*/
2013-06-25 19:16:20 +00:00
function content_translation_get_config_key($entity_type, $bundle, $setting) {
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$entity_type = preg_replace('/[^0-9a-zA-Z_]/', "_", $entity_type);
$bundle = preg_replace('/[^0-9a-zA-Z_]/', "_", $bundle);
2013-06-25 19:16:20 +00:00
return $entity_type . '.' . $bundle . '.content_translation.' . $setting;
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
}
/**
* 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.
*/
2013-06-25 19:16:20 +00:00
function content_translation_get_config($entity_type, $bundle, $setting) {
$key = content_translation_get_config_key($entity_type, $bundle, $setting);
return config('content_translation.settings')->get($key);
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
}
/**
* 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.
*/
2013-06-25 19:16:20 +00:00
function content_translation_set_config($entity_type, $bundle, $setting, $value) {
$key = content_translation_get_config_key($entity_type, $bundle, $setting);
return config('content_translation.settings')->set($key, $value)->save();
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
}
/**
* 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.
*/
2013-06-25 19:16:20 +00:00
function content_translation_enabled($entity_type, $bundle = NULL) {
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$enabled = FALSE;
2013-03-18 12:40:12 +00:00
$info = entity_get_info($entity_type);
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
2013-03-18 12:40:12 +00:00
if (!empty($info['translatable'])) {
$bundles = !empty($bundle) ? array($bundle) : array_keys(entity_get_bundles($entity_type));
foreach ($bundles as $bundle) {
2013-06-25 19:16:20 +00:00
if (content_translation_get_config($entity_type, $bundle, 'enabled')) {
2013-03-18 12:40:12 +00:00
$enabled = TRUE;
break;
}
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
}
}
2013-03-18 12:40:12 +00:00
return $enabled;
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
}
2013-01-07 11:36:47 +00:00
/**
* Returns all the translatable entity types.
*
* @return array
* An array of entity types keyed by entity type.
*/
2013-06-25 19:16:20 +00:00
function content_translation_types_translatable() {
2013-01-07 11:36:47 +00:00
$entity_types = &drupal_static(__FUNCTION__, array());
foreach (entity_get_info() as $entity_type => $info) {
2013-06-25 19:16:20 +00:00
if (content_translation_enabled($entity_type)) {
2013-01-07 11:36:47 +00:00
// 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.
2013-06-25 19:16:20 +00:00
$path = _content_translation_menu_strip_loaders($info['menu_base_path']);
2013-01-07 11:36:47 +00:00
if (!empty($items[$path]) && !empty($items[$path . '/translations'])) {
$entity_types[$entity_type] = $entity_type;
}
}
}
return $entity_types;
}
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
/**
2013-06-25 19:16:20 +00:00
* Content translation controller factory.
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
*
* @param string $entity_type
* The type of the entity being translated.
*
2013-06-25 19:16:20 +00:00
* @return \Drupal\content_translation\ContentTranslationControllerInterface
* An instance of the content translation controller interface.
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
*/
2013-06-25 19:16:20 +00:00
function content_translation_controller($entity_type) {
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$entity_info = entity_get_info($entity_type);
// @todo Throw an exception if the key is missing.
2013-04-23 07:38:30 +00:00
return new $entity_info['controllers']['translation']($entity_type, $entity_info);
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
}
/**
* 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;
2013-06-25 19:16:20 +00:00
* An instance of the content translation form interface or FALSE if not an
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
* entity form.
*/
2013-06-25 19:16:20 +00:00
function content_translation_form_controller(array $form_state) {
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
return isset($form_state['controller']) && $form_state['controller'] instanceof EntityFormControllerInterface ? $form_state['controller'] : FALSE;
}
/**
2013-06-25 19:16:20 +00:00
* Checks whether a content translation is accessible.
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
*
* @param \Drupal\Core\Entity\EntityInterface $entity
* The entity to be accessed.
2013-01-30 06:52:39 +00:00
* @param $op
* The operation to be performed on the translation. Possible values are:
* - "view"
* - "update"
* - "delete"
* - "create"
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
*
* @return
* TRUE if the current user is allowed to view the translation.
*/
2013-06-25 19:16:20 +00:00
function content_translation_access(EntityInterface $entity, $op) {
return content_translation_controller($entity->entityType())->getTranslationAccess($entity, $op) ;
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
}
/**
* Implements hook_permission().
*/
2013-06-25 19:16:20 +00:00
function content_translation_permission() {
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$permission = array(
2013-06-25 19:16:20 +00:00
'administer content translation' => array(
2013-01-30 06:52:39 +00:00
'title' => t('Administer translation settings'),
2012-12-29 08:13:54 +00:00
'description' => t('Configure translatability of entities and fields.'),
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
),
2013-06-25 19:16:20 +00:00
'create content translations' => array(
2013-01-30 06:52:39 +00:00
'title' => t('Create translations'),
),
2013-06-25 19:16:20 +00:00
'update content translations' => array(
2013-01-30 06:52:39 +00:00
'title' => t('Edit translations'),
),
2013-06-25 19:16:20 +00:00
'delete content translations' => array(
2013-01-30 06:52:39 +00:00
'title' => t('Delete translations'),
),
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
'translate any entity' => array(
'title' => t('Translate any entity'),
),
);
2013-01-30 06:52:39 +00:00
// Create a translate permission for each enabled entity type and (optionally)
// bundle.
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
foreach (entity_get_info() as $entity_type => $info) {
2013-01-30 06:52:39 +00:00
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) {
2013-06-25 19:16:20 +00:00
if (content_translation_enabled($entity_type, $bundle)) {
2013-01-30 21:41:03 +00:00
$t_args['%bundle_label'] = isset($bundle_info['label']) ? $bundle_info['label'] : $bundle;
2013-01-30 06:52:39 +00:00
$permission["translate $bundle $entity_type"] = array(
2013-01-30 21:41:03 +00:00
'title' => t('Translate %bundle_label @entity_label', $t_args),
2013-01-30 06:52:39 +00:00
);
}
}
break;
case 'entity_type':
2013-06-25 19:16:20 +00:00
if (content_translation_enabled($entity_type)) {
2013-01-30 06:52:39 +00:00
$permission["translate $entity_type"] = array(
'title' => t('Translate @entity_label', $t_args),
);
}
break;
}
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
}
}
return $permission;
}
/**
* Implements hook_form_alter().
*/
2013-06-25 19:16:20 +00:00
function content_translation_form_alter(array &$form, array &$form_state) {
if (($form_controller = content_translation_form_controller($form_state)) && ($entity = $form_controller->getEntity()) && !$entity->isNew() && $entity->isTranslatable()) {
$controller = content_translation_controller($entity->entityType());
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$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)) {
2013-04-14 19:12:41 +00:00
$entity = $entity->getNGEntity();
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
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']);
}
}
}
}
}
2013-02-12 12:05:19 +00:00
/**
* Implements hook_field_language_alter().
*
* Performs language fallback for unaccessible translations.
*/
2013-06-25 19:16:20 +00:00
function content_translation_field_language_alter(&$display_language, $context) {
2013-02-12 12:05:19 +00:00
$entity = $context['entity'];
$entity_type = $entity->entityType();
2013-06-25 19:16:20 +00:00
if (isset($entity->translation[$context['langcode']]) && $entity->isTranslatable() && !content_translation_view_access($entity, $context['langcode'])) {
2013-02-12 12:05:19 +00:00
$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) {
2013-06-25 19:16:20 +00:00
if ($langcode == $context['langcode'] || !content_translation_view_access($entity, $langcode)) {
2013-02-12 12:05:19 +00:00
// Unset unaccessible field translations: if the field is untranslatable
2013-05-25 20:12:45 +00:00
// unsetting a language different from Language::LANGCODE_NOT_SPECIFIED has no
2013-02-12 12:05:19 +00:00
// effect.
foreach ($instances as $instance) {
// @todo BC entities have the same value accessibile both with the
2013-05-25 20:12:45 +00:00
// entity language and with Language::LANGCODE_DEFAULT. We need need to unset
2013-02-12 12:05:19 +00:00
// both until we remove the BC layer.
if ($langcode == $entity_langcode) {
2013-05-25 20:12:45 +00:00
unset($entity->{$instance['field_name']}[Language::LANGCODE_DEFAULT]);
2013-02-12 12:05:19 +00:00
}
unset($entity->{$instance['field_name']}[$langcode]);
}
}
}
// Find the new fallback values.
field_language_fallback($display_language, $entity, $context['langcode']);
}
}
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
/**
* Implements hook_entity_load().
*/
2013-06-25 19:16:20 +00:00
function content_translation_entity_load(array $entities, $entity_type) {
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$enabled_entities = array();
2013-06-25 19:16:20 +00:00
if (content_translation_enabled($entity_type)) {
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
foreach ($entities as $entity) {
2013-03-18 12:40:12 +00:00
if ($entity->isTranslatable()) {
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$enabled_entities[$entity->id()] = $entity;
}
}
}
if (!empty($enabled_entities)) {
2013-06-25 19:16:20 +00:00
content_translation_load_translation_metadata($enabled_entities, $entity_type);
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
}
}
/**
* 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.
*/
2013-06-25 19:16:20 +00:00
function content_translation_load_translation_metadata(array $entities, $entity_type) {
$query = 'SELECT * FROM {content_translation} te WHERE te.entity_type = :entity_type AND te.entity_id IN (:entity_id)';
2013-01-07 11:36:47 +00:00
$result = db_query($query, array(':entity_type' => $entity_type, ':entity_id' => array_keys($entities)));
2013-02-12 12:05:19 +00:00
$exclude = array('entity_type', 'entity_id', 'langcode');
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
foreach ($result as $record) {
$entity = $entities[$record->entity_id];
// @todo Declare these as entity (translation?) properties.
2013-02-12 12:05:19 +00:00
foreach ($record as $field_name => $value) {
if (!in_array($field_name, $exclude)) {
$entity->translation[$record->langcode][$field_name] = $value;
}
}
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
}
}
/**
* Implements hook_entity_insert().
*/
2013-06-25 19:16:20 +00:00
function content_translation_entity_insert(EntityInterface $entity) {
2012-11-07 10:35:40 +00:00
// Only do something if translation support for the given entity is enabled.
2013-03-18 12:40:12 +00:00
if (!$entity->isTranslatable()) {
2012-11-07 10:35:40 +00:00
return;
}
2013-02-12 12:05:19 +00:00
$fields = array('entity_type', 'entity_id', 'langcode', 'source', 'outdated', 'uid', 'status', 'created', 'changed');
2013-06-25 19:16:20 +00:00
$query = db_insert('content_translation')->fields($fields);
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
foreach ($entity->getTranslationLanguages() as $langcode => $language) {
2013-02-12 12:05:19 +00:00
$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);
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
}
$query->execute();
}
/**
* Implements hook_entity_delete().
*/
2013-06-25 19:16:20 +00:00
function content_translation_entity_delete(EntityInterface $entity) {
2012-11-07 10:35:40 +00:00
// Only do something if translation support for the given entity is enabled.
2013-03-18 12:40:12 +00:00
if (!$entity->isTranslatable()) {
2012-11-07 10:35:40 +00:00
return;
}
2013-06-25 19:16:20 +00:00
db_delete('content_translation')
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
->condition('entity_type', $entity->entityType())
->condition('entity_id', $entity->id())
->execute();
}
/**
* Implements hook_entity_update().
*/
2013-06-25 19:16:20 +00:00
function content_translation_entity_update(EntityInterface $entity) {
2012-11-07 10:35:40 +00:00
// Only do something if translation support for the given entity is enabled.
2013-03-18 12:40:12 +00:00
if (!$entity->isTranslatable()) {
2012-11-07 10:35:40 +00:00
return;
}
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
// Delete and create to ensure no stale value remains behind.
2013-06-25 19:16:20 +00:00
content_translation_entity_delete($entity);
content_translation_entity_insert($entity);
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
}
/**
* Implements hook_field_extra_fields().
*/
2013-06-25 19:16:20 +00:00
function content_translation_field_extra_fields() {
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$extra = array();
foreach (entity_get_info() as $entity_type => $info) {
2013-01-23 17:46:47 +00:00
foreach (entity_get_bundles($entity_type) as $bundle => $bundle_info) {
2013-06-25 19:16:20 +00:00
if (content_translation_enabled($entity_type, $bundle)) {
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$extra[$entity_type][$bundle]['form']['translation'] = array(
'label' => t('Translation'),
'description' => t('Translation settings'),
'weight' => 10,
);
}
}
}
return $extra;
}
/**
2013-05-04 00:01:03 +00:00
* Implements hook_form_FORM_ID_alter() for 'field_ui_field_edit_form'.
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
*/
2013-06-25 19:16:20 +00:00
function content_translation_form_field_ui_field_edit_form_alter(array &$form, array &$form_state, $form_id) {
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$field = $form['#field'];
$field_name = $field['field_name'];
$translatable = $field['translatable'];
2013-01-07 11:36:47 +00:00
$label = t('Field translation');
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
2013-06-17 00:22:30 +00:00
if ($field->hasData()) {
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$form['field']['translatable'] = array(
2013-01-07 11:36:47 +00:00
'#type' => 'item',
'#title' => $label,
'#attributes' => array('class' => 'translatable'),
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
'link' => array(
'#type' => 'link',
2013-01-07 11:36:47 +00:00
'#prefix' => t('This field has data in existing content.') . ' ',
'#title' => !$translatable ? t('Enable translation') : t('Disable translation'),
2013-06-25 19:16:20 +00:00
'#href' => 'admin/config/regional/content_translation/translatable/' . $field_name,
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
'#options' => array('query' => drupal_get_destination()),
2013-06-25 19:16:20 +00:00
'#access' => user_access('administer content translation'),
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
),
);
}
else {
$form['field']['translatable'] = array(
'#type' => 'checkbox',
2013-01-07 11:36:47 +00:00
'#title' => t('Users may translate this field.'),
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
'#default_value' => $translatable,
);
}
2013-01-07 11:36:47 +00:00
$form['field']['translatable']['#weight'] = 20;
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
}
2013-02-19 06:57:04 +00:00
/**
2013-05-04 00:01:03 +00:00
* Implements hook_form_FORM_ID_alter() for 'field_ui_field_instance_edit_form'.
2013-02-19 06:57:04 +00:00
*/
2013-06-25 19:16:20 +00:00
function content_translation_form_field_ui_field_instance_edit_form_alter(array &$form, array &$form_state, $form_id) {
2013-02-19 06:57:04 +00:00
if ($form['#field']['translatable']) {
2013-06-25 19:16:20 +00:00
module_load_include('inc', 'content_translation', 'content_translation.admin');
$element = content_translation_field_sync_widget($form['#field'], $form['#instance']);
2013-02-19 06:57:04 +00:00
if ($element) {
$form['instance']['settings']['translation_sync'] = $element;
}
}
}
/**
* Implements hook_field_info_alter().
*/
2013-06-25 19:16:20 +00:00
function content_translation_field_info_alter(&$info) {
2013-02-19 06:57:04 +00:00
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);
}
}
/**
2013-06-25 10:27:47 +00:00
* Implements hook_entity_presave().
2013-02-19 06:57:04 +00:00
*/
2013-06-25 19:16:20 +00:00
function content_translation_entity_presave(EntityInterface $entity) {
2013-06-25 10:27:47 +00:00
$entity_info = $entity->entityInfo();
if ($entity->isTranslatable() && !empty($entity_info['fieldable'])) {
2013-06-28 08:01:34 +00:00
$attributes = Drupal::request()->attributes;
2013-06-25 19:16:20 +00:00
Drupal::service('content_translation.synchronizer')->synchronizeFields($entity, $attributes->get('working_langcode'), $attributes->get('source_langcode'));
2013-02-19 06:57:04 +00:00
}
}
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
/**
* Implements hook_element_info_alter().
*/
2013-06-25 19:16:20 +00:00
function content_translation_element_info_alter(&$type) {
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
if (isset($type['language_configuration'])) {
2013-06-25 19:16:20 +00:00
$type['language_configuration']['#process'][] = 'content_translation_language_configuration_element_process';
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
}
}
2013-02-19 06:57:04 +00:00
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
/**
2013-06-25 19:16:20 +00:00
* Returns a widget to enable content translation per entity bundle.
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
*
* 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.
*/
2013-06-25 19:16:20 +00:00
function content_translation_enable_widget($entity_type, $bundle, array &$form, array &$form_state) {
$key = $form_state['content_translation']['key'];
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
if (!isset($form_state['language'][$key])) {
$form_state['language'][$key] = array();
}
$form_state['language'][$key] += array('entity_type' => $entity_type, 'bundle' => $bundle);
2013-06-25 19:16:20 +00:00
$element = content_translation_language_configuration_element_process(array('#name' => $key), $form_state, $form);
unset($element['content_translation']['#element_validate']);
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
return $element;
}
/**
* Process callback: Expands the language_configuration form element.
*
* @param array $element
* Form API element.
*
* @return
* Processed language configuration element.
*/
2013-06-25 19:16:20 +00:00
function content_translation_language_configuration_element_process(array $element, array &$form_state, array &$form) {
if (empty($element['#content_translation_skip_alter']) && user_access('administer content translation')) {
$form_state['content_translation']['key'] = $element['#name'];
2012-12-29 08:13:54 +00:00
$context = $form_state['language'][$element['#name']];
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
2013-06-25 19:16:20 +00:00
$element['content_translation'] = array(
2012-12-29 08:13:54 +00:00
'#type' => 'checkbox',
'#title' => t('Enable translation'),
2013-06-25 19:16:20 +00:00
'#default_value' => content_translation_enabled($context['entity_type'], $context['bundle']),
'#element_validate' => array('content_translation_language_configuration_element_validate'),
2012-12-29 08:13:54 +00:00
'#prefix' => '<label>' . t('Translation') . '</label>',
);
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
2013-06-25 19:16:20 +00:00
$form['#submit'][] = 'content_translation_language_configuration_element_submit';
2012-12-29 08:13:54 +00:00
}
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
return $element;
}
/**
2013-06-25 19:16:20 +00:00
* Form validation handler for element added with content_translation_language_configuration_element_process().
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
*
* 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.
*
2013-06-25 19:16:20 +00:00
* @see content_translation_language_configuration_element_submit()
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
*/
2013-06-25 19:16:20 +00:00
function content_translation_language_configuration_element_validate($element, array &$form_state, array $form) {
$key = $form_state['content_translation']['key'];
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$values = $form_state['values'][$key];
2013-06-25 19:16:20 +00:00
if (language_is_locked($values['langcode']) && !$values['language_show'] && $values['content_translation']) {
2013-05-25 20:12:45 +00:00
foreach (language_list(Language::STATE_LOCKED) as $language) {
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$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.
2013-02-09 03:24:06 +00:00
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']])));
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
}
}
/**
2013-06-25 19:16:20 +00:00
* Form submission handler for element added with content_translation_language_configuration_element_process().
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
*
2013-06-25 19:16:20 +00:00
* Stores the content translation settings.
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
*
2013-06-25 19:16:20 +00:00
* @see content_translation_language_configuration_element_validate()
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
*/
2013-06-25 19:16:20 +00:00
function content_translation_language_configuration_element_submit(array $form, array &$form_state) {
$key = $form_state['content_translation']['key'];
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
$context = $form_state['language'][$key];
2013-06-25 19:16:20 +00:00
$enabled = $form_state['values'][$key]['content_translation'];
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
2013-06-25 19:16:20 +00:00
if (content_translation_enabled($context['entity_type'], $context['bundle']) != $enabled) {
content_translation_set_config($context['entity_type'], $context['bundle'], 'enabled', $enabled);
Issue #1188388 by plach, peximo, YesCT | Gábor Hojtsy, fago, webchick, Bojhan, podarok, cosmicdreams, Berdir, aspilicious, bforchhammer, penyaskito: Added Entity translation UI in core.
2012-11-04 02:38:49 +00:00
entity_info_cache_clear();
menu_router_rebuild();
}
}
2012-12-29 08:13:54 +00:00
/**
* Implements hook_form_FORM_ID_alter() for language_content_settings_form().
*/
2013-06-25 19:16:20 +00:00
function content_translation_form_language_content_settings_form_alter(array &$form, array &$form_state) {
module_load_include('inc', 'content_translation', 'content_translation.admin');
_content_translation_form_language_content_settings_form_alter($form, $form_state);
2012-12-29 08:13:54 +00:00
}
2013-02-19 06:57:04 +00:00
/**
* Implements hook_preprocess_HOOK() for theme_language_content_settings_table().
*/
2013-06-25 19:16:20 +00:00
function content_translation_preprocess_language_content_settings_table(&$variables) {
module_load_include('inc', 'content_translation', 'content_translation.admin');
_content_translation_preprocess_language_content_settings_table($variables);
2013-02-19 06:57:04 +00:00
}
2012-12-29 08:13:54 +00:00
/**
2013-06-25 19:16:20 +00:00
* Stores content translation settings.
2012-12-29 08:13:54 +00:00
*
* @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.
2013-02-19 06:57:04 +00:00
* - columns: An associative array of translation synchronization settings
* keyed by field names.
2012-12-29 08:13:54 +00:00
*/
2013-06-25 19:16:20 +00:00
function content_translation_save_settings($settings) {
2012-12-29 08:13:54 +00:00
foreach ($settings as $entity_type => $entity_settings) {
foreach ($entity_settings as $bundle => $bundle_settings) {
2013-05-06 10:31:46 +00:00
// 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.
2013-06-25 19:16:20 +00:00
content_translation_set_config($entity_type, $bundle, 'enabled', $bundle_settings['translatable']);
2013-05-06 10:31:46 +00:00
// 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;
}
// If the field does not have translatable enabled we need to reset
// the sync settings to their defaults.
else {
unset($instance['settings']['translation_sync']);
}
2013-06-18 10:43:19 +00:00
$instance->save();
2013-02-19 06:57:04 +00:00
}
}
}
2012-12-29 08:13:54 +00:00
}
}
2013-02-19 06:57:04 +00:00
2012-12-29 08:13:54 +00:00
// Ensure entity and menu router information are correctly rebuilt.
entity_info_cache_clear();
menu_router_rebuild();
}