FormHelperTest::testProcessStates |
function |
core/tests/Drupal/Tests/Core/Form/FormHelperTest.php |
Tests process states. |
FormHelperTest::testRewriteStatesSelector |
function |
core/tests/Drupal/Tests/Core/Form/FormHelperTest.php |
Tests rewriting the #states selectors. |
FormState |
class |
core/lib/Drupal/Core/Form/FormState.php |
Stores information about the state of a form. |
FormState.php |
file |
core/lib/Drupal/Core/Form/FormState.php |
|
FormState::$always_process |
property |
core/lib/Drupal/Core/Form/FormState.php |
If TRUE and the method is GET, a form_id is not necessary. |
FormState::$anyErrors |
property |
core/lib/Drupal/Core/Form/FormState.php |
Tracks if any errors have been set on any form. |
FormState::$build_info |
property |
core/lib/Drupal/Core/Form/FormState.php |
An associative array of information stored by Form API. |
FormState::$buttons |
property |
core/lib/Drupal/Core/Form/FormState.php |
A list containing copies of all submit and button elements in the form. |
FormState::$cache |
property |
core/lib/Drupal/Core/Form/FormState.php |
Determines if the unprocessed form structure is cached. |
FormState::$cleanValueKeys |
property |
core/lib/Drupal/Core/Form/FormState.php |
An associative array of form value keys to be removed by cleanValues(). |
FormState::$complete_form |
property |
core/lib/Drupal/Core/Form/FormState.php |
The complete form structure. |
FormState::$errors |
property |
core/lib/Drupal/Core/Form/FormState.php |
Contains errors for this form. |
FormState::$executed |
property |
core/lib/Drupal/Core/Form/FormState.php |
If TRUE, the form was submitted and has been processed and executed. |
FormState::$groups |
property |
core/lib/Drupal/Core/Form/FormState.php |
The references to details elements to render them within vertical tabs. |
FormState::$has_file_element |
property |
core/lib/Drupal/Core/Form/FormState.php |
Indicates a file element is present. |
FormState::$ignoreDestination |
property |
core/lib/Drupal/Core/Form/FormState.php |
Used to ignore destination when redirecting. |
FormState::$input |
property |
core/lib/Drupal/Core/Form/FormState.php |
The array of values as they were submitted by the user. |
FormState::$invalidToken |
property |
core/lib/Drupal/Core/Form/FormState.php |
Determines if only safe element value callbacks are called. |
FormState::$limit_validation_errors |
property |
core/lib/Drupal/Core/Form/FormState.php |
Stores which errors should be limited during validation. |
FormState::$method |
property |
core/lib/Drupal/Core/Form/FormState.php |
The HTTP form method to use for finding the input for this form. |
FormState::$must_validate |
property |
core/lib/Drupal/Core/Form/FormState.php |
Indicates if a validation will be forced. |
FormState::$no_cache |
property |
core/lib/Drupal/Core/Form/FormState.php |
If set to TRUE the form will NOT be cached, even if 'cache' is set. |
FormState::$no_redirect |
property |
core/lib/Drupal/Core/Form/FormState.php |
If set to TRUE the form will NOT perform a redirect. |
FormState::$process_input |
property |
core/lib/Drupal/Core/Form/FormState.php |
Indicates correct form submission. |
FormState::$programmed |
property |
core/lib/Drupal/Core/Form/FormState.php |
Indicates if the form was submitted programmatically. |
FormState::$programmed_bypass_access_check |
property |
core/lib/Drupal/Core/Form/FormState.php |
Indicates if programmatic form submissions bypasses #access check. |
FormState::$rebuild |
property |
core/lib/Drupal/Core/Form/FormState.php |
Determines whether the form is rebuilt. |
FormState::$rebuild_info |
property |
core/lib/Drupal/Core/Form/FormState.php |
Similar to self::$build_info. |
FormState::$redirect |
property |
core/lib/Drupal/Core/Form/FormState.php |
Used to redirect the form on submission. |
FormState::$requestMethod |
property |
core/lib/Drupal/Core/Form/FormState.php |
The HTTP method used by the request building or processing this form. |
FormState::$response |
property |
core/lib/Drupal/Core/Form/FormState.php |
The response object. |
FormState::$storage |
property |
core/lib/Drupal/Core/Form/FormState.php |
The storage. |
FormState::$submitted |
property |
core/lib/Drupal/Core/Form/FormState.php |
If TRUE, the form has been submitted. Defaults to FALSE. |
FormState::$submit_handlers |
property |
core/lib/Drupal/Core/Form/FormState.php |
Stores the gathered submission handlers. |
FormState::$temporary |
property |
core/lib/Drupal/Core/Form/FormState.php |
Holds temporary data accessible during the current page request only. |
FormState::$triggering_element |
property |
core/lib/Drupal/Core/Form/FormState.php |
The form element that triggered submission. |
FormState::$validate_handlers |
property |
core/lib/Drupal/Core/Form/FormState.php |
Stores the gathered validation handlers. |
FormState::$validation_complete |
property |
core/lib/Drupal/Core/Form/FormState.php |
Tracks if the form has finished validation. |
FormState::$values |
property |
core/lib/Drupal/Core/Form/FormState.php |
An associative array of values submitted to the form. |
FormState::addBuildInfo |
function |
core/lib/Drupal/Core/Form/FormState.php |
Adds a value to the build info. |
FormState::addCleanValueKey |
function |
core/lib/Drupal/Core/Form/FormState.php |
Adds a key to the array of form values that will be cleaned. |
FormState::addRebuildInfo |
function |
core/lib/Drupal/Core/Form/FormState.php |
Adds a value to the rebuild info. |
FormState::cleanValues |
function |
core/lib/Drupal/Core/Form/FormState.php |
Removes internal Form API elements and buttons from submitted form values. |
FormState::clearErrors |
function |
core/lib/Drupal/Core/Form/FormState.php |
Clears all errors against all form elements made by self::setErrorByName(). |
FormState::disableCache |
function |
core/lib/Drupal/Core/Form/FormState.php |
Prevents the form from being cached. |
FormState::disableRedirect |
function |
core/lib/Drupal/Core/Form/FormState.php |
Prevents the form from redirecting. |
FormState::get |
function |
core/lib/Drupal/Core/Form/FormState.php |
Gets the value for a property in the form state storage. |
FormState::getAlwaysProcess |
function |
core/lib/Drupal/Core/Form/FormState.php |
Determines if this form should always be processed. |
FormState::getBuildInfo |
function |
core/lib/Drupal/Core/Form/FormState.php |
Returns the build info for the form. |
FormState::getButtons |
function |
core/lib/Drupal/Core/Form/FormState.php |
Returns the submit and button elements for the form. |