You are here

public function SolrFieldTypeDeleteForm::getQuestion in Search API Solr 4.x

Same name and namespace in other branches
  1. 8.3 src/Form/SolrFieldTypeDeleteForm.php \Drupal\search_api_solr\Form\SolrFieldTypeDeleteForm::getQuestion()
  2. 8.2 src/Form/SolrFieldTypeDeleteForm.php \Drupal\search_api_solr\Form\SolrFieldTypeDeleteForm::getQuestion()

Returns the question to ask the user.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The form question. The page title will be set to this value.

Overrides ConfirmFormInterface::getQuestion

File

src/Form/SolrFieldTypeDeleteForm.php, line 16

Class

SolrFieldTypeDeleteForm
Builds the form to delete a SolrFieldType.

Namespace

Drupal\search_api_solr\Form

Code

public function getQuestion() {
  return $this
    ->t('Are you sure you want to delete %name?', [
    '%name' => $this->entity
      ->label(),
  ]);
}