Skip to content
Snippets Groups Projects
Commit 64fd166b authored by Eric Bremner's avatar Eric Bremner
Browse files

ISTWCMS-5551: adding code to remove comments from regular days service hours

parent ecf6bcf7
No related branches found
No related tags found
2 merge requests!60ISTWCMS-6095 Update maxlength settings for title, text fields and link fields...,!33ISTWCMS-5551 update office hours
...@@ -95,6 +95,17 @@ function _uw_ct_service_get_location_options(): array { ...@@ -95,6 +95,17 @@ function _uw_ct_service_get_location_options(): array {
* Implements hook_form_FORM_ID_alter(). * Implements hook_form_FORM_ID_alter().
*/ */
function uw_ct_service_form_node_uw_ct_service_form_alter(array &$form, FormStateInterface $form_state, string $form_id): void { function uw_ct_service_form_node_uw_ct_service_form_alter(array &$form, FormStateInterface $form_state, string $form_id): void {
// Unset the table header for comments in the regular days.
unset($form['field_uw_service_hours']['widget']['office_hours']['value']['#header']['comment']);
// Step through each of the regular days and remove the comments.
foreach ($form['field_uw_service_hours']['widget']['office_hours']['value'] as $index => $value) {
if (is_int($index)) {
$form['field_uw_service_hours']['widget']['office_hours']['value'][$index]['#field_settings']['comment'] = 0;
}
}
// Add locations pre-fill menu. // Add locations pre-fill menu.
$form['group_service_location']['location_presets_select'] = [ $form['group_service_location']['location_presets_select'] = [
'#title' => t('Location lookup'), '#title' => t('Location lookup'),
......
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