function LanguageDeleteForm::logDeletionMessage
Same name in other branches
- 9 core/modules/language/src/Form/LanguageDeleteForm.php \Drupal\language\Form\LanguageDeleteForm::logDeletionMessage()
- 8.9.x core/modules/language/src/Form/LanguageDeleteForm.php \Drupal\language\Form\LanguageDeleteForm::logDeletionMessage()
- 10 core/modules/language/src/Form/LanguageDeleteForm.php \Drupal\language\Form\LanguageDeleteForm::logDeletionMessage()
Overrides EntityDeleteFormTrait::logDeletionMessage
File
-
core/
modules/ language/ src/ Form/ LanguageDeleteForm.php, line 38
Class
- LanguageDeleteForm
- Defines a confirmation form for deleting a language entity.
Namespace
Drupal\language\FormCode
public function logDeletionMessage() {
$this->logger('language')
->notice('The %language (%langcode) language has been removed.', [
'%language' => $this->entity
->label(),
'%langcode' => $this->entity
->id(),
]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.