- πΊπΈUnited States bluegeek9
Can you provide more information about what needs to be done to complete this issue?
Can this be closed?
Just found this old Drupal 7 code.
/**
* Validates if an unused component is selected as a minimal component.
*/
function _name_field_minimal_component_requirements($element, &$form_state) {
$required_field_set = array_flip(['given', 'family']);
$value = array_intersect_key($required_field_set, array_filter((array) $element['#value']));
if (empty($value)) {
$required_fields = array_intersect_key(_name_translations(), $required_field_set);
form_set_error(implode('][', $element['#parents']) . '][given]',
t('@label must have one of the following components: %components',
['@label' => $element['#title'], '%components' => implode(', ', $required_fields)]));
}
}
Postponed: needs info
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Can you provide more information about what needs to be done to complete this issue?
Can this be closed?