class ConditionalFieldsFormHelper in Conditional Fields 8
Same name and namespace in other branches
- 4.x src/ConditionalFieldsFormHelper.php \Drupal\conditional_fields\ConditionalFieldsFormHelper
Helper to interact with forms.
Hierarchy
- class \Drupal\conditional_fields\ConditionalFieldsFormHelper
Expanded class hierarchy of ConditionalFieldsFormHelper
1 file declares its use of ConditionalFieldsFormHelper
1 string reference to 'ConditionalFieldsFormHelper'
1 service uses ConditionalFieldsFormHelper
File
- src/
ConditionalFieldsFormHelper.php, line 18
Namespace
Drupal\conditional_fieldsView source
class ConditionalFieldsFormHelper {
protected $form;
protected $form_state;
protected $effects;
protected $dependent_location;
protected $dependent_form_field;
/* List of all form states. */
protected $states;
/** @var \Drupal\Core\Render\ElementInfoManager */
protected $elementInfo;
/** @var \Drupal\conditional_fields\ConditionalFieldsHandlersManager */
protected $type;
public function __construct(ElementInfoManager $element_info, ConditionalFieldsHandlersManager $type) {
$this->elementInfo = $element_info;
$this->type = $type;
}
/**
* An after_build callback for forms with dependencies.
*
* Builds and attaches #states properties to dependent fields, adds additional
* visual effects handling to the States API and attaches a validation callback
* to the form that handles validation of dependent fields.
*/
public function afterBuild($form, FormStateInterface &$form_state) {
$this->form = $form;
$this->form_state = $form_state;
if ($this
->hasConditionalFields()) {
$this
->processDependentFields()
->addJavascriptEffects()
->addValidationCallback();
}
return $this->form;
}
/**
* Build and attach #states properties to dependent fields.
*/
protected function processDependentFields() {
$this->effects = [];
// Cycle all dependents.
foreach ($this->form['#conditional_fields'] as $dependent => $dependent_info) {
$this->states = [];
if (!isset($dependent_info['dependees']) || empty($dependent_info['dependees'])) {
continue;
}
$dependees = $dependent_info['dependees'];
$this->dependent_location = array_merge([], [
$dependent,
]);
$this->dependent_form_field = NestedArray::getValue($this->form, $this->dependent_location);
$this
->processDependeeFields($dependees);
if (empty($this->states)) {
continue;
}
// Save the modified field back into the form.
NestedArray::setValue($this->form, $this->dependent_location, $this->dependent_form_field);
// Add the #states property to the dependent field.
NestedArray::setValue($this->form, array_merge($this->dependent_location, [
'#states',
]), $this
->mapStates());
}
return $this;
}
/**
* Determine and register dependee field effects.
*/
protected function processDependeeFields($dependees) {
// Cycle the dependant's dependees.
foreach ($dependees as $dependency) {
$dependee = $dependency['dependee'];
if (empty($this->form['#conditional_fields'][$dependee])) {
continue;
}
$dependee_info = $this->form['#conditional_fields'][$dependee];
end($dependee_info['parents']);
$unset = key($dependee_info['parents']);
if (is_int($dependee_info['parents'][$unset]) && $dependee_info['parents'][$unset] > 0) {
unset($dependee_info['parents'][$unset]);
}
$dependee_form_field = NestedArray::getValue($this->form, $dependee_info['parents']);
$options = $dependency['options'];
if (!empty($options['values']) && is_string($options['values'])) {
$options['values'] = explode("\r\n", $options['values']);
}
$options['selector'] = self::getSelector($options['selector'], $dependee_form_field);
$state = $this
->getState($dependee, $dependee_form_field, $options);
// Add validation callback to element if the dependency can be evaluated.
if (in_array($options['condition'], [
'value',
'empty',
'!empty',
'checked',
'!checked',
])) {
self::elementAddProperty($this->dependent_form_field, '#element_validate', [
self::class,
'dependentValidate',
], 'append');
}
$this
->addStateToGroup($state, $options);
$selector = conditional_fields_field_selector(NestedArray::getValue($this->form, [
$this->dependent_location[0],
]));
$this->effects[$selector] = self::getEffect($options);
}
}
/**
* Add our Javascript and effects.
*/
protected function addJavascriptEffects() {
$this->form['#attached']['library'][] = 'conditional_fields/conditional_fields';
// Add effect settings to the form.
if ($this->effects) {
$this->form['#attached']['drupalSettings']['conditionalFields'] = [
'effects' => $this->effects,
];
}
return $this;
}
/**
* Add validation callback to manage dependent fields validation.
*/
protected function addValidationCallback() {
$this->form['#validate'][] = [
self::class,
'formValidate',
];
// Initialize validation information every time the form is rendered to avoid
// stale data after a failed submission.
$this->form_state
->setValue('conditional_fields_untriggered_dependents', []);
return $this;
}
/**
* Get list of states for the pair from the options.
*
* @param string $dependee
* Machine name of control field.
* @param array $dependee_form_field
* Nested array of control field.
* @param array $options
* Settings of dependency.
* @return array
* List of states.
*
* @see hook_get_state
*/
protected function getState($dependee, $dependee_form_field, $options) {
// @var EntityFormDisplayInterface $form_display
$form_display = $this->form_state
->getFormObject()
->getFormDisplay($this->form_state);
$state = [];
if ($options['condition'] != 'value') {
// Conditions different than "value" are always evaluated against TRUE.
$state = [
$options['state'] => [
$options['selector'] => [
$options['condition'] => TRUE,
],
],
];
}
else {
$field_name = explode('[', $dependee_form_field['#name']);
$dependee_form_state = isset($dependee_form_field['#field_parents'], $field_name[0], $this->form_state) ? WidgetBase::getWidgetState($dependee_form_field['#field_parents'], $field_name[0], $this->form_state) : NULL;
$dependee_form_field['#original_name'] = $field_name[0];
$dependee_display = $form_display
->getComponent($dependee);
if (is_array($dependee_display) && array_key_exists('type', $dependee_display)) {
$widget_id = $dependee_display['type'];
}
// @todo: Use field cardinality instead of number of values that was
// selected on manage dependency tab. As temporary solution put cardinality
// in $options. Format of #states depend on field widget and field
// cardinality (it can be like value: string and value: [array]).
if ($field_config = FieldStorageConfig::loadByName($form_display
->getTargetEntityTypeId(), $dependee)) {
$options['field_cardinality'] = $field_config
->getCardinality();
}
// Execute special handler for fields that need further processing.
// The handler has no return value. Modify the $state parameter by
// reference if needed.
if (isset($widget_id)) {
$handler_id = 'states_handler_' . $widget_id;
/** @var Drupal\conditional_fields\ConditionalFieldsHandlersPluginInterface $handler */
$handler = $this->type
->createInstance($handler_id);
$state = $handler
->statesHandler($dependee_form_field, $dependee_form_state, $options);
}
if (empty($state)) {
// If states empty Default plugin.
/** @var Drupal\conditional_fields\ConditionalFieldsHandlersPluginInterface $default_handler */
$default_handler = $this->type
->createInstance('states_handler_default_state');
$state = $default_handler
->statesHandler($dependee_form_field, $dependee_form_state, $options);
}
}
return $state;
}
protected function hasConditionalFields() {
// Dependencies data is attached in conditional_fields_element_after_build().
if (empty($this->form['#conditional_fields'])) {
return FALSE;
}
if (!method_exists($this->form_state
->getFormObject(), 'getFormDisplay')) {
return FALSE;
}
return TRUE;
}
/**
* Build a jQuery selector if it was not overridden by a custom value.
*
* Note that this may be overridden later by a state handler.
*/
protected static function getSelector($options_selector, $dependee_form_field) {
if (!$options_selector) {
$selector = conditional_fields_field_selector($dependee_form_field);
}
else {
// Replace the language placeholder in the selector with current language.
$selector = str_replace('%lang', $dependee_form_field['#language'], $options_selector);
}
return $selector;
}
/**
* Merge field states to general list.
*
* @param array $state
* List of field states.
* @param array $options
* Field CF settings.
*/
protected function addStateToGroup($state, $options) {
// Add the $state into the correct logic group in $states.
foreach ($state as $key => $constraints) {
if (empty($this->states[$key][$options['grouping']])) {
$this->states[$key][$options['grouping']] = $constraints;
}
else {
$this->states[$key][$options['grouping']] = array_merge($this->states[$key][$options['grouping']], $constraints);
}
}
}
/**
* Returns js effect for field.
*
* @param array $options
* Field CF settings.
*
* @return array
* Effect with options.
*/
protected static function getEffect($options) {
// Build effect settings for effects with options.
// TODO: add dependee key to allow different effects on the same selector.
if ($options['effect'] && $options['effect'] != 'show') {
// Convert numeric strings to numbers.
foreach ($options['effect_options'] as &$effect_option) {
if (is_numeric($effect_option)) {
$effect_option += 0;
}
}
return [
'effect' => $options['effect'],
'options' => $options['effect_options'],
];
}
return [];
}
/**
* Dependent field validation callback.
*
* If the dependencies of a dependent field are not triggered, the validation
* errors that it might have thrown must be removed, together with its submitted
* values. This will simulate the field not being present in the form at all.
* In this field-level callback we just collect needed information and store it
* in $form_state. Values and errors will be removed in a single sweep in
* formValidate(), which runs at the end of the validation cycle.
*
* @see \Drupal\conditional_fields\ConditionalFieldsFormHelper::formValidate()
*/
public static function dependentValidate($element, FormStateInterface &$form_state, $form) {
if (!isset($form['#conditional_fields'])) {
return;
}
$dependent = $form['#conditional_fields'][reset($element['#array_parents'])];
// Check if this field's dependencies were triggered.
$triggered = self::evaluateDependencies($dependent, $form, $form_state);
$return = FALSE;
// TODO: refactor this!
if ($evaluated_dependencies = self::evaluateDependencies($dependent, $form, $form_state, FALSE)) {
foreach ($evaluated_dependencies[reset($dependent['field_parents'])] as $operator) {
foreach ($operator as $state => $result) {
if ($result && $state == 'visible' && $triggered || !$result && $state == '!visible' && !$triggered) {
$return = TRUE;
}
if ($result && $state == 'required' && $triggered || !$result && $state == '!required' && !$triggered) {
$return = TRUE;
$key_exists = NULL;
$input_state = NestedArray::getValue($form_state
->getValues(), $dependent['field_parents'], $key_exists);
if ($key_exists && !is_object($input_state) && isset($input_state['add_more'])) {
// Remove the 'value' of the 'add more' button.
unset($input_state['add_more']);
}
$input_state = is_null($input_state) ? [] : $input_state;
if (isset($dependent['field_parents'][0])) {
$field = FieldStorageConfig::loadByName($form['#entity_type'], $dependent['field_parents'][0]);
}
else {
$field = null;
}
if (empty($input_state)) {
if (isset($element['widget']['#title'])) {
$title = $element['widget']['#title'];
}
elseif (isset($dependent['field_parents'][0])) {
$title = $dependent['field_parents'][0];
}
elseif ($field) {
$title = $field
->getName();
}
$form_state
->setError($element, t('%name is required.', [
'%name' => $title,
]));
}
}
}
}
}
if ($return) {
return;
}
// Mark submitted values for removal. We have to remove them after all fields
// have been validated to avoid collision between dependencies.
$form_state_addition['parents'] = $dependent['field_parents'];
// Optional behavior: reset the field to its default values.
// Default values are always valid, so it's safe to skip validation.
if (!empty($element['#conditional_fields_reset_if_untriggered']) && !$triggered) {
$form_state_addition['reset'] = TRUE;
}
// Tag validation errors previously set on this field for removal in
// ConditionalFieldsFormHelper::formValidate().
$errors = $form_state
->getErrors();
if ($errors) {
$error_key = reset($dependent['field_parents']);
foreach ($errors as $name => $error) {
// An error triggered by this field might have been set on a descendant
// element. This also means that so there can be multiple errors on the
// same field (even though Drupal doesn't support multiple errors on the
// same element).
if (strpos((string) $name, $error_key) === 0) {
$field_errors[$name] = $error;
}
}
}
if (!empty($field_errors)) {
$form_state_addition['errors'] = $field_errors;
}
$fiel_state_values_count = count($form_state
->getValue('conditional_fields_untriggered_dependents'));
$form_state
->setValue([
'conditional_fields_untriggered_dependents',
$fiel_state_values_count,
], $form_state_addition);
}
/**
* Evaluate a set of dependencies for a dependent field.
*
* @param array $dependent
* The field form element in the current language.
*
* @return array|bool $evaluated_dependees.
* Evaluated dependencies array.
*/
protected static function evaluateDependencies($dependent, $form, $form_state, $grouping = TRUE) {
$dependencies = $form['#conditional_fields'][reset($dependent['field_parents'])]['dependees'];
$evaluated_dependees = [];
foreach ($dependencies as $dependency_id => $dependency) {
// Extract field values from submitted values.
$dependee = $dependency['dependee'];
// Skip any misconfigured conditions.
if (empty($form['#conditional_fields'][$dependee]['parents'])) {
continue;
}
$dependee_parents = $form['#conditional_fields'][$dependee]['parents'];
// We have the parents of the field, but depending on the entity type and
// the widget type, they may include additional elements that are actually
// part of the value. So we find the depth of the field inside the form
// structure and use the parents only up to that depth.
$dependee_parents_keys = array_flip($dependee_parents);
$dependee_parent = NestedArray::getValue($form, array_slice($dependee_parents, 0, $dependee_parents_keys[$dependee]));
$values = self::formFieldGetValues($dependee_parent[$dependee], $form_state);
// Remove the language key.
if (isset($dependee_parent[$dependee]['#language'], $values[$dependee_parent[$dependee]['#language']])) {
$values = $values[$dependee_parent[$dependee]['#language']];
}
if ($grouping) {
$evaluated_dependees[reset($dependent['field_parents'])][$dependency['options']['grouping']][] = self::evaluateDependency('edit', $values, $dependency['options']);
}
else {
$evaluated_dependees[reset($dependent['field_parents'])][$dependency['options']['grouping']][$dependency['options']['state']] = self::evaluateDependency('edit', $values, $dependency['options']);
}
}
if ($grouping) {
return self::evaluateGrouping($evaluated_dependees[reset($dependent['field_parents'])]);
}
return $evaluated_dependees;
}
/**
* Evaluates an array with 'AND', 'OR' and 'XOR' groupings.
*
* Each containing a list of boolean values.
*/
protected static function evaluateGrouping($groups) {
$or = $and = $xor = TRUE;
if (!empty($groups['OR'])) {
$or = in_array(TRUE, $groups['OR']);
}
if (!empty($groups['AND'])) {
$and = !in_array(FALSE, $groups['AND']);
}
if (!empty($groups['XOR'])) {
$xor = array_sum($groups['XOR']) == 1;
}
return $or && $and && $xor;
}
/**
* Validation callback for any form with conditional fields.
*
* This validation callback is added to all forms that contain fields with
* dependencies. It removes all validation errors from dependent fields whose
* dependencies are not triggered, which were collected at field-level
* validation in ConditionalFieldsFormHelper::dependentValidate().
*
* @see \Drupal\conditional_fields\ConditionalFieldsFormHelper::dependentValidate()
*/
public static function formValidate($form, FormStateInterface &$form_state) {
if (empty($form_state
->getValue('conditional_fields_untriggered_dependents'))) {
return;
}
$untriggered_dependents_errors = [];
foreach ($form_state
->getValue('conditional_fields_untriggered_dependents') as $field) {
$parent = [
$field['parents'][0],
];
$dependent = NestedArray::getValue($form, $parent);
$field_values_location = self::formFieldGetValues($dependent, $form_state);
// If we couldn't find a location for the field's submitted values, let the
// validation errors pass through to avoid security holes.
if (!isset($field_values_location[reset($dependent['#array_parents'])])) {
if (!empty($field['errors'])) {
$untriggered_dependents_errors = array_merge($untriggered_dependents_errors, $field['errors']);
}
continue;
}
// Save the changed array back in place.
// Do not use form_set_value() since it assumes
// that the values are located at
// $form_state['values'][ ... $element['#parents'] ... ], while the
// documentation of hook_field_widget_form() states that field values are
// $form_state['values'][ ... $element['#field_parents'] ... ].
NestedArray::setValue($form_state['values'], $dependent['#field_parents'], $field_values_location);
if (!empty($field['errors'])) {
$untriggered_dependents_errors = array_merge($untriggered_dependents_errors, $field['errors']);
}
}
if (!empty($untriggered_dependents_errors)) {
// Since Drupal provides no clean way to selectively remove error messages,
// we have to store all current form errors and error messages, clear them,
// filter out from our stored values the errors originating from untriggered
// dependent fields, and then reinstate remaining errors and messages.
$errors = array_diff_assoc((array) $form_state
->getErrors(), $untriggered_dependents_errors);
$form_state
->clearErrors();
$error_messages = \Drupal::messenger()
->messagesByType('error');
$removed_messages = array_values($untriggered_dependents_errors);
// Reinstate remaining errors.
foreach ($errors as $name => $error) {
$form_state
->setErrorByName($name, $error);
// form_set_error() calls drupal_set_message(), so we have to filter out
// these from the messages to avoid duplicates.
$removed_messages[] = $error;
}
// Reinstate remaining error messages (which, at this point,
// are messages that were originated outside of the validation process).
if (!empty($error_messages['error'])) {
$error_messages_array = $error_messages['error'] instanceof MarkupInterface ? $error_messages['error']
->jsonSerialize() : $error_messages['error'];
foreach (array_diff($error_messages_array, $removed_messages) as $message) {
\Drupal::messenger()
->addMessage($message, 'error');
}
}
}
}
/**
* Extracts submitted field values during form validation.
*
* @return array|NULL
* The requested field values parent. Actual field vales are stored under
* the key $element['#field_name'].
*/
protected static function formFieldGetValues($element, FormStateInterface $form_state) {
// Fall back to #parents to support custom dependencies.
$parents = !empty($element['#array_parents']) ? $element['#array_parents'] : $element['#parents'];
return NestedArray::getValue($form_state
->getValues(), $parents);
}
/**
* Evaluate if a dependency meets the requirements to be triggered.
*
* @param string $context
* Options:
* 'edit' if $values are extracted from $form_state.
* 'view' if $values are extracted from an entity.
*
* @return bool
* Can the dependency be triggered?
*/
protected static function evaluateDependency($context, $values, $options) {
if ($options['values_set'] == ConditionalFieldsInterface::CONDITIONAL_FIELDS_DEPENDENCY_VALUES_WIDGET) {
$dependency_values = $context == 'view' ? $options['value'] : $options['value_form'];
if ($options['condition'] === '!empty') {
$values = isset($values[0]['value']) ? $values[0]['value'] : $values;
$values = $values === '_none' ? '' : $values;
return !empty($values) ? TRUE : FALSE;
}
if ($options['condition'] === 'empty') {
$values = isset($values[0]['value']) ? $values[0]['value'] : $values;
$values = $values === '_none' ? '' : $values;
return empty($values) ? TRUE : FALSE;
}
// The BooleanList widget provides an empty array as $dependency_values,
// thus checking this field requires a different handling in case of
// 'checked or '!checked' conditions, where $value has 0 or 1.
if ($options['condition'] === 'checked' || $options['condition'] === '!checked') {
$dependency_values = (int) ($options['condition'] === 'checked');
}
// Simple case: both values are strings or integers. Should never happen in
// view context, but does no harm to check anyway.
if (!is_array($values) || is_array($values) && empty($values)) {
// Options elements consider "_none" value same as empty.
$values = $values === '_none' ? '' : $values;
if (!is_array($dependency_values)) {
// Some widgets store integers, but values saved in $dependency_values
// are always strings. Convert them to integers because we want to do a
// strict equality check to differentiate empty strings from '0'.
if (is_int($values) && is_numeric($dependency_values)) {
$dependency_values = (int) $dependency_values;
}
return $dependency_values === $values;
}
// If $values is a string and $dependency_values an array, convert $values
// to the standard field array form format. This covers cases like single
// value textfields.
$values = [
[
'value' => $values,
],
];
}
// If we are in form context, we are almost done.
if ($context == 'edit') {
// If $dependency_values is not an array, we can only assume that it
// should map to the first key of the first value of $values.
if (!is_array($dependency_values)) {
if (is_null(current($values)) || empty($options['value'][0])) {
return FALSE;
}
$key = current(array_keys((array) current($values)));
$dependency_values = [
[
$key => $options['value'][0][$key],
],
];
$temp[][$key] = $values[0][$key];
$values = $temp;
}
// Compare arrays recursively ignoring keys, since multiple select widgets
// values have numeric keys in form format and string keys in storage
// format.
return array_values($dependency_values) == array_values($values);
}
// $values, when viewing fields, may contain all sort of additional
// information, so filter out from $values the keys that are not present in
// $dependency_values.
// Values here are alway keyed by delta (regardless of multiple value
// settings).
foreach ($values as $delta => &$value) {
if (isset($dependency_values[$delta])) {
$value = array_intersect_key($value, $dependency_values[$delta]);
foreach ($value as $key => &$element_value) {
if (isset($dependency_values[$delta][$key]) && is_int($dependency_values[$delta][$key]) && is_numeric($element_value)) {
$element_value = (int) $element_value;
}
}
}
}
// Compare values.
foreach ($dependency_values as $delta => $dependency_value) {
if (!isset($values[$delta])) {
return FALSE;
}
foreach ($dependency_value as $key => $dependency_element_value) {
// Ignore keys set in the field and not in the dependency.
if (isset($values[$delta][$key]) && $values[$delta][$key] !== $dependency_element_value) {
return FALSE;
}
}
}
return TRUE;
}
// Flatten array of values.
$reference_values = [];
foreach ((array) $values as $value) {
// TODO: support multiple values.
$reference_values[] = is_array($value) ? array_shift($value) : $value;
}
// Regular expression method.
if ($options['values_set'] == ConditionalFieldsInterface::CONDITIONAL_FIELDS_DEPENDENCY_VALUES_REGEX) {
foreach ($reference_values as $reference_value) {
if (!preg_match('/' . $options['regex'] . '/', $reference_value)) {
return FALSE;
}
}
return TRUE;
}
if (!empty($options['values']) && is_string($options['values'])) {
$options['values'] = explode("\r\n", $options['values']);
}
switch ($options['values_set']) {
case ConditionalFieldsInterface::CONDITIONAL_FIELDS_DEPENDENCY_VALUES_AND:
$diff = array_diff($options['values'], $reference_values);
return empty($diff);
case ConditionalFieldsInterface::CONDITIONAL_FIELDS_DEPENDENCY_VALUES_OR:
$intersect = array_intersect($options['values'], $reference_values);
return !empty($intersect);
case ConditionalFieldsInterface::CONDITIONAL_FIELDS_DEPENDENCY_VALUES_XOR:
$intersect = array_intersect($options['values'], $reference_values);
return count($intersect) == 1;
case ConditionalFieldsInterface::CONDITIONAL_FIELDS_DEPENDENCY_VALUES_NOT:
$intersect = array_intersect($options['values'], $reference_values);
return empty($intersect);
}
return TRUE;
}
/**
* Helper function to add a property/value pair to a render array.
*
* Safely without overriding any pre-existing value.
*
* @param string $position
* Use 'append' if $value should be inserted at the end of
* the $element[$property] array, any other value to insert it
* at the beginning.
*/
public function elementAddProperty(&$element, $property, $value, $position = 'prepend') {
// Avoid overriding default element properties that might not yet be set.
if (!isset($element[$property])) {
$element[$property] = isset($element['#type']) ? $this->elementInfo
->getInfoProperty($element['#type'], $property, []) : [];
}
if (is_array($value)) {
// A method callback, wrap it around.
$value = [
$value,
];
}
if (in_array($value, $element[$property])) {
return;
}
switch ($position) {
case 'append':
$element[$property] = array_merge($element[$property], (array) $value);
break;
case 'prepend':
default:
$element[$property] = array_merge((array) $value, $element[$property]);
break;
}
}
/**
* Map the states based on the conjunctions.
*/
protected function mapStates() {
$states_new = [];
foreach ($this->states as $state_key => $value) {
// As the main object is ANDed together we can add the AND items directly.
if (!empty($this->states[$state_key]['AND'])) {
$states_new[$state_key] = $this->states[$state_key]['AND'];
}
// The OR and XOR groups are moved into a sub-array that has numeric keys
// so that we get a JSON array and not an object, as required by the States
// API for OR and XOR groupings.
if (!empty($this->states[$state_key]['OR'])) {
$or = [];
foreach ($this->states[$state_key]['OR'] as $constraint_key => $constraint_value) {
$or[] = [
$constraint_key => $constraint_value,
];
}
// '1' as a string so that we get an object (which means logic groups
// are ANDed together).
$states_new[$state_key]['1'] = $or;
}
if (!empty($this->states[$state_key]['XOR'])) {
$xor = [
'xor',
];
foreach ($this->states[$state_key]['XOR'] as $constraint_key => $constraint_value) {
$xor[] = [
$constraint_key => $constraint_value,
];
}
// '2' as a string so that we get an object.
$states_new[$state_key]['2'] = $xor;
}
}
return $states_new;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConditionalFieldsFormHelper:: |
protected | property | ||
ConditionalFieldsFormHelper:: |
protected | property | ||
ConditionalFieldsFormHelper:: |
protected | property | ||
ConditionalFieldsFormHelper:: |
protected | property | @var \Drupal\Core\Render\ElementInfoManager | |
ConditionalFieldsFormHelper:: |
protected | property | ||
ConditionalFieldsFormHelper:: |
protected | property | ||
ConditionalFieldsFormHelper:: |
protected | property | ||
ConditionalFieldsFormHelper:: |
protected | property | @var \Drupal\conditional_fields\ConditionalFieldsHandlersManager | |
ConditionalFieldsFormHelper:: |
protected | function | Add our Javascript and effects. | |
ConditionalFieldsFormHelper:: |
protected | function | Merge field states to general list. | |
ConditionalFieldsFormHelper:: |
protected | function | Add validation callback to manage dependent fields validation. | |
ConditionalFieldsFormHelper:: |
public | function | An after_build callback for forms with dependencies. | |
ConditionalFieldsFormHelper:: |
public static | function | Dependent field validation callback. | |
ConditionalFieldsFormHelper:: |
public | function | Helper function to add a property/value pair to a render array. | |
ConditionalFieldsFormHelper:: |
protected static | function | Evaluate a set of dependencies for a dependent field. | |
ConditionalFieldsFormHelper:: |
protected static | function | Evaluate if a dependency meets the requirements to be triggered. | |
ConditionalFieldsFormHelper:: |
protected static | function | Evaluates an array with 'AND', 'OR' and 'XOR' groupings. | |
ConditionalFieldsFormHelper:: |
protected static | function | Extracts submitted field values during form validation. | |
ConditionalFieldsFormHelper:: |
public static | function | Validation callback for any form with conditional fields. | |
ConditionalFieldsFormHelper:: |
protected static | function | Returns js effect for field. | |
ConditionalFieldsFormHelper:: |
protected static | function | Build a jQuery selector if it was not overridden by a custom value. | |
ConditionalFieldsFormHelper:: |
protected | function | Get list of states for the pair from the options. | |
ConditionalFieldsFormHelper:: |
protected | function | ||
ConditionalFieldsFormHelper:: |
protected | function | Map the states based on the conjunctions. | |
ConditionalFieldsFormHelper:: |
protected | function | Determine and register dependee field effects. | |
ConditionalFieldsFormHelper:: |
protected | function | Build and attach #states properties to dependent fields. | |
ConditionalFieldsFormHelper:: |
public | function |