You are here

IframeUrlWidget.php in Iframe 8.2

Same filename and directory in other branches
  1. 8 src/Plugin/Field/FieldWidget/IframeUrlWidget.php

File

src/Plugin/Field/FieldWidget/IframeUrlWidget.php
View source
<?php

namespace Drupal\iframe\Plugin\Field\FieldWidget;

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

/**
 * Plugin implementation of the 'Iframe' widget with URL.
 *
 * @FieldWidget(
 *   id = "iframe_url",
 *   label = @Translation("URL only"),
 *   field_types = {"iframe"}
 * )
 */
class IframeUrlWidget extends IframeWidgetBase {

  /**
   * {@inheritdoc}
   */
  public function formElement(FieldItemListInterface $items, $delta, array $element, array &$form, FormStateInterface $form_state) {
    $this->allowedAttributes['width'] = 0;
    $this->allowedAttributes['height'] = 0;
    $elements = parent::formElement($items, $delta, $element, $form, $form_state);

    // Dont show, only save default value.
    $elements['width']['#type'] = 'value';

    // Dont show, only save default value.
    $elements['height']['#type'] = 'value';
    unset($element['width']['#required']);
    unset($element['height']['#required']);
    return $elements;
  }

}

Classes

Namesort descending Description
IframeUrlWidget Plugin implementation of the 'Iframe' widget with URL.