Same filename and directory in other branches
  1. 8.9.x core/modules/block_content/src/BlockContentTranslationHandler.php
  2. 9 core/modules/block_content/src/BlockContentTranslationHandler.php

Namespace

Drupal\block_content

File

core/modules/block_content/src/BlockContentTranslationHandler.php
View source
<?php

namespace Drupal\block_content;

use Drupal\block_content\Entity\BlockContentType;
use Drupal\Core\Entity\EntityInterface;
use Drupal\content_translation\ContentTranslationHandler;

/**
 * Defines the translation handler for content blocks.
 */
class BlockContentTranslationHandler extends ContentTranslationHandler {

  /**
   * {@inheritdoc}
   */
  protected function entityFormTitle(EntityInterface $entity) {
    $block_type = BlockContentType::load($entity
      ->bundle());
    return $this
      ->t('<em>Edit @type</em> @title', [
      '@type' => $block_type
        ->label(),
      '@title' => $entity
        ->label(),
    ]);
  }

}

Classes

Namesort descending Description
BlockContentTranslationHandler Defines the translation handler for content blocks.