Skip to content
Snippets Groups Projects
Commit 077032dd authored by Eric Bremner's avatar Eric Bremner Committed by Kevin Paxman
Browse files

ISTWCMS-5880: fixing the required for image in banners

parent fd3962ef
No related branches found
No related tags found
3 merge requests!284Feature/istwcms 5880 ebremner banners above,!274Draft: ISTWCMS-5551: fixing office hours display,!260Feature/istwcms 5668 a5kulkar rename references to publications
...@@ -1163,9 +1163,25 @@ function _uw_cfg_common_banner_validate(array &$form, FormStateInterface $form_s ...@@ -1163,9 +1163,25 @@ function _uw_cfg_common_banner_validate(array &$form, FormStateInterface $form_s
* Implements hook_field_widget_WIDGET_TYPE_form_alter(). * Implements hook_field_widget_WIDGET_TYPE_form_alter().
*/ */
function uw_cfg_common_field_widget_entity_reference_paragraphs_form_alter(&$element, &$form_state, $context) { function uw_cfg_common_field_widget_entity_reference_paragraphs_form_alter(&$element, &$form_state, $context) {
// If this is a banner image, add the required manually.
if ($element['#paragraph_type'] == 'uw_para_image_banner') { if ($element['#paragraph_type'] == 'uw_para_image_banner') {
// If this is not a block, add the class for required
// on the image, we need to do this so that when using
// banners with media, the required does not work properly
// when banners are not selected.
// If it is a block, just add the required to the element.
if (!isset($context['form']['#block'])) { if (!isset($context['form']['#block'])) {
$element['subform']['field_uw_ban_image']['widget']['#attributes']['class'] = 'form-required js-form-required';
// If there already is classes set, then add to the array.
// If no classes yet, add as an array.
if (isset( $element['subform']['field_uw_ban_image']['widget']['#attributes']['class'])) {
$element['subform']['field_uw_ban_image']['widget']['#attributes']['class'][] = 'form-required';
}
else {
$element['subform']['field_uw_ban_image']['widget']['#attributes']['class'] = ['form-required'];
}
} }
else { else {
$element['subform']['field_uw_ban_image']['widget']['#required'] = TRUE; $element['subform']['field_uw_ban_image']['widget']['#required'] = TRUE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment