public function YamlFormResultsClearForm::getMessage in YAML Form 8
File
- src/
Form/ YamlFormResultsClearForm.php, line 44
Class
- YamlFormResultsClearForm
- Form for form results clear form.
Namespace
Drupal\yamlform\FormCode
public function getMessage() {
if ($this->sourceEntity) {
$t_args = [
'%title' => $this->sourceEntity
->label(),
];
}
else {
$t_args = [
'%title' => $this->yamlform
->label(),
];
}
$this
->t('Form %title submissions cleared.', $t_args);
}