You are here

public function ServerClearConfirmForm::getDescription in Search API 8

Returns additional text to display as a description.

Return value

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

Overrides EntityConfirmFormBase::getDescription

File

src/Form/ServerClearConfirmForm.php, line 54

Class

ServerClearConfirmForm
Defines a confirm form for clearing a server.

Namespace

Drupal\search_api\Form

Code

public function getDescription() {
  return $this
    ->t("This will permanently remove all data currently indexed on this server for indexes that aren't read-only. Items are queued for reindexing. Until reindexing occurs, searches for the affected indexes will not return any results. This action cannot be undone.");
}