You are here

public function IndexReindexConfirmForm::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/IndexReindexConfirmForm.php, line 54

Class

IndexReindexConfirmForm
Defines a confirm form for reindexing an index.

Namespace

Drupal\search_api\Form

Code

public function getDescription() {
  return $this
    ->t('Indexed data will remain on the search server until all items have been reindexed. Searches on this index will continue to yield results. This action cannot be undone.');
}