From bdc9f19051016aa1749310297e138ce2cb82e491 Mon Sep 17 00:00:00 2001 From: Eric Bremner <ebremner@uwaterloo.ca> Date: Sat, 3 Dec 2022 00:27:29 -0500 Subject: [PATCH] ISTWCMS-5846: ensuring that opportunities works with blank summaries --- uw_cfg_common.module | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/uw_cfg_common.module b/uw_cfg_common.module index 4fbedf2e..915ad3a0 100644 --- a/uw_cfg_common.module +++ b/uw_cfg_common.module @@ -941,10 +941,17 @@ function uw_cfg_common_form_alter(array &$form, FormStateInterface $form_state, // to be used in the field name. $node_type = str_replace('_item', '', $node_type); - // Now since all the fields names are the same, - // field_uw_<node_type>_summary, we can get - // the proper field name. - $field_name = 'field_uw_' . $node_type . '_summary'; + // If the node type is an opportunity, we have to give + // the specific field name. + if ($node_type == 'opportunity') { + $field_name = 'field_uw_opportunity_position'; + } + // Now since all the rest of the field names + // are the same, field_uw_<node_type>_summary, + // we can get the proper field name. + else { + $field_name = 'field_uw_' . $node_type . '_summary'; + } // Set the states of the summary, required and visible. $form[$field_name]['widget'][0]['#states'] = [ -- GitLab