You are here

public function WebformAccessGroupDeleteForm::getDescription in Webform 8.5

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

Returns additional text to display as a description.

Return value

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

Overrides WebformConfigEntityDeleteFormBase::getDescription

File

modules/webform_access/src/WebformAccessGroupDeleteForm.php, line 20

Class

WebformAccessGroupDeleteForm
Provides a delete webform access group form.

Namespace

Drupal\webform_access

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 fields which use this access group'),
      ],
    ],
  ];
}