You are here

BlazyVideoBase.php in Blazy 8

Same filename and directory in other branches
  1. 8.2 src/Dejavu/BlazyVideoBase.php

File

src/Dejavu/BlazyVideoBase.php
View source
<?php

namespace Drupal\blazy\Dejavu;

use Drupal\Core\Field\FormatterBase;
use Drupal\Core\Form\FormStateInterface;

/**
 * Base class for blazy video embed field formatters.
 */
abstract class BlazyVideoBase extends FormatterBase {

  /**
   * {@inheritdoc}
   */
  public static function defaultSettings() {
    return BlazyDefault::extendedSettings();
  }

  /**
   * {@inheritdoc}
   */
  public function settingsForm(array $form, FormStateInterface $form_state) {
    $element = [];
    $definition = $this
      ->getScopedFormElements();
    $definition['_views'] = isset($form['field_api_classes']);
    $this
      ->admin()
      ->buildSettingsForm($element, $definition);
    $element['media_switch']['#options']['media'] = $this
      ->t('Image to iFrame');
    return $element;
  }

  /**
   * Defines the scope for the form elements.
   */
  public function getScopedFormElements() {
    $field = $this->fieldDefinition;
    $entity_type = $field
      ->getTargetEntityTypeId();
    $target_type = $this
      ->getFieldSetting('target_type');
    return [
      'background' => TRUE,
      'breakpoints' => BlazyDefault::getConstantBreakpoints(),
      'current_view_mode' => $this->viewMode,
      'entity_type' => $entity_type,
      'field_name' => $this->fieldDefinition
        ->getName(),
      'image_style_form' => TRUE,
      'media_switch_form' => TRUE,
      'multimedia' => TRUE,
      'plugin_id' => $this
        ->getPluginId(),
      'settings' => $this
        ->getSettings(),
      'target_type' => $target_type,
      'thumb_positions' => TRUE,
      'nav' => TRUE,
    ];
  }

}

Classes

Namesort descending Description
BlazyVideoBase Base class for blazy video embed field formatters.