Skip to content

Commit

Permalink
minor changes and post_update for delete_media_and_files
Browse files Browse the repository at this point in the history
  • Loading branch information
shriram10567 committed Dec 2, 2022
1 parent e15b632 commit ee85472
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 16 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions islandora.libraries.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
drupal.islandora.theme_css:
islandora:
version: VERSION
css:
theme:
css/islandora.theme.css: {}
css/islandora.css: {}
32 changes: 19 additions & 13 deletions islandora.module
Original file line number Diff line number Diff line change
Expand Up @@ -355,15 +355,24 @@ function islandora_form_alter(&$form, FormStateInterface $form_state, $form_id)
$media_list[] = $media->getName();
}

$form['media_items'] = [
$form['container'] = [
'#type' => 'container',
'#states' => [
'visible' => [
':input[name="delete_associated_content"]' => ['checked' => TRUE],
],
],
];

$form['container']['media_items'] = [
'#theme' => 'item_list',
'#type' => 'ul',
'#items' => $media_list,
'#attributes' => ['class' => ['islandora-media-items']],
'#wrapper_attributes' => ['class' => ['container']],
'#attached' => [
'library' => [
'islandora/drupal.islandora.theme_css',
'islandora/islandora',
],
],
];
Expand All @@ -380,7 +389,7 @@ function islandora_form_alter(&$form, FormStateInterface $form_state, $form_id)
/**
* Implements a submit handler for the delete form.
*/
function islandora_object_delete_form_submit($form, &$form_state) {
function islandora_object_delete_form_submit($form, FormStateInterface $form_state) {

$result = $form_state->getValues('delete_associated_content');
$utils = \Drupal::service('islandora.utils');
Expand All @@ -389,14 +398,13 @@ function islandora_object_delete_form_submit($form, &$form_state) {

$node = $form_state->getFormObject()->getEntity();
$medias = $utils->getMedia($node);
$media_list = "";
$media_list = [];

$entity_field_manager = \Drupal::service('entity_field.manager');
$current_user = \Drupal::currentUser();
$logger = \Drupal::logger('logger.channel.islandora');
$messenger = \Drupal::messenger();

$total_count = 0;
$delete_media = [];
$media_translations = [];
$media_files = [];
Expand Down Expand Up @@ -424,7 +432,6 @@ function islandora_object_delete_form_submit($form, &$form_state) {
continue;
}
$media_files[$id][$file->id()] = $file;
$total_count++;
}
}
}
Expand All @@ -435,7 +442,6 @@ function islandora_object_delete_form_submit($form, &$form_state) {
if ($entity->isDefaultTranslation()) {
$delete_media[$id] = $entity;
unset($media_translations[$id]);
$total_count += count($entity->getTranslationLanguages());
}
elseif (!isset($delete_media[$id])) {
$media_translations[$id][] = $entity;
Expand All @@ -447,7 +453,7 @@ function islandora_object_delete_form_submit($form, &$form_state) {
foreach ($delete_media as $id => $media) {
try {
$media->delete();
$media_list .= $id . ", ";
$media_list[] = $id;
$logger->notice('The media %label has been deleted.', [
'%label' => $media->label(),
]);
Expand Down Expand Up @@ -490,12 +496,11 @@ function islandora_object_delete_form_submit($form, &$form_state) {
'@language' => $translation->language()->getName(),
]);
}
$total_count += count($translations);
}
}

if ($inaccessible_entities) {
$messenger->addWarning("@count items has not been deleted because you do not have the necessary permissions.", [
$messenger->addWarning("@count items have not been deleted because you do not have the necessary permissions.", [
'@count' => count($inaccessible_entities),
]);
}
Expand All @@ -507,9 +512,10 @@ function islandora_object_delete_form_submit($form, &$form_state) {
'#value' => t("The repository item @node and @media", [
'@node' => $node->getTitle(),
'@media' => \Drupal::translation()->formatPlural(
substr_count($media_list, ",") + 1, 'the media with the id @media has been deleted.',
'the medias with the id @media have been deleted.',
['@media' => mb_substr($media_list, 0, strlen($media_list) - 2)]),
count($media_list), 'the media with the id @media has been deleted.',
'the medias with the ids @media have been deleted.',
['@media' => implode(", ", $media_list)],
),
]),
],
];
Expand Down
16 changes: 16 additions & 0 deletions islandora.post_update.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

/**
* @file
* Post updates.
*/

/**
* Set default value for delete_media_and_files field in settings.
*/
function islandora_post_update_delete_media_and_files() {
$config_factory = \Drupal::configFactory();
$config = $config_factory->getEditable('islandora.settings');
$config->set('delete_media_and_files', TRUE);
$config->save(TRUE);
}
2 changes: 1 addition & 1 deletion src/Form/IslandoraSettingsForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ public function buildForm(array $form, FormStateInterface $form_state) {
$form[self::NODE_DELETE_MEDIA_AND_FILES] = [
'#type' => 'checkbox',
'#title' => $this->t('Node Delete with Media and Files'),
'#description' => $this->t('adds a checkbox in the "Delete" tab of islandora objects to delete media and files associated with the object.'
'#description' => $this->t('Adds a checkbox in the "Delete" tab of islandora objects to delete media and files associated with the object.'
),
'#default_value' => (bool) $config->get(self::NODE_DELETE_MEDIA_AND_FILES),
];
Expand Down

0 comments on commit ee85472

Please sign in to comment.