|
|
@ -324,7 +324,6 @@ function islandora_form_alter(&$form, FormStateInterface $form_state, $form_id) |
|
|
|
|
|
|
|
|
|
|
|
if (in_array($form['#form_id'], $media_add_forms)) { |
|
|
|
if (in_array($form['#form_id'], $media_add_forms)) { |
|
|
|
$params = \Drupal::request()->query->all(); |
|
|
|
$params = \Drupal::request()->query->all(); |
|
|
|
|
|
|
|
|
|
|
|
if (isset($params['edit'])) { |
|
|
|
if (isset($params['edit'])) { |
|
|
|
$media_of_nid = $params['edit']['field_media_of']['widget'][0]['target_id']; |
|
|
|
$media_of_nid = $params['edit']['field_media_of']['widget'][0]['target_id']; |
|
|
|
$node = \Drupal::entityTypeManager()->getStorage('node')->load($media_of_nid); |
|
|
|
$node = \Drupal::entityTypeManager()->getStorage('node')->load($media_of_nid); |
|
|
@ -333,20 +332,17 @@ function islandora_form_alter(&$form, FormStateInterface $form_state, $form_id) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
$form_object = $form_state->getFormObject(); |
|
|
|
$form_object = $form_state->getFormObject(); |
|
|
|
|
|
|
|
|
|
|
|
$utils = \Drupal::service('islandora.utils'); |
|
|
|
$utils = \Drupal::service('islandora.utils'); |
|
|
|
|
|
|
|
|
|
|
|
// kint($form,$form_state); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ($form_object instanceof EntityForm) { |
|
|
|
if ($form_object instanceof EntityForm) { |
|
|
|
$entity = $form_object->getEntity(); |
|
|
|
$entity = $form_object->getEntity(); |
|
|
|
if ($utils->isIslandoraType($entity->getEntityTypeId(), $entity->bundle()) && strpos($form['#form_id'], 'delete_form') !== FALSE) { |
|
|
|
if ($utils->isIslandoraType($entity->getEntityTypeId(), $entity->bundle()) && strpos($form['#form_id'], 'delete_form') !== FALSE) { |
|
|
|
$form['delete_associated_content'] = array( |
|
|
|
$form['delete_associated_content'] = [ |
|
|
|
'#type' => 'checkbox', |
|
|
|
'#type' => 'checkbox', |
|
|
|
'#title' => t('Delete all associated medias and nodes'), |
|
|
|
'#title' => t('Delete all associated medias and nodes'), |
|
|
|
); |
|
|
|
]; |
|
|
|
|
|
|
|
|
|
|
|
$medias = $utils->getMedia($form_state->getFormObject()->getEntity()); |
|
|
|
$medias = $utils->getMedia($form_state->getFormObject()->getEntity()); |
|
|
|
$media_list = ""; |
|
|
|
$media_list = ""; |
|
|
@ -355,9 +351,9 @@ function islandora_form_alter(&$form, FormStateInterface $form_state, $form_id) |
|
|
|
$media_list .= "<li>{$media->getName()}</li>"; |
|
|
|
$media_list .= "<li>{$media->getName()}</li>"; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
$form['media_items'] = array( |
|
|
|
$form['media_items'] = [ |
|
|
|
'#suffix' => "<ul>{$media_list}</ul>", // Add markup after form item |
|
|
|
'#suffix' => "<ul>{$media_list}</ul>", |
|
|
|
); |
|
|
|
]; |
|
|
|
|
|
|
|
|
|
|
|
$form['actions']['submit']['#submit'][] = 'islandora_object_delete_form_submit'; |
|
|
|
$form['actions']['submit']['#submit'][] = 'islandora_object_delete_form_submit'; |
|
|
|
return $form; |
|
|
|
return $form; |
|
|
@ -366,6 +362,9 @@ function islandora_form_alter(&$form, FormStateInterface $form_state, $form_id) |
|
|
|
return $form; |
|
|
|
return $form; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Implements a submit handler for the delete form. |
|
|
|
|
|
|
|
*/ |
|
|
|
function islandora_object_delete_form_submit($form, &$form_state) { |
|
|
|
function islandora_object_delete_form_submit($form, &$form_state) { |
|
|
|
|
|
|
|
|
|
|
|
$result = $form_state->getValues('delete_associated_content'); |
|
|
|
$result = $form_state->getValues('delete_associated_content'); |
|
|
@ -393,7 +392,6 @@ function islandora_field_widget_image_image_form_alter(&$element, $form_state, $ |
|
|
|
function islandora_add_default_image_alt_text($element, $form_state, $form) { |
|
|
|
function islandora_add_default_image_alt_text($element, $form_state, $form) { |
|
|
|
if ($element['alt']['#access']) { |
|
|
|
if ($element['alt']['#access']) { |
|
|
|
$params = \Drupal::request()->query->all(); |
|
|
|
$params = \Drupal::request()->query->all(); |
|
|
|
|
|
|
|
|
|
|
|
if (isset($params['edit'])) { |
|
|
|
if (isset($params['edit'])) { |
|
|
|
$media_of_nid = $params['edit']['field_media_of']['widget'][0]['target_id']; |
|
|
|
$media_of_nid = $params['edit']['field_media_of']['widget'][0]['target_id']; |
|
|
|
$node = \Drupal::entityTypeManager()->getStorage('node')->load($media_of_nid); |
|
|
|
$node = \Drupal::entityTypeManager()->getStorage('node')->load($media_of_nid); |
|
|
@ -471,7 +469,7 @@ function islandora_entity_extra_field_info() { |
|
|
|
if (!empty($pseudo_bundles)) { |
|
|
|
if (!empty($pseudo_bundles)) { |
|
|
|
foreach ($pseudo_bundles as $key) { |
|
|
|
foreach ($pseudo_bundles as $key) { |
|
|
|
[$bundle, $content_entity] = explode(":", $key); |
|
|
|
[$bundle, $content_entity] = explode(":", $key); |
|
|
|
$extra_field[$content_entity][$bundle]['display']['field_gemini_uri'] = [ |
|
|
|
$extra_field[$content_entity][$bundle]['display'][IslandoraSettingsForm::GEMINI_PSEUDO_FIELD] = [ |
|
|
|
'label' => t('Fedora URI'), |
|
|
|
'label' => t('Fedora URI'), |
|
|
|
'description' => t('The URI to the persistent'), |
|
|
|
'description' => t('The URI to the persistent'), |
|
|
|
'weight' => 100, |
|
|
|
'weight' => 100, |
|
|
@ -596,6 +594,3 @@ function islandora_preprocess_views_view_table(&$variables) { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|