Skip to content

Commit

Permalink
XReplace two logic checks with one.
Browse files Browse the repository at this point in the history
  • Loading branch information
mjordan authored and nchiasson-dgi committed Apr 14, 2021
1 parent 7e97555 commit 7547553
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions islandora.module
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,51 @@ function islandora_preprocess_node(&$variables) {
}
}

/**
* Implements hook_form_alter().
*/
function islandora_form_alter(&$form, FormStateInterface $form_state, $form_id) {
$media_add_forms = ['media_audio_add_form', 'media_document_add_form',
'media_extracted_text_add_form', 'media_file_add_form', 'media_image_add_form',
'media_fits_technical_metadata_add_form', 'media_video_add_form',
];

if (in_array($form['#form_id'], $media_add_forms)) {
$params = \Drupal::request()->query->all();
if (isset($params['edit'])) {
$media_of_nid = $params['edit']['field_media_of']['widget'][0]['target_id'];
$node = \Drupal::entityTypeManager()->getStorage('node')->load($media_of_nid);
if ($node) {
$form['name']['widget'][0]['value']['#default_value'] = $node->getTitle();
}
}
}
}

/**
* Implements hook_field_widget_WIDGET_TYPE_form_alter().
*/
function islandora_field_widget_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().
*/
function islandora_add_default_image_alt_text($element, $form_state, $form) {
if ($element['alt']['#access']) {
$params = \Drupal::request()->query->all();
if (isset($params['edit'])) {
$media_of_nid = $params['edit']['field_media_of']['widget'][0]['target_id'];
$node = \Drupal::entityTypeManager()->getStorage('node')->load($media_of_nid);
if ($node) {
$element['alt']['#default_value'] = $node->getTitle();
}
}
}
return $element;
}

/**
* Implements hook_entity_form_display_alter().
*/
Expand Down

0 comments on commit 7547553

Please sign in to comment.