IframeUrlheightWidget.php in Iframe 8
File
src/Plugin/Field/FieldWidget/IframeUrlheightWidget.php
View source
<?php
namespace Drupal\iframe\Plugin\Field\FieldWidget;
use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Form\FormStateInterface;
class IframeUrlheightWidget extends IframeWidgetBase {
public function formElement(FieldItemListInterface $items, $delta, array $element, array &$form, FormStateInterface $form_state) {
$this->allowedAttributes['width'] = 0;
$elements = parent::formElement($items, $delta, $element, $form, $form_state);
$elements['width']['#type'] = 'value';
unset($element['width']['#required']);
return $elements;
}
}