EntityViewMode.php

Same filename in this branch
  1. 11.x core/lib/Drupal/Core/Entity/Entity/EntityViewMode.php
Same filename and directory in other branches
  1. 9 core/modules/migrate/src/Plugin/migrate/destination/EntityViewMode.php
  2. 9 core/lib/Drupal/Core/Entity/Entity/EntityViewMode.php
  3. 8.9.x core/modules/migrate/src/Plugin/migrate/destination/EntityViewMode.php
  4. 8.9.x core/lib/Drupal/Core/Entity/Entity/EntityViewMode.php
  5. 10 core/modules/migrate/src/Plugin/migrate/destination/EntityViewMode.php
  6. 10 core/lib/Drupal/Core/Entity/Entity/EntityViewMode.php

Namespace

Drupal\migrate\Plugin\migrate\destination

File

core/modules/migrate/src/Plugin/migrate/destination/EntityViewMode.php

View source
<?php

namespace Drupal\migrate\Plugin\migrate\destination;

use Drupal\migrate\Attribute\MigrateDestination;

/**
 * Provides entity view mode destination plugin.
 *
 * See EntityConfigBase for the available configuration options.
 * @see \Drupal\migrate\Plugin\migrate\destination\EntityConfigBase
 *
 * Example:
 *
 * @code
 * source:
 *   plugin: d7_view_mode
 * process:
 *   mode: view_mode
 *   label: view_mode
 *   targetEntityType: entity_type
 * destination:
 *   plugin: entity:entity_view_mode
 * @endcode
 *
 * This will add the results of the process ("mode", "label" and
 * "targetEntityType") to an "entity_view_mode" entity.
 */
class EntityViewMode extends EntityConfigBase {
    
    /**
     * {@inheritdoc}
     */
    public function getIds() {
        $ids['targetEntityType']['type'] = 'string';
        $ids['mode']['type'] = 'string';
        return $ids;
    }
    
    /**
     * {@inheritdoc}
     */
    public function rollback(array $destination_identifier) {
        $destination_identifier = implode('.', $destination_identifier);
        parent::rollback([
            $destination_identifier,
        ]);
    }

}

Classes

Title Deprecated Summary
EntityViewMode Provides entity view mode destination plugin.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.