You are here

WebformTestElement.php in Webform 8.5

File

tests/modules/webform_test_element/src/Element/WebformTestElement.php
View source
<?php

namespace Drupal\webform_test_element\Element;

use Drupal\Core\Render\Element\Textfield;

/**
 * Provides a webform element for testing webform element plugin.
 *
 * @FormElement("webform_test_element")
 */
class WebformTestElement extends Textfield {

  /**
   * {@inheritdoc}
   */
  public function preview() {
    return [];
  }

}

Classes

Namesort descending Description
WebformTestElement Provides a webform element for testing webform element plugin.