Skip to content

Commit

Permalink
Update to use the new hook. (#992)
Browse files Browse the repository at this point in the history
`hook_field_widget_WIDGET_TYPE_form_alter()` was deprecated in Drupal 9.2.0 and removed in Drupal 10; however, it was what this functionality was using.

It has been replaced with
`hook_field_widget_single_element_WIDGET_TYPE_form_alter()`.

See: https://www.drupal.org/node/3180429
  • Loading branch information
adam-vessey authored Nov 2, 2023
1 parent d5556f4 commit 095e0ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions islandora.module
Original file line number Diff line number Diff line change
Expand Up @@ -545,14 +545,14 @@ function islandora_object_delete_form_submit($form, FormStateInterface $form_sta
}

/**
* Implements hook_field_widget_WIDGET_TYPE_form_alter().
* Implements hook_field_widget_single_element_WIDGET_TYPE_form_alter().
*/
function islandora_field_widget_image_image_form_alter(&$element, $form_state, $context) {
function islandora_field_widget_single_element_image_image_form_alter(&$element, $form_state, $context) {
$element['#process'][] = 'islandora_add_default_image_alt_text';
}

/**
* Callback for hook_field_widget_WIDGET_TYPE_form_alter().
* Callback for hook_field_widget_single_element_WIDGET_TYPE_form_alter().
*/
function islandora_add_default_image_alt_text($element, $form_state, $form) {
if ($element['alt']['#access']) {
Expand Down

0 comments on commit 095e0ec

Please sign in to comment.