-
Notifications
You must be signed in to change notification settings - Fork 13
Continuation of #60: Fix Text Overlay configuration using Dependency Injection #62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
joecorall
merged 8 commits into
Islandora:2.x
from
digitalutsc:text-overlay-fix-continuation
Feb 9, 2026
Merged
Changes from 7 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
cae5009
Impllemented a solution to the issue with the state of the text overl…
DibyaGoswami 0cb1ccb
Edited code based on suggestions
DibyaGoswami a9e7f2e
feat: implement dependency injection
Aryan-R-Patel cabc093
style: format according to coding standards
Aryan-R-Patel 88c8963
style: fix missed lint errors
Aryan-R-Patel c68f6a7
feat: add post_update file, change settings, and refactor TextOverlay…
Aryan-R-Patel 8e7987f
style: fix lint errors
Aryan-R-Patel 5df0000
fix: update settings, setUp function in Kernel tests, refactor mirado…
Aryan-R-Patel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,6 @@ | ||
| mirador_library_installation_type: 'remote' | ||
| mirador_enabled_plugins: { } | ||
| mirador_enabled_plugins: | ||
| - miradorImageToolsPlugin | ||
| - textOverlayPlugin | ||
| iiif_manifest_url: '[node:url:unaliased:absolute]/manifest' | ||
| mirador_library_minified: false | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| <?php | ||
|
|
||
| /** | ||
| * @file | ||
| * Post update functions for the module Islandora Mirador. | ||
| */ | ||
|
|
||
| /** | ||
| * Enable plugins by default for existing sites. | ||
| */ | ||
| function islandora_mirador_post_update_enable_plugins() { | ||
| $config_factory = \Drupal::configFactory(); | ||
| $config = $config_factory->getEditable('islandora_mirador.settings'); | ||
|
|
||
| // Get currently enabled plugins. Default to empty array. | ||
| $enabled_plugins = $config->get('mirador_enabled_plugins'); | ||
| if (!is_array($enabled_plugins)) { | ||
| $enabled_plugins = []; | ||
| } | ||
|
|
||
| // The array of plugins we want to be enabled. | ||
| $plugins_to_add = ['textOverlayPlugin', 'miradorImageToolsPlugin']; | ||
| $changed = FALSE; | ||
|
|
||
| foreach ($plugins_to_add as $plugin_id) { | ||
| if (!in_array($plugin_id, $enabled_plugins)) { | ||
| $enabled_plugins[] = $plugin_id; | ||
|
joecorall marked this conversation as resolved.
Outdated
|
||
| $changed = TRUE; | ||
| } | ||
| } | ||
|
|
||
| if ($changed) { | ||
| $config->set('mirador_enabled_plugins', $enabled_plugins); | ||
| $config->save(TRUE); | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.