ContentTranslationDefaultsConfigOverride.php in Open Social 10.3.x
Same filename in this branch
- 10.3.x modules/social_features/social_featured_content/src/ContentTranslationDefaultsConfigOverride.php
- 10.3.x modules/social_features/social_content_block/src/ContentTranslationDefaultsConfigOverride.php
- 10.3.x modules/social_features/social_landing_page/src/ContentTranslationDefaultsConfigOverride.php
- 10.3.x modules/social_features/social_page/src/ContentTranslationDefaultsConfigOverride.php
- 10.3.x modules/social_features/social_book/src/ContentTranslationDefaultsConfigOverride.php
- 10.3.x modules/social_features/social_topic/src/ContentTranslationDefaultsConfigOverride.php
- 10.3.x modules/social_features/social_event/src/ContentTranslationDefaultsConfigOverride.php
- 10.3.x modules/social_features/social_featured_items/src/ContentTranslationDefaultsConfigOverride.php
- 10.3.x modules/social_features/social_core/src/ContentTranslationDefaultsConfigOverride.php
- 10.3.x modules/social_features/social_follow_taxonomy/modules/social_follow_landing_page/src/ContentTranslationDefaultsConfigOverride.php
- 10.3.x modules/social_features/social_group/modules/social_group_flexible_group/src/ContentTranslationDefaultsConfigOverride.php
Same filename and directory in other branches
- 8.9 modules/social_features/social_page/src/ContentTranslationDefaultsConfigOverride.php
- 8.4 modules/social_features/social_page/src/ContentTranslationDefaultsConfigOverride.php
- 8.5 modules/social_features/social_page/src/ContentTranslationDefaultsConfigOverride.php
- 8.6 modules/social_features/social_page/src/ContentTranslationDefaultsConfigOverride.php
- 8.7 modules/social_features/social_page/src/ContentTranslationDefaultsConfigOverride.php
- 8.8 modules/social_features/social_page/src/ContentTranslationDefaultsConfigOverride.php
- 10.0.x modules/social_features/social_page/src/ContentTranslationDefaultsConfigOverride.php
- 10.1.x modules/social_features/social_page/src/ContentTranslationDefaultsConfigOverride.php
- 10.2.x modules/social_features/social_page/src/ContentTranslationDefaultsConfigOverride.php
Namespace
Drupal\social_pageFile
modules/social_features/social_page/src/ContentTranslationDefaultsConfigOverride.phpView source
<?php
namespace Drupal\social_page;
use Drupal\social_core\ContentTranslationConfigOverrideBase;
/**
* Provides content translation defaults for the basic page content type.
*
* @package Drupal\social_page
*/
class ContentTranslationDefaultsConfigOverride extends ContentTranslationConfigOverrideBase {
/**
* {@inheritdoc}
*/
protected function getModule() {
return 'social_page';
}
/**
* {@inheritdoc}
*/
protected function getDisplayName() {
// We can't use dependency injection here because it causes a circular
// dependency for the configuration override.
return \Drupal::translation()
->translate('Pages');
}
/**
* {@inheritdoc}
*/
protected function getTranslationOverrides() {
return [
'language.content_settings.node.page' => [
'third_party_settings' => [
'content_translation' => [
'enabled' => TRUE,
],
],
],
'core.base_field_override.node.page.title' => [
'translatable' => TRUE,
],
'core.base_field_override.node.page.menu_link' => [
'translatable' => TRUE,
],
'core.base_field_override.node.page.path' => [
'translatable' => TRUE,
],
'field.field.node.page.body' => [
'translatable' => TRUE,
],
'field.field.node.page.field_page_image' => [
'third_party_settings' => [
'content_translation' => [
'translation_sync' => [
'file' => 'file',
'alt' => '0',
'title' => '0',
],
],
],
'translatable' => TRUE,
],
];
}
}
Classes
Name | Description |
---|---|
ContentTranslationDefaultsConfigOverride | Provides content translation defaults for the basic page content type. |