Search for forms

  1. Search 7.x for forms
  2. Search 9.5.x for forms
  3. Search 8.9.x for forms
  4. Search 10.3.x for forms
  5. Other projects
Title Object type File name Summary
FormStateValuesTrait::hasValue function core/lib/Drupal/Core/Form/FormStateValuesTrait.php Implements \Drupal\Core\Form\FormStateInterface::hasValue()
FormStateValuesTrait::isValueEmpty function core/lib/Drupal/Core/Form/FormStateValuesTrait.php Implements \Drupal\Core\Form\FormStateInterface::isValueEmpty()
FormStateValuesTrait::setValue function core/lib/Drupal/Core/Form/FormStateValuesTrait.php Implements \Drupal\Core\Form\FormStateInterface::setValue()
FormStateValuesTrait::setValueForElement function core/lib/Drupal/Core/Form/FormStateValuesTrait.php Implements \Drupal\Core\Form\FormStateInterface::setValueForElement()
FormStateValuesTrait::setValues function core/lib/Drupal/Core/Form/FormStateValuesTrait.php Implements \Drupal\Core\Form\FormStateInterface::setValues()
FormStateValuesTrait::unsetValue function core/lib/Drupal/Core/Form/FormStateValuesTrait.php Implements \Drupal\Core\Form\FormStateInterface::unsetValue()
FormStateValuesTraitStub class core/tests/Drupal/Tests/Core/Form/FormStateValuesTraitTest.php Stub class with trait for testing.
FormStateValuesTraitStub::$values property core/tests/Drupal/Tests/Core/Form/FormStateValuesTraitTest.php The submitted form values.
FormStateValuesTraitStub::getValues function core/tests/Drupal/Tests/Core/Form/FormStateValuesTraitTest.php Implements \Drupal\Core\Form\FormStateInterface::getValues()
FormStateValuesTraitTest class core/tests/Drupal/Tests/Core/Form/FormStateValuesTraitTest.php Tests Drupal\Core\Form\FormStateValuesTrait.
FormStateValuesTraitTest.php file core/tests/Drupal/Tests/Core/Form/FormStateValuesTraitTest.php
FormStateValuesTraitTest::providerGetValue function core/tests/Drupal/Tests/Core/Form/FormStateValuesTraitTest.php Provides data to self::testGetValue().
FormStateValuesTraitTest::providerHasValue function core/tests/Drupal/Tests/Core/Form/FormStateValuesTraitTest.php Provides data to self::testHasValue().
FormStateValuesTraitTest::providerIsValueEmpty function core/tests/Drupal/Tests/Core/Form/FormStateValuesTraitTest.php Provides data to self::testIsValueEmpty().
FormStateValuesTraitTest::providerSetValue function core/tests/Drupal/Tests/Core/Form/FormStateValuesTraitTest.php Provides data to self::testSetValue().
FormStateValuesTraitTest::testGetValue function core/tests/Drupal/Tests/Core/Form/FormStateValuesTraitTest.php Tests get value.
FormStateValuesTraitTest::testGetValueModifyReturn function core/tests/Drupal/Tests/Core/Form/FormStateValuesTraitTest.php Tests get value modify return.
FormStateValuesTraitTest::testHasValue function core/tests/Drupal/Tests/Core/Form/FormStateValuesTraitTest.php Tests has value.
FormStateValuesTraitTest::testIsValueEmpty function core/tests/Drupal/Tests/Core/Form/FormStateValuesTraitTest.php Tests is value empty.
FormStateValuesTraitTest::testSetValue function core/tests/Drupal/Tests/Core/Form/FormStateValuesTraitTest.php Tests set value.
FormStateValuesTraitTest::testSetValueForElement function core/tests/Drupal/Tests/Core/Form/FormStateValuesTraitTest.php Tests that setting the value for an element adds to the values.
FormStoragePageCacheTest class core/modules/system/tests/src/Functional/Form/FormStoragePageCacheTest.php Tests form storage from cached pages.
FormStoragePageCacheTest.php file core/modules/system/tests/src/Functional/Form/FormStoragePageCacheTest.php
FormStoragePageCacheTest::$defaultTheme property core/modules/system/tests/src/Functional/Form/FormStoragePageCacheTest.php The theme to install as the default for testing.
FormStoragePageCacheTest::$modules property core/modules/system/tests/src/Functional/Form/FormStoragePageCacheTest.php
FormStoragePageCacheTest::getFormBuildId function core/modules/system/tests/src/Functional/Form/FormStoragePageCacheTest.php Return the build id of the current form.
FormStoragePageCacheTest::setUp function core/modules/system/tests/src/Functional/Form/FormStoragePageCacheTest.php
FormStoragePageCacheTest::testRebuildFormStorageOnCachedPage function core/modules/system/tests/src/Functional/Form/FormStoragePageCacheTest.php Build-id is regenerated when rebuilding cached form.
FormStoragePageCacheTest::testValidateFormStorageOnCachedPage function core/modules/system/tests/src/Functional/Form/FormStoragePageCacheTest.php Build-id is regenerated when validating cached form.
FormSubmitter class core/lib/Drupal/Core/Form/FormSubmitter.php Provides submission processing for forms.
FormSubmitter.php file core/lib/Drupal/Core/Form/FormSubmitter.php
FormSubmitter::batchGet function core/lib/Drupal/Core/Form/FormSubmitter.php Wraps batch_get().
FormSubmitter::doSubmitForm function core/lib/Drupal/Core/Form/FormSubmitter.php Handles the submitted form, executing callbacks and processing responses.
FormSubmitter::executeSubmitHandlers function core/lib/Drupal/Core/Form/FormSubmitter.php Executes custom submission handlers for a given form.
FormSubmitter::redirectForm function core/lib/Drupal/Core/Form/FormSubmitter.php Redirects the user to a URL after a form has been processed.
FormSubmitter::__construct function core/lib/Drupal/Core/Form/FormSubmitter.php Constructs a new FormSubmitter.
FormSubmitterInterface interface core/lib/Drupal/Core/Form/FormSubmitterInterface.php Provides an interface for processing form submissions.
FormSubmitterInterface.php file core/lib/Drupal/Core/Form/FormSubmitterInterface.php
FormSubmitterInterface::doSubmitForm function core/lib/Drupal/Core/Form/FormSubmitterInterface.php Handles the submitted form, executing callbacks and processing responses.
FormSubmitterInterface::executeSubmitHandlers function core/lib/Drupal/Core/Form/FormSubmitterInterface.php Executes custom submission handlers for a given form.
FormSubmitterInterface::redirectForm function core/lib/Drupal/Core/Form/FormSubmitterInterface.php Redirects the user to a URL after a form has been processed.
FormSubmitterTest class core/tests/Drupal/Tests/Core/Form/FormSubmitterTest.php Tests Drupal\Core\Form\FormSubmitter.
FormSubmitterTest.php file core/tests/Drupal/Tests/Core/Form/FormSubmitterTest.php
FormSubmitterTest::$redirectResponseSubscriber property core/tests/Drupal/Tests/Core/Form/FormSubmitterTest.php
FormSubmitterTest::$unroutedUrlAssembler property core/tests/Drupal/Tests/Core/Form/FormSubmitterTest.php The mocked unrouted URL assembler.
FormSubmitterTest::$urlGenerator property core/tests/Drupal/Tests/Core/Form/FormSubmitterTest.php The mocked URL generator.
FormSubmitterTest::getFormSubmitter function core/tests/Drupal/Tests/Core/Form/FormSubmitterTest.php
FormSubmitterTest::providerTestHandleFormSubmissionWithResponses function core/tests/Drupal/Tests/Core/Form/FormSubmitterTest.php
FormSubmitterTest::providerTestRedirectWithUrl function core/tests/Drupal/Tests/Core/Form/FormSubmitterTest.php Provides test data for testing the redirectForm() method with a route name.
FormSubmitterTest::setUp function core/tests/Drupal/Tests/Core/Form/FormSubmitterTest.php

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.