public function AuditFilesUsedNotManaged::getConfirmText in Audit Files 8.2
Same name and namespace in other branches
- 8.3 src/Form/AuditFilesUsedNotManaged.php \Drupal\auditfiles\Form\AuditFilesUsedNotManaged::getConfirmText()
- 8 src/Form/AuditFilesUsedNotManaged.php \Drupal\auditfiles\Form\AuditFilesUsedNotManaged::getConfirmText()
- 4.x src/Form/AuditFilesUsedNotManaged.php \Drupal\auditfiles\Form\AuditFilesUsedNotManaged::getConfirmText()
Returns a caption for the button that confirms the action.
Return value
\Drupal\Core\StringTranslation\TranslatableMarkup The form confirmation text.
Overrides ConfirmFormInterface::getConfirmText
1 call to AuditFilesUsedNotManaged::getConfirmText()
- AuditFilesUsedNotManaged::buildForm in src/
Form/ AuditFilesUsedNotManaged.php - Form constructor.
File
- src/
Form/ AuditFilesUsedNotManaged.php, line 88
Class
- AuditFilesUsedNotManaged
- Class for file used but not managed.
Namespace
Drupal\auditfiles\FormCode
public function getConfirmText() {
return $this
->t('Confirm');
}