
| Current Path : /var/www/html/ift/web/core/modules/system/tests/modules/form_test/src/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/ift/web/core/modules/system/tests/modules/form_test/src/ConfirmFormTestForm.php |
<?php
namespace Drupal\form_test;
use Drupal\Core\Form\ConfirmFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Url;
/**
* Provides a test confirmation form.
*
* @internal
*/
class ConfirmFormTestForm extends ConfirmFormBase {
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'form_test_confirm_test_form';
}
/**
* {@inheritdoc}
*/
public function getQuestion() {
return $this->t('ConfirmFormTestForm::getQuestion().');
}
/**
* {@inheritdoc}
*/
public function getCancelUrl() {
return new Url('form_test.route8');
}
/**
* {@inheritdoc}
*/
public function getDescription() {
return $this->t('ConfirmFormTestForm::getDescription().');
}
/**
* {@inheritdoc}
*/
public function getConfirmText() {
return $this->t('ConfirmFormTestForm::getConfirmText().');
}
/**
* {@inheritdoc}
*/
public function getCancelText() {
return $this->t('ConfirmFormTestForm::getCancelText().');
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$form['element'] = ['#markup' => '<p>The ConfirmFormTestForm::buildForm() method was used for this form.</p>'];
return parent::buildForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$this->messenger()->addStatus($this->t('The ConfirmFormTestForm::submitForm() method was used for this form.'));
$form_state->setRedirect('<front>');
}
}