DummyAjaxWidget.php

Same filename and directory in other branches
  1. 9 core/modules/image/tests/modules/image_module_test/src/Plugin/Field/FieldWidget/DummyAjaxWidget.php
  2. 8.9.x core/modules/image/tests/modules/image_module_test/src/Plugin/Field/FieldWidget/DummyAjaxWidget.php
  3. 10 core/modules/image/tests/modules/image_module_test/src/Plugin/Field/FieldWidget/DummyAjaxWidget.php

Namespace

Drupal\image_module_test\Plugin\Field\FieldWidget

File

core/modules/image/tests/modules/image_module_test/src/Plugin/Field/FieldWidget/DummyAjaxWidget.php

View source
<?php

namespace Drupal\image_module_test\Plugin\Field\FieldWidget;

use Drupal\Core\Ajax\AjaxResponse;
use Drupal\Core\Field\Attribute\FieldWidget;
use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Field\WidgetBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\StringTranslation\TranslatableMarkup;

/**
 * Default widget for Dummy AJAX test.
 */
class DummyAjaxWidget extends WidgetBase {
    
    /**
     * {@inheritdoc}
     */
    public function formElement(FieldItemListInterface $items, $delta, array $element, array &$form, FormStateInterface $form_state) {
        $element['select_widget'] = [
            '#type' => 'select',
            '#title' => $this->t('Dummy select'),
            '#options' => [
                'pow' => 'Pow!',
                'bam' => 'Bam!',
            ],
            '#required' => TRUE,
            '#ajax' => [
                'callback' => static::class . '::dummyAjaxCallback',
                'effect' => 'fade',
            ],
        ];
        return $element;
    }
    
    /**
     * Ajax callback for Dummy AJAX test.
     *
     * @param array $form
     *   The build form.
     * @param \Drupal\Core\Form\FormStateInterface $form_state
     *   The form state.
     *
     * @return \Drupal\Core\Ajax\AjaxResponse
     *   Ajax response.
     */
    public static function dummyAjaxCallback(array &$form, FormStateInterface $form_state) {
        return new AjaxResponse();
    }

}

Classes

Title Deprecated Summary
DummyAjaxWidget Default widget for Dummy AJAX test.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.