You are here

public function ContactDeleteForm::getQuestion in RedHen CRM 8

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 ContentEntityDeleteForm::getQuestion

File

modules/redhen_contact/src/Form/ContactDeleteForm.php, line 18

Class

ContactDeleteForm
Provides a form for deleting Contact entities.

Namespace

Drupal\redhen_contact\Form

Code

public function getQuestion() {
  return $this
    ->t('Are you sure you want to delete the @contact-type %name?', [
    '@contact-type' => ContactType::load($this->entity
      ->bundle())
      ->label(),
    '%name' => $this->entity
      ->label(),
  ]);
}