| confirm-form.html.twig |
file |
core/themes/starterkit_theme/templates/form/confirm-form.html.twig |
Theme override for confirm form. |
| confirm-form.html.twig |
file |
core/modules/system/templates/confirm-form.html.twig |
Default theme implementation for confirm form. |
| ConfirmFormArrayPathTestForm |
class |
core/modules/system/tests/modules/form_test/src/ConfirmFormArrayPathTestForm.php |
Provides a test confirmation form with a complex cancellation destination. |
| ConfirmFormArrayPathTestForm.php |
file |
core/modules/system/tests/modules/form_test/src/ConfirmFormArrayPathTestForm.php |
|
| ConfirmFormArrayPathTestForm::getCancelText |
function |
core/modules/system/tests/modules/form_test/src/ConfirmFormArrayPathTestForm.php |
Returns a caption for the link which cancels the action. |
| ConfirmFormArrayPathTestForm::getCancelUrl |
function |
core/modules/system/tests/modules/form_test/src/ConfirmFormArrayPathTestForm.php |
Returns the route to go to if the user cancels the action. |
| ConfirmFormArrayPathTestForm::getFormId |
function |
core/modules/system/tests/modules/form_test/src/ConfirmFormArrayPathTestForm.php |
Returns a unique string identifying the form. |
| ConfirmFormBase |
class |
core/lib/Drupal/Core/Form/ConfirmFormBase.php |
Provides a generic base class for a confirmation form. |
| ConfirmFormBase.php |
file |
core/lib/Drupal/Core/Form/ConfirmFormBase.php |
|
| ConfirmFormBase::buildForm |
function |
core/lib/Drupal/Core/Form/ConfirmFormBase.php |
Form constructor. |
| ConfirmFormBase::getCancelText |
function |
core/lib/Drupal/Core/Form/ConfirmFormBase.php |
Returns a caption for the link which cancels the action. |
| ConfirmFormBase::getConfirmText |
function |
core/lib/Drupal/Core/Form/ConfirmFormBase.php |
Returns a caption for the button that confirms the action. |
| ConfirmFormBase::getDescription |
function |
core/lib/Drupal/Core/Form/ConfirmFormBase.php |
Returns additional text to display as a description. |
| ConfirmFormBase::getFormName |
function |
core/lib/Drupal/Core/Form/ConfirmFormBase.php |
Returns the internal name used to refer to the confirmation item. |
| ConfirmFormHelper |
class |
core/lib/Drupal/Core/Form/ConfirmFormHelper.php |
Provides common functionality to confirmation forms. |
| ConfirmFormHelper.php |
file |
core/lib/Drupal/Core/Form/ConfirmFormHelper.php |
|
| ConfirmFormHelper::buildCancelLink |
function |
core/lib/Drupal/Core/Form/ConfirmFormHelper.php |
Builds the cancel link for a confirmation form. |
| ConfirmFormHelperTest |
class |
core/tests/Drupal/Tests/Core/Form/ConfirmFormHelperTest.php |
Tests Drupal\Core\Form\ConfirmFormHelper. |
| ConfirmFormHelperTest.php |
file |
core/tests/Drupal/Tests/Core/Form/ConfirmFormHelperTest.php |
|
| ConfirmFormHelperTest::providerTestCancelLinkDestination |
function |
core/tests/Drupal/Tests/Core/Form/ConfirmFormHelperTest.php |
Provides test data for testCancelLinkDestination(). |
| ConfirmFormHelperTest::testCancelLinkDestination |
function |
core/tests/Drupal/Tests/Core/Form/ConfirmFormHelperTest.php |
Tests a cancel link provided by the destination. |
| ConfirmFormHelperTest::testCancelLinkRoute |
function |
core/tests/Drupal/Tests/Core/Form/ConfirmFormHelperTest.php |
Tests a cancel link route. |
| ConfirmFormHelperTest::testCancelLinkRouteWithParams |
function |
core/tests/Drupal/Tests/Core/Form/ConfirmFormHelperTest.php |
Tests a cancel link route with parameters. |
| ConfirmFormHelperTest::testCancelLinkRouteWithUrl |
function |
core/tests/Drupal/Tests/Core/Form/ConfirmFormHelperTest.php |
Tests a cancel link route with a URL object. |
| ConfirmFormHelperTest::testCancelLinkTitle |
function |
core/tests/Drupal/Tests/Core/Form/ConfirmFormHelperTest.php |
Tests the cancel link title. |
| ConfirmFormInterface |
interface |
core/lib/Drupal/Core/Form/ConfirmFormInterface.php |
Defines the behavior a confirmation form. |
| ConfirmFormInterface.php |
file |
core/lib/Drupal/Core/Form/ConfirmFormInterface.php |
|
| ConfirmFormInterface::getCancelText |
function |
core/lib/Drupal/Core/Form/ConfirmFormInterface.php |
Returns a caption for the link which cancels the action. |
| ConfirmFormInterface::getCancelUrl |
function |
core/lib/Drupal/Core/Form/ConfirmFormInterface.php |
Returns the route to go to if the user cancels the action. |
| ConfirmFormInterface::getConfirmText |
function |
core/lib/Drupal/Core/Form/ConfirmFormInterface.php |
Returns a caption for the button that confirms the action. |
| ConfirmFormInterface::getDescription |
function |
core/lib/Drupal/Core/Form/ConfirmFormInterface.php |
Returns additional text to display as a description. |
| ConfirmFormInterface::getFormName |
function |
core/lib/Drupal/Core/Form/ConfirmFormInterface.php |
Returns the internal name used to refer to the confirmation item. |
| ConfirmFormInterface::getQuestion |
function |
core/lib/Drupal/Core/Form/ConfirmFormInterface.php |
Returns the question to ask the user. |
| ConfirmFormTest |
class |
core/modules/system/tests/src/Functional/Form/ConfirmFormTest.php |
Tests confirmation forms. |
| ConfirmFormTest.php |
file |
core/modules/system/tests/src/Functional/Form/ConfirmFormTest.php |
|
| ConfirmFormTest::$defaultTheme |
property |
core/modules/system/tests/src/Functional/Form/ConfirmFormTest.php |
The theme to install as the default for testing. |
| ConfirmFormTest::$modules |
property |
core/modules/system/tests/src/Functional/Form/ConfirmFormTest.php |
Modules to install. |
| ConfirmFormTest::testConfirmForm |
function |
core/modules/system/tests/src/Functional/Form/ConfirmFormTest.php |
Tests the confirm form functionality, including submission and cancellation. |
| ConfirmFormTest::testConfirmFormWithExternalDestination |
function |
core/modules/system/tests/src/Functional/Form/ConfirmFormTest.php |
Tests that the confirm form does not use external destinations. |
| ConfirmFormTestForm |
class |
core/modules/system/tests/modules/form_test/src/ConfirmFormTestForm.php |
Provides a test confirmation form. |
| ConfirmFormTestForm.php |
file |
core/modules/system/tests/modules/form_test/src/ConfirmFormTestForm.php |
|
| ConfirmFormTestForm::buildForm |
function |
core/modules/system/tests/modules/form_test/src/ConfirmFormTestForm.php |
Form constructor. |
| ConfirmFormTestForm::getCancelText |
function |
core/modules/system/tests/modules/form_test/src/ConfirmFormTestForm.php |
Returns a caption for the link which cancels the action. |
| ConfirmFormTestForm::getCancelUrl |
function |
core/modules/system/tests/modules/form_test/src/ConfirmFormTestForm.php |
Returns the route to go to if the user cancels the action. |
| ConfirmFormTestForm::getConfirmText |
function |
core/modules/system/tests/modules/form_test/src/ConfirmFormTestForm.php |
Returns a caption for the button that confirms the action. |
| ConfirmFormTestForm::getDescription |
function |
core/modules/system/tests/modules/form_test/src/ConfirmFormTestForm.php |
Returns additional text to display as a description. |
| ConfirmFormTestForm::getFormId |
function |
core/modules/system/tests/modules/form_test/src/ConfirmFormTestForm.php |
Returns a unique string identifying the form. |
| ConfirmFormTestForm::getQuestion |
function |
core/modules/system/tests/modules/form_test/src/ConfirmFormTestForm.php |
Returns the question to ask the user. |
| ConfirmFormTestForm::submitForm |
function |
core/modules/system/tests/modules/form_test/src/ConfirmFormTestForm.php |
Form submission handler. |
| contact.form.feedback.yml |
file |
core/modules/contact/tests/modules/contact_test/config/install/contact.form.feedback.yml |
core/modules/contact/tests/modules/contact_test/config/install/contact.form.feedback.yml |