You are here

IframeUrlwidthheightWidget.php in Iframe 8

Same filename and directory in other branches
  1. 8.2 src/Plugin/Field/FieldWidget/IframeUrlwidthheightWidget.php

File

src/Plugin/Field/FieldWidget/IframeUrlwidthheightWidget.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_urlwidthheigth' widget.
 *
 * @FieldWidget(
 *  id = "iframe_urlwidthheight",
 *  label = @Translation("URL with width and height"),
 *  field_types = {"iframe"}
 * )
 */
class IframeUrlwidthheightWidget extends IframeWidgetBase {

  /**
   * {@inheritdoc}
   */
  public function formElement(FieldItemListInterface $items, $delta, array $element, array &$form, FormStateInterface $form_state) {
    return parent::formElement($items, $delta, $element, $form, $form_state);
  }

}

Classes

Namesort descending Description
IframeUrlwidthheightWidget Plugin implementation of the 'iframe_urlwidthheigth' widget.