ContentTranslationDefaultsConfigOverride.php in Open Social 10.0.x
Same filename in this branch
- 10.0.x modules/social_features/social_landing_page/src/ContentTranslationDefaultsConfigOverride.php
- 10.0.x modules/social_features/social_page/src/ContentTranslationDefaultsConfigOverride.php
- 10.0.x modules/social_features/social_book/src/ContentTranslationDefaultsConfigOverride.php
- 10.0.x modules/social_features/social_event/src/ContentTranslationDefaultsConfigOverride.php
Same filename and directory in other branches
- 8.9 modules/social_features/social_landing_page/src/ContentTranslationDefaultsConfigOverride.php
- 8.4 modules/social_features/social_landing_page/src/ContentTranslationDefaultsConfigOverride.php
- 8.5 modules/social_features/social_landing_page/src/ContentTranslationDefaultsConfigOverride.php
- 8.6 modules/social_features/social_landing_page/src/ContentTranslationDefaultsConfigOverride.php
- 8.7 modules/social_features/social_landing_page/src/ContentTranslationDefaultsConfigOverride.php
- 8.8 modules/social_features/social_landing_page/src/ContentTranslationDefaultsConfigOverride.php
- 10.3.x modules/social_features/social_landing_page/src/ContentTranslationDefaultsConfigOverride.php
- 10.1.x modules/social_features/social_landing_page/src/ContentTranslationDefaultsConfigOverride.php
- 10.2.x modules/social_features/social_landing_page/src/ContentTranslationDefaultsConfigOverride.php
Namespace
Drupal\social_landing_pageFile
modules/social_features/social_landing_page/src/ContentTranslationDefaultsConfigOverride.phpView source
<?php
namespace Drupal\social_landing_page;
use Drupal\social_core\ContentTranslationConfigOverrideBase;
/**
* Provides content translation defaults for the landing page content type.
*
* @package Drupal\social_landing_page
*/
class ContentTranslationDefaultsConfigOverride extends ContentTranslationConfigOverrideBase {
/**
* {@inheritdoc}
*/
protected function getModule() {
return 'social_landing_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('Landing Pages');
}
/**
* {@inheritdoc}
*/
protected function getTranslationOverrides() {
return [
'language.content_settings.node.landing_page' => [
'third_party_settings' => [
'content_translation' => [
'enabled' => TRUE,
],
],
],
'core.base_field_override.node.landing_page.title' => [
'translatable' => TRUE,
],
'core.base_field_override.node.landing_page.menu_link' => [
'translatable' => TRUE,
],
'core.base_field_override.node.landing_page.path' => [
'translatable' => TRUE,
],
'field.field.node.landing_page.body' => [
'translatable' => TRUE,
],
'field.field.paragraph.block.field_block_title' => [
'translatable' => TRUE,
],
'field.field.paragraph.button.field_button_link_an' => [
'translatable' => TRUE,
],
'field.field.paragraph.button.field_button_link_lu' => [
'translatable' => TRUE,
],
'field.field.paragraph.featured.field_featured_description' => [
'translatable' => TRUE,
],
'field.field.paragraph.featured.field_featured_title' => [
'translatable' => TRUE,
],
'field.field.paragraph.hero.field_hero_image' => [
'third_party_settings' => [
'content_translation' => [
'translation_sync' => [
'file' => 'file',
'alt' => '0',
'title' => '0',
],
],
],
'translatable' => TRUE,
],
'field.field.paragraph.hero.field_hero_subtitle' => [
'translatable' => TRUE,
],
'field.field.paragraph.hero.field_hero_title' => [
'translatable' => TRUE,
],
'field.field.paragraph.introduction.field_introduction_text' => [
'translatable' => TRUE,
],
'field.field.paragraph.introduction.field_introduction_title' => [
'translatable' => TRUE,
],
];
}
}
Classes
Name | Description |
---|---|
ContentTranslationDefaultsConfigOverride | Provides content translation defaults for the landing page content type. |