BlockContentTranslationHandler.php
Namespace
Drupal\block_contentFile
- 
              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
| Title | Deprecated | Summary | 
|---|---|---|
| BlockContentTranslationHandler | Defines the translation handler for content blocks. | 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
