You are here

public function Value::preview in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Plugin/WebformElement/Value.php \Drupal\webform\Plugin\WebformElement\Value::preview()

Generate a renderable preview of the element.

Return value

array A renderable preview of the element.

Overrides WebformElementBase::preview

File

src/Plugin/WebformElement/Value.php, line 37

Class

Value
Provides a 'value' element.

Namespace

Drupal\webform\Plugin\WebformElement

Code

public function preview() {
  return [
    '#type' => 'value',
    '#title' => $this
      ->t('Value'),
    '#value' => 'preview',
  ];
}