You are here

ContentTranslationDefaultsConfigOverride.php in Open Social 10.0.x

Namespace

Drupal\social_page

File

modules/social_features/social_page/src/ContentTranslationDefaultsConfigOverride.php
View 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

Namesort descending Description
ContentTranslationDefaultsConfigOverride Provides content translation defaults for the basic page content type.