You are here

WebformHelp.php in Webform 6.x

Same filename and directory in other branches
  1. 8.5 src/Element/WebformHelp.php

File

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

namespace Drupal\webform\Element;

use Drupal\Core\Render\Element\RenderElement;

/**
 * Provides a render element for help (tooltip).
 *
 * @FormElement("webform_help")
 */
class WebformHelp extends RenderElement {

  /**
   * {@inheritdoc}
   */
  public function getInfo() {
    return [
      '#help' => '',
      '#help_title' => '',
      '#theme' => 'webform_element_help',
      '#attributes' => [],
    ];
  }

}

Classes

Namesort descending Description
WebformHelp Provides a render element for help (tooltip).