You are here

YamlFormMarkup.php in YAML Form 8

File

src/Element/YamlFormMarkup.php
View source
<?php

namespace Drupal\yamlform\Element;

use Drupal\Core\Render\Element\RenderElement;

/**
 * Provides a render element for form markup.
 *
 * @FormElement("yamlform_markup")
 */
class YamlFormMarkup extends RenderElement {

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

}

Classes

Namesort descending Description
YamlFormMarkup Provides a render element for form markup.