You are here

public function SolrFieldTypeDeleteForm::getConfirmText 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::getConfirmText()
  2. 8.2 src/Form/SolrFieldTypeDeleteForm.php \Drupal\search_api_solr\Form\SolrFieldTypeDeleteForm::getConfirmText()

Returns a caption for the button that confirms the action.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The form confirmation text.

Overrides EntityConfirmFormBase::getConfirmText

File

src/Form/SolrFieldTypeDeleteForm.php, line 32

Class

SolrFieldTypeDeleteForm
Builds the form to delete a SolrFieldType.

Namespace

Drupal\search_api_solr\Form

Code

public function getConfirmText() {
  return $this
    ->t('Delete');
}