You are here

EntityEmbedDialog.php in Varbase Media 9.0.x

File

modules/entity_browser_generic_embed/src/Form/EntityEmbedDialog.php
View source
<?php

namespace Drupal\entity_browser_generic_embed\Form;

use Drupal\Core\Form\FormStateInterface;
use Drupal\entity_embed\Form\EntityEmbedDialog as BaseEntityEmbedDialog;
use Drupal\media\MediaInterface;

/**
 * Entity Embed Dialog.
 */
class EntityEmbedDialog extends BaseEntityEmbedDialog {

  /**
   * {@inheritdoc}
   */
  public function buildEmbedStep(array $form, FormStateInterface $form_state) {
    $entity = $form_state
      ->get('entity');
    $element = $form_state
      ->get('entity_element');
    $input = $form_state
      ->getUserInput();

    // If we're working with an existing embed, $input['editor_object'] will be
    // set, in which case we don't want to change anything (see ::buildForm()).
    // Otherwise, if the entity being embedded is a media item, see if its type
    // plugin has a preference regarding which display plugin to use.
    if (empty($input['editor_object']) && $entity instanceof MediaInterface) {
      $plugin_definition = $entity
        ->getSource()
        ->getPluginDefinition();
      if (isset($plugin_definition['entity_embed_display'])) {
        $element['data-entity-embed-display'] = $plugin_definition['entity_embed_display'];
        $form_state
          ->set('entity_element', $element);
      }
    }
    $form = parent::buildEmbedStep($form, $form_state);
    return $form;
  }

}

Classes

Namesort descending Description
EntityEmbedDialog Entity Embed Dialog.