You are here

public function WebformOptionsCustomDeleteForm::getDescription in Webform 8.5

Same name and namespace in other branches
  1. 6.x modules/webform_options_custom/src/WebformOptionsCustomDeleteForm.php \Drupal\webform_options_custom\WebformOptionsCustomDeleteForm::getDescription()

Returns additional text to display as a description.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The form description.

Overrides WebformConfigEntityDeleteFormBase::getDescription

File

modules/webform_options_custom/src/WebformOptionsCustomDeleteForm.php, line 15

Class

WebformOptionsCustomDeleteForm
Provides a delete webform custom options form.

Namespace

Drupal\webform_options_custom

Code

public function getDescription() {
  return [
    'title' => [
      '#markup' => $this
        ->t('This action will…'),
    ],
    'list' => [
      '#theme' => 'item_list',
      '#items' => [
        $this
          ->t('Remove configuration'),
        $this
          ->t('Affect any elements which use these custom options'),
      ],
    ],
  ];
}