You are here

WebformMore.php in Webform 6.x

Same filename in this branch
  1. 6.x src/Element/WebformMore.php
  2. 6.x src/Plugin/WebformElement/WebformMore.php
Same filename and directory in other branches
  1. 8.5 src/Element/WebformMore.php

File

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

namespace Drupal\webform\Element;

use Drupal\Core\Render\Element\RenderElement;

/**
 * Provides a render element for more.
 *
 * @FormElement("webform_more")
 */
class WebformMore extends RenderElement {

  /**
   * {@inheritdoc}
   */
  public function getInfo() {
    return [
      '#theme' => 'webform_element_more',
      '#more' => '',
      '#more_title' => '',
      '#attributes' => [],
    ];
  }

}

Classes

Namesort descending Description
WebformMore Provides a render element for more.