diff --git a/.prettierrc.json b/.prettierrc.json new file mode 100644 index 000000000..cccbb6fcb --- /dev/null +++ b/.prettierrc.json @@ -0,0 +1,16 @@ +{ + "printWidth": 80, + "semi": true, + "singleQuote": true, + "trailingComma": "all", + "overrides": [ + { + "files": ["*.css"], + "options": { + "parser": "css", + "printWidth": 10000, + "singleQuote": false + } + } + ] +} diff --git a/web/modules/custom/collation_fixer/collation_fixer.info.yml b/web/modules/custom/collation_fixer/collation_fixer.info.yml index 22b3d1853..e703da9a1 100644 --- a/web/modules/custom/collation_fixer/collation_fixer.info.yml +++ b/web/modules/custom/collation_fixer/collation_fixer.info.yml @@ -1,4 +1,4 @@ type: module -name: "Collation Fixer" -description: "Fix MySQL Collations" +name: 'Collation Fixer' +description: 'Fix MySQL Collations' core_version_requirement: ^10 diff --git a/web/modules/custom/collation_fixer/collation_fixer.permissions.yml b/web/modules/custom/collation_fixer/collation_fixer.permissions.yml index d26498460..c8cd20654 100644 --- a/web/modules/custom/collation_fixer/collation_fixer.permissions.yml +++ b/web/modules/custom/collation_fixer/collation_fixer.permissions.yml @@ -1,3 +1,3 @@ fix database collation: - title: "Fix database collation" - description: "Performs corrections of database collations." + title: 'Fix database collation' + description: 'Performs corrections of database collations.' diff --git a/web/modules/custom/collation_fixer/collation_fixer.routing.yml b/web/modules/custom/collation_fixer/collation_fixer.routing.yml index 5dceb15ca..008e4f6dc 100644 --- a/web/modules/custom/collation_fixer/collation_fixer.routing.yml +++ b/web/modules/custom/collation_fixer/collation_fixer.routing.yml @@ -1,7 +1,7 @@ collation_fixer.confirm: - path: "admin/collation-fixer/{table}/confirm" + path: 'admin/collation-fixer/{table}/confirm' defaults: - _title: "Fix collation" + _title: 'Fix collation' _form: 'Drupal\collation_fixer\Form\CollationFixerForm' requirements: - _permission: "fix database collation" + _permission: 'fix database collation' diff --git a/web/modules/custom/collation_fixer/collation_fixer.services.yml b/web/modules/custom/collation_fixer/collation_fixer.services.yml index abfd9b4dd..c6e3e9854 100644 --- a/web/modules/custom/collation_fixer/collation_fixer.services.yml +++ b/web/modules/custom/collation_fixer/collation_fixer.services.yml @@ -2,9 +2,9 @@ services: collation_fixer.collation_fixer: class: Drupal\collation_fixer\CollationFixer arguments: - - "@database" - - "@module_handler" - - "@entity_type.manager" - - "@entity_field.manager" + - '@database' + - '@module_handler' + - '@entity_type.manager' + - '@entity_field.manager' - Drupal\collation_fixer\CollationFixer: "@collation_fixer.collation_fixer" + Drupal\collation_fixer\CollationFixer: '@collation_fixer.collation_fixer' diff --git a/web/modules/custom/collation_fixer/drush.services.yml b/web/modules/custom/collation_fixer/drush.services.yml index 9627261db..fad719048 100644 --- a/web/modules/custom/collation_fixer/drush.services.yml +++ b/web/modules/custom/collation_fixer/drush.services.yml @@ -2,6 +2,6 @@ services: collation_fixer.commands: class: \Drupal\collation_fixer\Commands\CollationFixerCommands arguments: - - "@collation_fixer.collation_fixer" + - '@collation_fixer.collation_fixer' tags: - { name: drush.command } diff --git a/web/modules/custom/dpl_admin/assets/dpl_admin.js b/web/modules/custom/dpl_admin/assets/dpl_admin.js index 9352ef1bb..910c159ad 100644 --- a/web/modules/custom/dpl_admin/assets/dpl_admin.js +++ b/web/modules/custom/dpl_admin/assets/dpl_admin.js @@ -5,11 +5,11 @@ Drupal.behaviors.dpl_admin = { const dateTimeFields = context.querySelectorAll( '[type="date"][name$="[value][date]"]:not(.is-dpl-admin-range-initialized),' + - '[type="time"][name$="[value][time]"]:not(.is-dpl-admin-range-initialized)' + '[type="time"][name$="[value][time]"]:not(.is-dpl-admin-range-initialized)', ); dateTimeFields.forEach((input) => { - input.classList.add("is-dpl-admin-range-initialized"); + input.classList.add('is-dpl-admin-range-initialized'); that.dateRangeInit(input, context); }); }, @@ -17,7 +17,7 @@ Drupal.behaviors.dpl_admin = { // A helper function, adding X minutes to a time string ("14:15" => "14:30"). addMinutesToTime(timestring, minutesToAdd) { // Parse the input time string - const [hours, minutes] = timestring.split(":").map(Number); + const [hours, minutes] = timestring.split(':').map(Number); // Convert hours and minutes to minutes and add 15 minutes const totalMinutes = hours * 60 + minutes + minutesToAdd; @@ -30,8 +30,8 @@ Drupal.behaviors.dpl_admin = { const newMinutes = totalMinutes % 60; // Format the new time as HH:MM, padding with zeroes if necessary - const formattedHours = newHours.toString().padStart(2, "0"); - const formattedMinutes = newMinutes.toString().padStart(2, "0"); + const formattedHours = newHours.toString().padStart(2, '0'); + const formattedMinutes = newMinutes.toString().padStart(2, '0'); return `${formattedHours}:${formattedMinutes}`; }, @@ -39,15 +39,15 @@ Drupal.behaviors.dpl_admin = { // Set the start date as a default date for end date input fields. dateRangeInit(input, context) { const that = this; - const name = input.getAttribute("name"); + const name = input.getAttribute('name'); if (!name) { return; } // Create the name of the end date element based on the name of the start date element - const endValueName = name.replace("[value]", "[end_value]"); - input.addEventListener("change", () => { + const endValueName = name.replace('[value]', '[end_value]'); + input.addEventListener('change', () => { // Recurring events/Drupal appears to insert the end value input using // AJAX after altering the start value, despite the input already // existing. We cant really listen for that, so we'll do a poor-mans @@ -56,7 +56,7 @@ Drupal.behaviors.dpl_admin = { setTimeout(() => { let inputValue = input.value; - if (name.includes("[time]")) { + if (name.includes('[time]')) { inputValue = that.addMinutesToTime(inputValue, 60); } diff --git a/web/modules/custom/dpl_admin/dpl_admin.info.yml b/web/modules/custom/dpl_admin/dpl_admin.info.yml index 2f08fefc8..765976272 100644 --- a/web/modules/custom/dpl_admin/dpl_admin.info.yml +++ b/web/modules/custom/dpl_admin/dpl_admin.info.yml @@ -1,7 +1,7 @@ -name: "Admin" +name: 'Admin' type: module -description: "Functionality related to the admin/editor experience" -package: "DPL" +description: 'Functionality related to the admin/editor experience' +package: 'DPL' core_version_requirement: ^10 dependencies: diff --git a/web/modules/custom/dpl_admin/dpl_admin.links.action.yml b/web/modules/custom/dpl_admin/dpl_admin.links.action.yml index 772fa6f49..b68104519 100644 --- a/web/modules/custom/dpl_admin/dpl_admin.links.action.yml +++ b/web/modules/custom/dpl_admin/dpl_admin.links.action.yml @@ -1,6 +1,6 @@ dpl_admin.add_content: route_name: dpl_admin.add_content - title: "Add Content" + title: 'Add Content' appears_on: - events.admin.content - view.event_series_admin.page_1 diff --git a/web/modules/custom/dpl_admin/dpl_admin.links.menu.yml b/web/modules/custom/dpl_admin/dpl_admin.links.menu.yml index 306c0f8b4..47c2574ac 100644 --- a/web/modules/custom/dpl_admin/dpl_admin.links.menu.yml +++ b/web/modules/custom/dpl_admin/dpl_admin.links.menu.yml @@ -1,20 +1,20 @@ dpl_admin.add_content: - title: "Add content" + title: 'Add content' parent: system.admin_content route_name: dpl_admin.add_content weight: 5 dpl_admin.redirect: - title: "Redirects" + title: 'Redirects' parent: system.admin route_name: redirect.list weight: 10 dpl_admin.redirect_add: - title: "Add redirect" + title: 'Add redirect' parent: dpl_admin.redirect route_name: redirect.add weight: 1 dpl_admin.logout: - title: "Logout" + title: 'Logout' parent: system.admin route_name: user.logout weight: 9999 diff --git a/web/modules/custom/dpl_admin/dpl_admin.links.task.yml b/web/modules/custom/dpl_admin/dpl_admin.links.task.yml index 4f4749a19..dbec23132 100644 --- a/web/modules/custom/dpl_admin/dpl_admin.links.task.yml +++ b/web/modules/custom/dpl_admin/dpl_admin.links.task.yml @@ -1,11 +1,11 @@ dpl_admin.events: - title: "Event series" + title: 'Event series' route_name: view.event_series_admin.page_1 base_route: system.admin_content weight: 10 dpl_admin.media: - title: "Media" + title: 'Media' route_name: view.media_library.page base_route: system.admin_content weight: 5 diff --git a/web/modules/custom/dpl_admin/dpl_admin.permissions.yml b/web/modules/custom/dpl_admin/dpl_admin.permissions.yml index f7d98a991..78bbc55ba 100644 --- a/web/modules/custom/dpl_admin/dpl_admin.permissions.yml +++ b/web/modules/custom/dpl_admin/dpl_admin.permissions.yml @@ -1,2 +1,2 @@ dpl admin access pages: - title: "Access DPL admin pages" + title: 'Access DPL admin pages' diff --git a/web/modules/custom/dpl_admin/dpl_admin.routing.yml b/web/modules/custom/dpl_admin/dpl_admin.routing.yml index e9221c28e..539d14c2d 100644 --- a/web/modules/custom/dpl_admin/dpl_admin.routing.yml +++ b/web/modules/custom/dpl_admin/dpl_admin.routing.yml @@ -1,7 +1,7 @@ dpl_admin.add_content: - path: "/admin/content/add" + path: '/admin/content/add' defaults: _controller: '\Drupal\dpl_admin\Controller\AdminPages::addContentPage' - _title: "Add new content" + _title: 'Add new content' requirements: - _permission: "dpl admin access pages" + _permission: 'dpl admin access pages' diff --git a/web/modules/custom/dpl_article/dpl_article.info.yml b/web/modules/custom/dpl_article/dpl_article.info.yml index 1b024a53e..03693f9c4 100644 --- a/web/modules/custom/dpl_article/dpl_article.info.yml +++ b/web/modules/custom/dpl_article/dpl_article.info.yml @@ -1,5 +1,5 @@ -name: "Article" +name: 'Article' type: module -description: "Functionality related to creating article content." -package: "DPL" +description: 'Functionality related to creating article content.' +package: 'DPL' core_version_requirement: ^10 diff --git a/web/modules/custom/dpl_breadcrumb/dpl_breadcrumb.info.yml b/web/modules/custom/dpl_breadcrumb/dpl_breadcrumb.info.yml index 5c9daa6ca..320a1576a 100644 --- a/web/modules/custom/dpl_breadcrumb/dpl_breadcrumb.info.yml +++ b/web/modules/custom/dpl_breadcrumb/dpl_breadcrumb.info.yml @@ -1,6 +1,6 @@ -name: "DPL Breadcrumb" +name: 'DPL Breadcrumb' type: module -description: "Breadcrumbs and automatic URL aliases, based on content structure." +description: 'Breadcrumbs and automatic URL aliases, based on content structure.' package: DPL core_version_requirement: ^10 dependencies: diff --git a/web/modules/custom/dpl_breadcrumb/dpl_breadcrumb.links.menu.yml b/web/modules/custom/dpl_breadcrumb/dpl_breadcrumb.links.menu.yml index c88161e9a..bdf6f7a7a 100644 --- a/web/modules/custom/dpl_breadcrumb/dpl_breadcrumb.links.menu.yml +++ b/web/modules/custom/dpl_breadcrumb/dpl_breadcrumb.links.menu.yml @@ -1,11 +1,11 @@ dpl_breadcrumb.breadcrumb_structure: - title: "Breadcrumb" + title: 'Breadcrumb' parent: system.admin route_name: entity.taxonomy_vocabulary.overview_form - route_parameters: { taxonomy_vocabulary: "breadcrumb_structure" } + route_parameters: { taxonomy_vocabulary: 'breadcrumb_structure' } weight: -8 dpl_breadcrumb.breadcrumb_structure_add: - title: "Add new" + title: 'Add new' parent: dpl_breadcrumb.breadcrumb_structure route_name: entity.taxonomy_term.add_form - route_parameters: { taxonomy_vocabulary: "breadcrumb_structure" } + route_parameters: { taxonomy_vocabulary: 'breadcrumb_structure' } diff --git a/web/modules/custom/dpl_breadcrumb/dpl_breadcrumb.services.yml b/web/modules/custom/dpl_breadcrumb/dpl_breadcrumb.services.yml index 525dc392a..e05639cf3 100644 --- a/web/modules/custom/dpl_breadcrumb/dpl_breadcrumb.services.yml +++ b/web/modules/custom/dpl_breadcrumb/dpl_breadcrumb.services.yml @@ -1,19 +1,19 @@ services: dpl_breadcrumb.logger: parent: logger.channel_base - arguments: ["dpl_breadcrumb"] + arguments: ['dpl_breadcrumb'] dpl_breadcrumb.breadcrumb_helper: class: Drupal\dpl_breadcrumb\Services\BreadcrumbHelper arguments: [ - "@entity_type.manager", - "@language_manager", - "@pathauto.alias_cleaner", - "@string_translation", - "@dpl_breadcrumb.logger", + '@entity_type.manager', + '@language_manager', + '@pathauto.alias_cleaner', + '@string_translation', + '@dpl_breadcrumb.logger', ] dpl_breadcrumb.redirect_structure_term: class: Drupal\dpl_breadcrumb\EventSubscriber\StructureTermRedirect - arguments: ["@dpl_breadcrumb.breadcrumb_helper"] + arguments: ['@dpl_breadcrumb.breadcrumb_helper'] tags: - { name: event_subscriber } diff --git a/web/modules/custom/dpl_cache_settings/dpl_cache_settings.info.yml b/web/modules/custom/dpl_cache_settings/dpl_cache_settings.info.yml index d61649277..7932f509f 100644 --- a/web/modules/custom/dpl_cache_settings/dpl_cache_settings.info.yml +++ b/web/modules/custom/dpl_cache_settings/dpl_cache_settings.info.yml @@ -1,5 +1,5 @@ -name: "DPL Cache settings" +name: 'DPL Cache settings' type: module -description: "Giving admins a clearer access to cache-clearing, and the consequences." -package: "DPL" +description: 'Giving admins a clearer access to cache-clearing, and the consequences.' +package: 'DPL' core_version_requirement: ^10 diff --git a/web/modules/custom/dpl_cache_settings/dpl_cache_settings.links.menu.yml b/web/modules/custom/dpl_cache_settings/dpl_cache_settings.links.menu.yml index 7f53f69e9..f189f4954 100644 --- a/web/modules/custom/dpl_cache_settings/dpl_cache_settings.links.menu.yml +++ b/web/modules/custom/dpl_cache_settings/dpl_cache_settings.links.menu.yml @@ -1,5 +1,5 @@ dpl_cache_settings.cache_clear: - title: "Clear cache" + title: 'Clear cache' route_name: dpl_cache_settings.settings_form parent: system.admin_config_development weight: 1000 diff --git a/web/modules/custom/dpl_cache_settings/dpl_cache_settings.permissions.yml b/web/modules/custom/dpl_cache_settings/dpl_cache_settings.permissions.yml index ce610e01d..d7042c941 100644 --- a/web/modules/custom/dpl_cache_settings/dpl_cache_settings.permissions.yml +++ b/web/modules/custom/dpl_cache_settings/dpl_cache_settings.permissions.yml @@ -1,8 +1,8 @@ access dpl cache settings: - title: "Access DPL cache settings" - description: "This includes permission for clearing caches." + title: 'Access DPL cache settings' + description: 'This includes permission for clearing caches.' restrict access: TRUE access drupal performance settings: - title: "Access Drupal performance settings" - description: "A custom permission, to replace the generic basic settings." + title: 'Access Drupal performance settings' + description: 'A custom permission, to replace the generic basic settings.' restrict access: TRUE diff --git a/web/modules/custom/dpl_cache_settings/dpl_cache_settings.routing.yml b/web/modules/custom/dpl_cache_settings/dpl_cache_settings.routing.yml index 3b9c49ec0..d1509ee6f 100644 --- a/web/modules/custom/dpl_cache_settings/dpl_cache_settings.routing.yml +++ b/web/modules/custom/dpl_cache_settings/dpl_cache_settings.routing.yml @@ -1,7 +1,7 @@ dpl_cache_settings.settings_form: - path: "/admin/dpl/cache_settings" + path: '/admin/dpl/cache_settings' defaults: _form: '\Drupal\dpl_cache_settings\Form\CacheSettingsForm' - _title: "Cache settings" + _title: 'Cache settings' requirements: - _permission: "access dpl cache settings" + _permission: 'access dpl cache settings' diff --git a/web/modules/custom/dpl_cache_settings/dpl_cache_settings.services.yml b/web/modules/custom/dpl_cache_settings/dpl_cache_settings.services.yml index 30f88cfab..171bea0eb 100644 --- a/web/modules/custom/dpl_cache_settings/dpl_cache_settings.services.yml +++ b/web/modules/custom/dpl_cache_settings/dpl_cache_settings.services.yml @@ -1,7 +1,7 @@ services: logger.channel.dpl_cache_settings: parent: logger.channel_base - arguments: ["dpl_cache_settings"] + arguments: ['dpl_cache_settings'] dpl_cache_settings.route_subscriber: class: Drupal\dpl_cache_settings\Routing\RouteSubscriber tags: diff --git a/web/modules/custom/dpl_campaign/dpl_campaign.info.yml b/web/modules/custom/dpl_campaign/dpl_campaign.info.yml index 23af7fc97..dff0d28f7 100644 --- a/web/modules/custom/dpl_campaign/dpl_campaign.info.yml +++ b/web/modules/custom/dpl_campaign/dpl_campaign.info.yml @@ -1,7 +1,7 @@ -name: "dpl_campaign" +name: 'dpl_campaign' type: module -description: "A module that deliveres possibility for campaign CRUD and integration with Dpl React Apps" -package: "DPL" +description: 'A module that deliveres possibility for campaign CRUD and integration with Dpl React Apps' +package: 'DPL' core_version_requirement: ^9 || ^10 dependencies: - drupal:serialization diff --git a/web/modules/custom/dpl_campaign/dpl_campaign.services.yml b/web/modules/custom/dpl_campaign/dpl_campaign.services.yml index 02e1621d5..88779f509 100644 --- a/web/modules/custom/dpl_campaign/dpl_campaign.services.yml +++ b/web/modules/custom/dpl_campaign/dpl_campaign.services.yml @@ -2,15 +2,15 @@ services: dpl_campaign.serializer: class: Symfony\Component\Serializer\Serializer arguments: - - ["@dpl_campaign.normalizer.object", "@dpl_campaign.normalizer.array"] - - ["@serializer.encoder.json", "@serializer.encoder.xml"] + - ['@dpl_campaign.normalizer.object', '@dpl_campaign.normalizer.array'] + - ['@serializer.encoder.json', '@serializer.encoder.xml'] dpl_campaign.normalizer.object: class: Symfony\Component\Serializer\Normalizer\ObjectNormalizer arguments: - null - null - null - - "@dpl_campaign.extractor.phpdoc" + - '@dpl_campaign.extractor.phpdoc' dpl_campaign.normalizer.array: class: Symfony\Component\Serializer\Normalizer\ArrayDenormalizer dpl_campaign.extractor.phpdoc: diff --git a/web/modules/custom/dpl_config_import/dpl_config_import.example.yaml b/web/modules/custom/dpl_config_import/dpl_config_import.example.yaml index b52aa8e74..8762ba363 100644 --- a/web/modules/custom/dpl_config_import/dpl_config_import.example.yaml +++ b/web/modules/custom/dpl_config_import/dpl_config_import.example.yaml @@ -3,12 +3,12 @@ configuration: # Values will be merged with existing values. system.site: # Configuration values can be set directly - slogan: "Imported by DPL config import" + slogan: 'Imported by DPL config import' # Nested configuration is also supported page: # All values in nested configuration must have a key. This is required to # support numeric configuration keys. - 403: "/user/login" + 403: '/user/login' modules: # Add module ids to install or uninstall diff --git a/web/modules/custom/dpl_config_import/dpl_config_import.links.menu.yml b/web/modules/custom/dpl_config_import/dpl_config_import.links.menu.yml index 9eae0010c..5b8803aa9 100644 --- a/web/modules/custom/dpl_config_import/dpl_config_import.links.menu.yml +++ b/web/modules/custom/dpl_config_import/dpl_config_import.links.menu.yml @@ -1,5 +1,5 @@ config.sync: - title: "Upload configuration" - description: "Upload and import configuration from a YAML file" + title: 'Upload configuration' + description: 'Upload and import configuration from a YAML file' route_name: dpl_config_upload.upload_form parent: system.admin_config_development diff --git a/web/modules/custom/dpl_config_import/dpl_config_import.routing.yml b/web/modules/custom/dpl_config_import/dpl_config_import.routing.yml index 0dd571aad..9ee93a1a0 100644 --- a/web/modules/custom/dpl_config_import/dpl_config_import.routing.yml +++ b/web/modules/custom/dpl_config_import/dpl_config_import.routing.yml @@ -1,7 +1,7 @@ dpl_config_upload.upload_form: - path: "/admin/config/configuration/import" + path: '/admin/config/configuration/import' defaults: _form: 'Drupal\dpl_config_import\Form\UploadForm' - _title: "Upload configuration" + _title: 'Upload configuration' requirements: - _permission: "import configuration,administer modules" + _permission: 'import configuration,administer modules' diff --git a/web/modules/custom/dpl_consumers/dpl_consumers.info.yml b/web/modules/custom/dpl_consumers/dpl_consumers.info.yml index fe1089023..ac03663a5 100644 --- a/web/modules/custom/dpl_consumers/dpl_consumers.info.yml +++ b/web/modules/custom/dpl_consumers/dpl_consumers.info.yml @@ -1,6 +1,6 @@ -name: "DPL Consumers" +name: 'DPL Consumers' type: module -description: "Module for adding consumers to DPL CMS" +description: 'Module for adding consumers to DPL CMS' package: DPL core_version_requirement: ^10 || ^11 dependencies: diff --git a/web/modules/custom/dpl_cookies/dpl_cookies.info.yml b/web/modules/custom/dpl_cookies/dpl_cookies.info.yml index 09e6fe20f..6f1fbbf5c 100644 --- a/web/modules/custom/dpl_cookies/dpl_cookies.info.yml +++ b/web/modules/custom/dpl_cookies/dpl_cookies.info.yml @@ -1,6 +1,6 @@ -name: "DPL Cookies" +name: 'DPL Cookies' type: module -description: "A module that handles cookie functionality." +description: 'A module that handles cookie functionality.' package: DPL core_version_requirement: ^10 dependencies: diff --git a/web/modules/custom/dpl_dashboard/dpl_dashboard.links.menu.yml b/web/modules/custom/dpl_dashboard/dpl_dashboard.links.menu.yml index 3adcbaedd..af75cdd0a 100644 --- a/web/modules/custom/dpl_dashboard/dpl_dashboard.links.menu.yml +++ b/web/modules/custom/dpl_dashboard/dpl_dashboard.links.menu.yml @@ -1,5 +1,5 @@ dpl_dashboard.list: - title: "Dashboard" + title: 'Dashboard' menu_name: user-profile-menu route_name: dpl_dashboard.list - description: "User dashboard" + description: 'User dashboard' diff --git a/web/modules/custom/dpl_dashboard/dpl_dashboard.routing.yml b/web/modules/custom/dpl_dashboard/dpl_dashboard.routing.yml index f840295d2..9a3cdf1f1 100644 --- a/web/modules/custom/dpl_dashboard/dpl_dashboard.routing.yml +++ b/web/modules/custom/dpl_dashboard/dpl_dashboard.routing.yml @@ -1,6 +1,6 @@ dpl_dashboard.list: - path: "/user/me/dashboard" + path: '/user/me/dashboard' defaults: _controller: '\Drupal\dpl_dashboard\Controller\DplDashboardController::list' requirements: - _permission: "access content" + _permission: 'access content' diff --git a/web/modules/custom/dpl_dashboard/dpl_dashboard.services.yml b/web/modules/custom/dpl_dashboard/dpl_dashboard.services.yml index ba5b010ba..78ce6143d 100644 --- a/web/modules/custom/dpl_dashboard/dpl_dashboard.services.yml +++ b/web/modules/custom/dpl_dashboard/dpl_dashboard.services.yml @@ -1,4 +1,4 @@ services: dpl_dashboard.settings: class: Drupal\dpl_dashboard\DplDashboardSettings - arguments: ["@config.manager"] + arguments: ['@config.manager'] diff --git a/web/modules/custom/dpl_error_pages/content/node/d6fe11c3-4776-4e40-9527-29d5066311aa.yml b/web/modules/custom/dpl_error_pages/content/node/d6fe11c3-4776-4e40-9527-29d5066311aa.yml index d38c8768e..a85205614 100644 --- a/web/modules/custom/dpl_error_pages/content/node/d6fe11c3-4776-4e40-9527-29d5066311aa.yml +++ b/web/modules/custom/dpl_error_pages/content/node/d6fe11c3-4776-4e40-9527-29d5066311aa.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: node uuid: d6fe11c3-4776-4e40-9527-29d5066311aa bundle: page @@ -14,7 +14,7 @@ default: uid: - target_id: 1 title: - - value: "Adgang nægtet" + - value: 'Adgang nægtet' created: - value: 1710763872 promote: @@ -27,15 +27,15 @@ default: - value: false entity_clone_template_image: - entity: e00e1460-169e-468d-9835-d664f06d0969 - alt: "" - title: "" + alt: '' + title: '' width: 640 height: 443 metatag: - tag: meta attributes: name: title - content: "Adgang nægtet | DPL CMS" + content: 'Adgang nægtet | DPL CMS' path: - alias: /error-page-403 langcode: und @@ -44,7 +44,7 @@ default: field_paragraphs: - entity: _meta: - version: "1.0" + version: '1.0' entity_type: paragraph uuid: dc7e8942-095d-448c-8b09-235a39f276c3 bundle: text_body @@ -59,5 +59,5 @@ default: revision_translation_affected: - value: true field_body: - - value: "
Vi beklager ulejligheden, men det ser ud til, at du ikke har de nødvendige tilladelser til at få adgang til denne del af vores hjemmeside.
Hvis du tror, dette er en fejl, eller hvis du har brug for adgang, vil vi meget gerne høre fra dig. Kontakt os venligst, eller vend tilbage til vores hovedside.
" + - value: 'Vi beklager ulejligheden, men det ser ud til, at du ikke har de nødvendige tilladelser til at få adgang til denne del af vores hjemmeside.
Hvis du tror, dette er en fejl, eller hvis du har brug for adgang, vil vi meget gerne høre fra dig. Kontakt os venligst, eller vend tilbage til vores hovedside.
' format: basic diff --git a/web/modules/custom/dpl_error_pages/content/node/f14e3e68-6bd1-44f3-a61c-108967cc68e8.yml b/web/modules/custom/dpl_error_pages/content/node/f14e3e68-6bd1-44f3-a61c-108967cc68e8.yml index 8953466b1..75f4b9471 100644 --- a/web/modules/custom/dpl_error_pages/content/node/f14e3e68-6bd1-44f3-a61c-108967cc68e8.yml +++ b/web/modules/custom/dpl_error_pages/content/node/f14e3e68-6bd1-44f3-a61c-108967cc68e8.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: node uuid: f14e3e68-6bd1-44f3-a61c-108967cc68e8 bundle: page @@ -14,7 +14,7 @@ default: uid: - target_id: 1 title: - - value: "Siden blev ikke fundet" + - value: 'Siden blev ikke fundet' created: - value: 1710763252 promote: @@ -27,15 +27,15 @@ default: - value: false entity_clone_template_image: - entity: e00e1460-169e-468d-9835-d664f06d0969 - alt: "" - title: "" + alt: '' + title: '' width: 640 height: 443 metatag: - tag: meta attributes: name: title - content: "Siden blev ikke fundet | DPL CMS" + content: 'Siden blev ikke fundet | DPL CMS' path: - alias: /error-page-404 langcode: und @@ -44,7 +44,7 @@ default: field_paragraphs: - entity: _meta: - version: "1.0" + version: '1.0' entity_type: paragraph uuid: f55bc166-35c2-45d5-a44a-edcffd37c828 bundle: text_body @@ -59,5 +59,5 @@ default: revision_translation_affected: - value: true field_body: - - value: "Ups!
Det ser ud til, at siden, du leder efter, ikke eksisterer. Det kan være, den er blevet flyttet, eller et link er blevet fejlagtigt indtastet.
Men fortvivl ikke! Brug menuen ovenfor til at navigere tilbage til vores hjemmeside, eller prøv at bruge søgefunktionen til at finde det, du leder efter. Vi er her for at hjælpe dig med at finde vej.
" + - value: 'Ups!
Det ser ud til, at siden, du leder efter, ikke eksisterer. Det kan være, den er blevet flyttet, eller et link er blevet fejlagtigt indtastet.
Men fortvivl ikke! Brug menuen ovenfor til at navigere tilbage til vores hjemmeside, eller prøv at bruge søgefunktionen til at finde det, du leder efter. Vi er her for at hjælpe dig med at finde vej.
' format: basic diff --git a/web/modules/custom/dpl_event/dpl_event.info.yml b/web/modules/custom/dpl_event/dpl_event.info.yml index e3355de88..67546bef4 100644 --- a/web/modules/custom/dpl_event/dpl_event.info.yml +++ b/web/modules/custom/dpl_event/dpl_event.info.yml @@ -1,6 +1,6 @@ -name: "Event" +name: 'Event' type: module -description: "Custom handling related to events." +description: 'Custom handling related to events.' package: DPL core_version_requirement: ^10 diff --git a/web/modules/custom/dpl_event/dpl_event.routing.yml b/web/modules/custom/dpl_event/dpl_event.routing.yml index f10a033fc..644dbd40f 100644 --- a/web/modules/custom/dpl_event/dpl_event.routing.yml +++ b/web/modules/custom/dpl_event/dpl_event.routing.yml @@ -1,7 +1,7 @@ dpl_event.settings: - path: "/admin/config/dpl-event/settings" + path: '/admin/config/dpl-event/settings' defaults: - _title: "Event settings" + _title: 'Event settings' _form: 'Drupal\dpl_event\Form\SettingsForm' requirements: - _permission: "administer library agency configuration" + _permission: 'administer library agency configuration' diff --git a/web/modules/custom/dpl_event/dpl_event.services.yml b/web/modules/custom/dpl_event/dpl_event.services.yml index 30cfebbd8..4a47f1a01 100644 --- a/web/modules/custom/dpl_event/dpl_event.services.yml +++ b/web/modules/custom/dpl_event/dpl_event.services.yml @@ -1,38 +1,38 @@ services: dpl_event.logger: parent: logger.channel_base - arguments: ["dpl_event"] + arguments: ['dpl_event'] dpl_event.event_instance_storage: class: \Drupal\recurring_events\EventInstanceStorage - factory: ["@entity_type.manager", "getStorage"] - arguments: ["eventinstance"] + factory: ['@entity_type.manager', 'getStorage'] + arguments: ['eventinstance'] dpl_event.price_formatter: class: Drupal\dpl_event\PriceFormatter - arguments: ["@string_translation", "@config.factory"] + arguments: ['@string_translation', '@config.factory'] dpl_event.reoccurring_date_formatter: class: Drupal\dpl_event\ReoccurringDateFormatter arguments: - ["@string_translation", "@entity_type.manager", "@date.formatter"] + ['@string_translation', '@entity_type.manager', '@date.formatter'] dpl_event.occurred_schedule: class: Drupal\dpl_event\Workflows\OccurredSchedule arguments: - - "@dpl_event.logger" - - "@datetime.time" - - "@job_scheduler.manager" - - "@dpl_event.event_instance_storage" + - '@dpl_event.logger' + - '@datetime.time' + - '@job_scheduler.manager' + - '@dpl_event.event_instance_storage' dpl_event.unpublish_schedule: class: Drupal\dpl_event\Workflows\UnpublishSchedule arguments: - - "@dpl_event.logger" - - "@datetime.time" - - "@job_scheduler.manager" - - "@dpl_event.event_instance_storage" - - "@config.factory" + - '@dpl_event.logger' + - '@datetime.time' + - '@job_scheduler.manager' + - '@dpl_event.event_instance_storage' + - '@config.factory' dpl_event.event_rest_mapper: class: Drupal\dpl_event\Services\EventRestMapper arguments: - - "@file_url_generator" - - "@config.factory" + - '@file_url_generator' + - '@config.factory' dpl_event.route_subscriber: class: Drupal\dpl_event\Routing\RouteSubscriber tags: @@ -40,7 +40,7 @@ services: dpl_event.access_event_instances_tab: class: Drupal\dpl_event\Access\EventSeriesTabAccessCheck arguments: - - "@entity_type.manager" + - '@entity_type.manager' tags: - { name: access_check, applies_to: _access_event_series_instances_tab } dpl_event.event_series_redirect: diff --git a/web/modules/custom/dpl_example_breadcrumb/dpl_example_breadcrumb.info.yml b/web/modules/custom/dpl_example_breadcrumb/dpl_example_breadcrumb.info.yml index 031e9e22b..a279f09a5 100644 --- a/web/modules/custom/dpl_example_breadcrumb/dpl_example_breadcrumb.info.yml +++ b/web/modules/custom/dpl_example_breadcrumb/dpl_example_breadcrumb.info.yml @@ -1,6 +1,6 @@ name: Example content for DPL Breadcrumb type: module -description: "This module was used for breadcrumb content, it is now deprecated." +description: 'This module was used for breadcrumb content, it is now deprecated.' package: DPL core_version_requirement: ^9 || ^10 dependencies: diff --git a/web/modules/custom/dpl_favorites_list/dpl_favorites_list.links.menu.yml b/web/modules/custom/dpl_favorites_list/dpl_favorites_list.links.menu.yml index a329794ae..913f59e1c 100644 --- a/web/modules/custom/dpl_favorites_list/dpl_favorites_list.links.menu.yml +++ b/web/modules/custom/dpl_favorites_list/dpl_favorites_list.links.menu.yml @@ -1,5 +1,5 @@ dpl_favorite.list: - title: "Favorites" + title: 'Favorites' menu_name: user-profile-menu route_name: dpl_favorites.list - description: "List user favorites" + description: 'List user favorites' diff --git a/web/modules/custom/dpl_favorites_list/dpl_favorites_list.routing.yml b/web/modules/custom/dpl_favorites_list/dpl_favorites_list.routing.yml index bc57e7854..db1598366 100644 --- a/web/modules/custom/dpl_favorites_list/dpl_favorites_list.routing.yml +++ b/web/modules/custom/dpl_favorites_list/dpl_favorites_list.routing.yml @@ -1,6 +1,6 @@ dpl_favorites_list.list: - path: "/user/me/favorites" + path: '/user/me/favorites' defaults: _controller: '\Drupal\dpl_favorites_list\Controller\DplFavoritesListController::list' requirements: - _permission: "access content" + _permission: 'access content' diff --git a/web/modules/custom/dpl_favorites_list/dpl_favorites_list.services.yml b/web/modules/custom/dpl_favorites_list/dpl_favorites_list.services.yml index 228177877..afe6ff8ea 100644 --- a/web/modules/custom/dpl_favorites_list/dpl_favorites_list.services.yml +++ b/web/modules/custom/dpl_favorites_list/dpl_favorites_list.services.yml @@ -1,4 +1,4 @@ services: dpl_favorites_list.settings: class: Drupal\dpl_favorites_list\DplFavoritesListSettings - arguments: ["@config.manager"] + arguments: ['@config.manager'] diff --git a/web/modules/custom/dpl_favorites_list_material_component/dpl_favorites_list_material_component.links.menu.yml b/web/modules/custom/dpl_favorites_list_material_component/dpl_favorites_list_material_component.links.menu.yml index 8c9b22236..786f01904 100644 --- a/web/modules/custom/dpl_favorites_list_material_component/dpl_favorites_list_material_component.links.menu.yml +++ b/web/modules/custom/dpl_favorites_list_material_component/dpl_favorites_list_material_component.links.menu.yml @@ -1,5 +1,5 @@ dpl_favorites_list_material_component.list: - title: "Favorites list material component" + title: 'Favorites list material component' menu_name: user-profile-menu route_name: dpl_favorites_list_material_component.list - description: "Show favorites list material component" + description: 'Show favorites list material component' diff --git a/web/modules/custom/dpl_favorites_list_material_component/dpl_favorites_list_material_component.routing.yml b/web/modules/custom/dpl_favorites_list_material_component/dpl_favorites_list_material_component.routing.yml index ff440553f..ffd2050b4 100644 --- a/web/modules/custom/dpl_favorites_list_material_component/dpl_favorites_list_material_component.routing.yml +++ b/web/modules/custom/dpl_favorites_list_material_component/dpl_favorites_list_material_component.routing.yml @@ -1,6 +1,6 @@ dpl_favorites_list_material_component.list: - path: "/favorites-mc" + path: '/favorites-mc' defaults: _controller: '\Drupal\dpl_favorites_list_material_component\Controller\DplFavoritesListMaterialComponentController::list' requirements: - _permission: "access content" + _permission: 'access content' diff --git a/web/modules/custom/dpl_fbs/dpl_fbs.links.menu.yml b/web/modules/custom/dpl_fbs/dpl_fbs.links.menu.yml index 2cb6cff4a..97df5a474 100644 --- a/web/modules/custom/dpl_fbs/dpl_fbs.links.menu.yml +++ b/web/modules/custom/dpl_fbs/dpl_fbs.links.menu.yml @@ -1,5 +1,5 @@ dpl_fbs.settings_form: - title: "FBS settings" + title: 'FBS settings' route_name: dpl_fbs.settings - description: "Change basic FBS settings" + description: 'Change basic FBS settings' parent: system.admin_config_services diff --git a/web/modules/custom/dpl_fbs/dpl_fbs.routing.yml b/web/modules/custom/dpl_fbs/dpl_fbs.routing.yml index b7423d402..130ed95f6 100644 --- a/web/modules/custom/dpl_fbs/dpl_fbs.routing.yml +++ b/web/modules/custom/dpl_fbs/dpl_fbs.routing.yml @@ -1,9 +1,9 @@ dpl_fbs.settings: - path: "/admin/config/services/fbs" + path: '/admin/config/services/fbs' defaults: _form: '\Drupal\dpl_fbs\Form\FbsSettingsForm' - _title: "FBS settings" + _title: 'FBS settings' requirements: - _permission: "administer site configuration" + _permission: 'administer site configuration' options: _admin_route: TRUE diff --git a/web/modules/custom/dpl_fbs/dpl_fbs.services.yml b/web/modules/custom/dpl_fbs/dpl_fbs.services.yml index 02cbd9904..544831182 100644 --- a/web/modules/custom/dpl_fbs/dpl_fbs.services.yml +++ b/web/modules/custom/dpl_fbs/dpl_fbs.services.yml @@ -2,5 +2,5 @@ services: dpl_fbs.api_factory: class: Drupal\dpl_fbs\FbsApiFactory arguments: - - "@config.manager" - - "@http_client" + - '@config.manager' + - '@http_client' diff --git a/web/modules/custom/dpl_fees/dpl_fees.links.menu.yml b/web/modules/custom/dpl_fees/dpl_fees.links.menu.yml index 4afae2a2c..308dc36d7 100644 --- a/web/modules/custom/dpl_fees/dpl_fees.links.menu.yml +++ b/web/modules/custom/dpl_fees/dpl_fees.links.menu.yml @@ -1,11 +1,11 @@ dpl_fees.list: - title: "Fees" + title: 'Fees' menu_name: user-profile-menu route_name: dpl_fees.list - description: "List user fees" + description: 'List user fees' dpl_fees.settings_form: - title: "Fees List settings" + title: 'Fees List settings' route_name: dpl_fees.settings - description: "Change Fees List Settings" + description: 'Change Fees List Settings' parent: dpl_library_agency.settings diff --git a/web/modules/custom/dpl_fees/dpl_fees.routing.yml b/web/modules/custom/dpl_fees/dpl_fees.routing.yml index 85155b391..232c8605a 100644 --- a/web/modules/custom/dpl_fees/dpl_fees.routing.yml +++ b/web/modules/custom/dpl_fees/dpl_fees.routing.yml @@ -1,16 +1,16 @@ dpl_fees.list: - path: "/user/me/fees" + path: '/user/me/fees' defaults: _controller: '\Drupal\dpl_fees\Controller\DplFeesController::list' requirements: - _permission: "access content" + _permission: 'access content' dpl_fees.settings: - path: "/admin/config/dpl-library-agency/fees" + path: '/admin/config/dpl-library-agency/fees' defaults: _form: '\Drupal\dpl_fees\Form\FeesListSettingsForm' - _title: "Fees settings" + _title: 'Fees settings' requirements: - _permission: "administer site configuration" + _permission: 'administer site configuration' options: _admin_route: TRUE diff --git a/web/modules/custom/dpl_fees/dpl_fees.services.yml b/web/modules/custom/dpl_fees/dpl_fees.services.yml index 500c8bbc1..b711016a4 100644 --- a/web/modules/custom/dpl_fees/dpl_fees.services.yml +++ b/web/modules/custom/dpl_fees/dpl_fees.services.yml @@ -1,4 +1,4 @@ services: dpl_fees.settings: class: Drupal\dpl_fees\DplFeesSettings - arguments: ["@config.manager"] + arguments: ['@config.manager'] diff --git a/web/modules/custom/dpl_filter_paragraphs/dpl_filter_paragraphs.info.yml b/web/modules/custom/dpl_filter_paragraphs/dpl_filter_paragraphs.info.yml index 0e2e357f6..684443737 100644 --- a/web/modules/custom/dpl_filter_paragraphs/dpl_filter_paragraphs.info.yml +++ b/web/modules/custom/dpl_filter_paragraphs/dpl_filter_paragraphs.info.yml @@ -1,6 +1,6 @@ -name: "DPL Filtered Paragraphs (Deprecated)" +name: 'DPL Filtered Paragraphs (Deprecated)' type: module -description: "This module is deprecated, and will be deleted in the future." -package: "DPL" +description: 'This module is deprecated, and will be deleted in the future.' +package: 'DPL' core_version_requirement: ^10 hidden: true diff --git a/web/modules/custom/dpl_footer/dpl_footer.info.yml b/web/modules/custom/dpl_footer/dpl_footer.info.yml index 3b333010b..b7603a7a1 100644 --- a/web/modules/custom/dpl_footer/dpl_footer.info.yml +++ b/web/modules/custom/dpl_footer/dpl_footer.info.yml @@ -1,7 +1,7 @@ -name: "Footer" +name: 'Footer' type: module -description: "Functionality related to footer." -package: "DPL" +description: 'Functionality related to footer.' +package: 'DPL' core_version_requirement: ^10 dependencies: - multivalue_form_element:multivalue_form_element diff --git a/web/modules/custom/dpl_footer/dpl_footer.links.menu.yml b/web/modules/custom/dpl_footer/dpl_footer.links.menu.yml index 5c1993bac..5f5a66da2 100644 --- a/web/modules/custom/dpl_footer/dpl_footer.links.menu.yml +++ b/web/modules/custom/dpl_footer/dpl_footer.links.menu.yml @@ -1,5 +1,5 @@ dpl_footer.footer_form: - title: "Footer Settings" + title: 'Footer Settings' parent: system.admin_content route_name: dpl_footer.footer_form weight: 100 diff --git a/web/modules/custom/dpl_footer/dpl_footer.permissions.yml b/web/modules/custom/dpl_footer/dpl_footer.permissions.yml index 72a38b562..2a3c7815f 100644 --- a/web/modules/custom/dpl_footer/dpl_footer.permissions.yml +++ b/web/modules/custom/dpl_footer/dpl_footer.permissions.yml @@ -1,2 +1,2 @@ administer dpl_footer settings: - title: "Administer DPL footer settings" + title: 'Administer DPL footer settings' diff --git a/web/modules/custom/dpl_footer/dpl_footer.routing.yml b/web/modules/custom/dpl_footer/dpl_footer.routing.yml index 9b0971c6e..0d08ab614 100644 --- a/web/modules/custom/dpl_footer/dpl_footer.routing.yml +++ b/web/modules/custom/dpl_footer/dpl_footer.routing.yml @@ -1,7 +1,7 @@ dpl_footer.footer_form: - path: "/admin/structure/footer" + path: '/admin/structure/footer' defaults: _form: 'Drupal\dpl_footer\Form\FooterForm' - _title: "Footer Settings" + _title: 'Footer Settings' requirements: - _permission: "administer dpl_footer settings" + _permission: 'administer dpl_footer settings' diff --git a/web/modules/custom/dpl_graphql/dpl_graphql.info.yml b/web/modules/custom/dpl_graphql/dpl_graphql.info.yml index 4f1562cc1..954ee6266 100644 --- a/web/modules/custom/dpl_graphql/dpl_graphql.info.yml +++ b/web/modules/custom/dpl_graphql/dpl_graphql.info.yml @@ -1,6 +1,6 @@ -name: "DPL GraphQL" +name: 'DPL GraphQL' type: module -description: "Module used for handling graphql functionality." +description: 'Module used for handling graphql functionality.' package: DPL core_version_requirement: ^10 || ^11 dependencies: diff --git a/web/modules/custom/dpl_instant_loan/dpl_instant_loan.links.menu.yml b/web/modules/custom/dpl_instant_loan/dpl_instant_loan.links.menu.yml index b0c6fc0a9..547efdf30 100644 --- a/web/modules/custom/dpl_instant_loan/dpl_instant_loan.links.menu.yml +++ b/web/modules/custom/dpl_instant_loan/dpl_instant_loan.links.menu.yml @@ -1,5 +1,5 @@ dpl_instant_loan.settings_form: - title: "Instant Loan Settings" + title: 'Instant Loan Settings' route_name: dpl_instant_loan.settings - description: "Configure promotion of materials available for instant loans." + description: 'Configure promotion of materials available for instant loans.' parent: dpl_library_agency.settings diff --git a/web/modules/custom/dpl_instant_loan/dpl_instant_loan.permissions.yml b/web/modules/custom/dpl_instant_loan/dpl_instant_loan.permissions.yml index 42de74d78..57c37984c 100644 --- a/web/modules/custom/dpl_instant_loan/dpl_instant_loan.permissions.yml +++ b/web/modules/custom/dpl_instant_loan/dpl_instant_loan.permissions.yml @@ -1,3 +1,3 @@ administer instant loan configuration: - title: "Administer instant loan configuration" - description: "Access for administering of the instant loan configuration." + title: 'Administer instant loan configuration' + description: 'Access for administering of the instant loan configuration.' diff --git a/web/modules/custom/dpl_instant_loan/dpl_instant_loan.routing.yml b/web/modules/custom/dpl_instant_loan/dpl_instant_loan.routing.yml index 89a124ecf..836f1c3b4 100644 --- a/web/modules/custom/dpl_instant_loan/dpl_instant_loan.routing.yml +++ b/web/modules/custom/dpl_instant_loan/dpl_instant_loan.routing.yml @@ -1,9 +1,9 @@ dpl_instant_loan.settings: - path: "/admin/config/dpl-library-agency/instant-loan" + path: '/admin/config/dpl-library-agency/instant-loan' defaults: _form: '\Drupal\dpl_instant_loan\Form\DplInstantLoanSettingsForm' - _title: "Instant loan settings" + _title: 'Instant loan settings' requirements: - _permission: "administer instant loan configuration" + _permission: 'administer instant loan configuration' options: _admin_route: TRUE diff --git a/web/modules/custom/dpl_instant_loan/dpl_instant_loan.services.yml b/web/modules/custom/dpl_instant_loan/dpl_instant_loan.services.yml index 854943f23..ea06e9d9a 100644 --- a/web/modules/custom/dpl_instant_loan/dpl_instant_loan.services.yml +++ b/web/modules/custom/dpl_instant_loan/dpl_instant_loan.services.yml @@ -1,4 +1,4 @@ services: dpl_instant_loan.settings: class: Drupal\dpl_instant_loan\DplInstantLoanSettings - arguments: ["@config.manager"] + arguments: ['@config.manager'] diff --git a/web/modules/custom/dpl_library_agency/dpl_library_agency.info.yml b/web/modules/custom/dpl_library_agency/dpl_library_agency.info.yml index 57fab59fa..2b4780e13 100644 --- a/web/modules/custom/dpl_library_agency/dpl_library_agency.info.yml +++ b/web/modules/custom/dpl_library_agency/dpl_library_agency.info.yml @@ -1,7 +1,7 @@ -name: "DPL Library Agency" +name: 'DPL Library Agency' type: module -description: "Module for handling library agency configuration and functionality" -package: "DPL" +description: 'Module for handling library agency configuration and functionality' +package: 'DPL' core_version_requirement: ^9 || ^10 dependencies: - dpl_fbs:dpl_fbs diff --git a/web/modules/custom/dpl_library_agency/dpl_library_agency.links.menu.yml b/web/modules/custom/dpl_library_agency/dpl_library_agency.links.menu.yml index 1f7037c76..fdec80a32 100644 --- a/web/modules/custom/dpl_library_agency/dpl_library_agency.links.menu.yml +++ b/web/modules/custom/dpl_library_agency/dpl_library_agency.links.menu.yml @@ -1,18 +1,18 @@ dpl_library_agency.settings: - title: "Library Agency" + title: 'Library Agency' route_name: dpl_library_agency.settings parent: system.admin_config weight: -1000 dpl_library_agency.general_settings_form: - title: "General Settings" - description: "Administer various settings for a library agency." + title: 'General Settings' + description: 'Administer various settings for a library agency.' route_name: dpl_library_agency.general_settings parent: dpl_library_agency.settings weight: -999 dpl_library_agency.list_size_settings_form: - title: "List Size Settings" - description: "Administer list size settings for a library agency." + title: 'List Size Settings' + description: 'Administer list size settings for a library agency.' route_name: dpl_library_agency.list_size_settings parent: dpl_library_agency.settings diff --git a/web/modules/custom/dpl_library_agency/dpl_library_agency.permissions.yml b/web/modules/custom/dpl_library_agency/dpl_library_agency.permissions.yml index 5def6dbc7..ab9ff2922 100644 --- a/web/modules/custom/dpl_library_agency/dpl_library_agency.permissions.yml +++ b/web/modules/custom/dpl_library_agency/dpl_library_agency.permissions.yml @@ -1,3 +1,3 @@ administer library agency configuration: - title: "Administer library agency configuration" - description: "Access for administering of the library agency configuration." + title: 'Administer library agency configuration' + description: 'Access for administering of the library agency configuration.' diff --git a/web/modules/custom/dpl_library_agency/dpl_library_agency.routing.yml b/web/modules/custom/dpl_library_agency/dpl_library_agency.routing.yml index 70523157e..1039913b1 100644 --- a/web/modules/custom/dpl_library_agency/dpl_library_agency.routing.yml +++ b/web/modules/custom/dpl_library_agency/dpl_library_agency.routing.yml @@ -1,27 +1,27 @@ dpl_library_agency.settings: - path: "/admin/config/dpl-library-agency" + path: '/admin/config/dpl-library-agency' defaults: _controller: '\Drupal\system\Controller\SystemController::systemAdminMenuBlockPage' - _title: "Library Agency" + _title: 'Library Agency' requirements: - _permission: "administer library agency configuration" + _permission: 'administer library agency configuration' dpl_library_agency.general_settings: - path: "/admin/config/dpl-library-agency/general-settings" + path: '/admin/config/dpl-library-agency/general-settings' defaults: _form: '\Drupal\dpl_library_agency\Form\GeneralSettingsForm' - _title: "General Settings" + _title: 'General Settings' requirements: - _permission: "administer library agency configuration" + _permission: 'administer library agency configuration' options: _admin_route: TRUE dpl_library_agency.list_size_settings: - path: "/admin/config/dpl-library-agency/list-size-settings" + path: '/admin/config/dpl-library-agency/list-size-settings' defaults: _form: '\Drupal\dpl_library_agency\Form\ListSizeSettingsForm' - _title: "List Size Settings" + _title: 'List Size Settings' requirements: - _permission: "administer library agency configuration" + _permission: 'administer library agency configuration' options: _admin_route: TRUE diff --git a/web/modules/custom/dpl_library_agency/dpl_library_agency.services.yml b/web/modules/custom/dpl_library_agency/dpl_library_agency.services.yml index 590ffa28d..8408a19b2 100644 --- a/web/modules/custom/dpl_library_agency/dpl_library_agency.services.yml +++ b/web/modules/custom/dpl_library_agency/dpl_library_agency.services.yml @@ -1,26 +1,26 @@ services: dpl_library_agency.reservation_settings: class: Drupal\dpl_library_agency\ReservationSettings - arguments: ["@config.manager"] + arguments: ['@config.manager'] dpl_library_agency.branch_settings: class: Drupal\dpl_library_agency\BranchSettings - arguments: ["@config.manager"] + arguments: ['@config.manager'] dpl_library_agency.general_settings: class: Drupal\dpl_library_agency\GeneralSettings - arguments: ["@config.manager"] + arguments: ['@config.manager'] dpl_library_agency.list_size_settings: class: Drupal\dpl_library_agency\ListSizeSettings - arguments: ["@config.manager"] + arguments: ['@config.manager'] dpl_library_agency.branch.repository: class: Drupal\dpl_library_agency\Branch\FallbackBranchRepository arguments: - - "@dpl_library_agency.branch.repository.cache" - - "@dpl_library_agency.branch.repository.empty" - - "@dpl_library_agency.logger" + - '@dpl_library_agency.branch.repository.cache' + - '@dpl_library_agency.branch.repository.empty' + - '@dpl_library_agency.logger' dpl_library_agency.branch.repository.empty: class: Drupal\dpl_library_agency\Branch\EmptyBranchRepository @@ -28,9 +28,9 @@ services: dpl_library_agency.branch.repository.cache: class: Drupal\dpl_library_agency\Branch\CacheableBranchRepository arguments: - - "@dpl_library_agency.branch.repository.fbs" - - "@cache.default" - - "@datetime.time" + - '@dpl_library_agency.branch.repository.fbs' + - '@cache.default' + - '@datetime.time' # A lifetime of 12 hours should ensure that fresh data arrives at latest # one workday after being made available in FBS. - 43200 @@ -38,9 +38,9 @@ services: dpl_library_agency.branch.repository.fbs: class: Drupal\dpl_library_agency\Branch\FbsBranchRepository arguments: - - "@dpl_fbs.api_factory" - - "@dpl_library_token.handler" + - '@dpl_fbs.api_factory' + - '@dpl_library_token.handler' dpl_library_agency.logger: parent: logger.channel_base - arguments: ["DPL Library Agency"] + arguments: ['DPL Library Agency'] diff --git a/web/modules/custom/dpl_library_token/dpl_library_token.services.yml b/web/modules/custom/dpl_library_token/dpl_library_token.services.yml index 1130fd876..629a6a5e2 100644 --- a/web/modules/custom/dpl_library_token/dpl_library_token.services.yml +++ b/web/modules/custom/dpl_library_token/dpl_library_token.services.yml @@ -3,8 +3,8 @@ services: class: Drupal\dpl_library_token\LibraryTokenHandler arguments: [ - "@dpl_login.adgangsplatformen.config", - "@keyvalue.expirable", - "@http_client", - "@logger.factory", + '@dpl_login.adgangsplatformen.config', + '@keyvalue.expirable', + '@http_client', + '@logger.factory', ] diff --git a/web/modules/custom/dpl_link/dpl_link.info.yml b/web/modules/custom/dpl_link/dpl_link.info.yml index 0007a2c27..5b8f411aa 100644 --- a/web/modules/custom/dpl_link/dpl_link.info.yml +++ b/web/modules/custom/dpl_link/dpl_link.info.yml @@ -1,6 +1,6 @@ -name: "DPL Link" +name: 'DPL Link' type: module -description: "Add functionality to link field" +description: 'Add functionality to link field' package: DPL core_version_requirement: ^10 || ^11 dependencies: diff --git a/web/modules/custom/dpl_loans/dpl_loans.links.menu.yml b/web/modules/custom/dpl_loans/dpl_loans.links.menu.yml index d5b594dcd..6fb8e9c66 100644 --- a/web/modules/custom/dpl_loans/dpl_loans.links.menu.yml +++ b/web/modules/custom/dpl_loans/dpl_loans.links.menu.yml @@ -1,5 +1,5 @@ dpl_loan.list: - title: "Loans" + title: 'Loans' menu_name: user-profile-menu route_name: dpl_loans.list - description: "List user loans" + description: 'List user loans' diff --git a/web/modules/custom/dpl_loans/dpl_loans.routing.yml b/web/modules/custom/dpl_loans/dpl_loans.routing.yml index 61710e3d2..be5e4f3d0 100644 --- a/web/modules/custom/dpl_loans/dpl_loans.routing.yml +++ b/web/modules/custom/dpl_loans/dpl_loans.routing.yml @@ -1,6 +1,6 @@ dpl_loans.list: - path: "/user/me/loans" + path: '/user/me/loans' defaults: _controller: '\Drupal\dpl_loans\Controller\DplLoansController::list' requirements: - _permission: "access content" + _permission: 'access content' diff --git a/web/modules/custom/dpl_loans/dpl_loans.services.yml b/web/modules/custom/dpl_loans/dpl_loans.services.yml index 34903bfd9..4169564e9 100644 --- a/web/modules/custom/dpl_loans/dpl_loans.services.yml +++ b/web/modules/custom/dpl_loans/dpl_loans.services.yml @@ -1,4 +1,4 @@ services: dpl_loans.settings: class: Drupal\dpl_loans\DplLoansSettings - arguments: ["@config.manager"] + arguments: ['@config.manager'] diff --git a/web/modules/custom/dpl_login/dpl_login.routing.yml b/web/modules/custom/dpl_login/dpl_login.routing.yml index 3d5fe384a..83fd5b090 100644 --- a/web/modules/custom/dpl_login/dpl_login.routing.yml +++ b/web/modules/custom/dpl_login/dpl_login.routing.yml @@ -1,19 +1,19 @@ dpl_login.logout: - path: "/logout" + path: '/logout' defaults: _controller: '\Drupal\dpl_login\Controller\DplLoginController::logout' - _title: "Dpl Login Logout Route" + _title: 'Dpl Login Logout Route' requirements: - _user_is_logged_in: "TRUE" + _user_is_logged_in: 'TRUE' options: no_cache: TRUE dpl_login.login: - path: "/login" + path: '/login' defaults: _controller: '\Drupal\dpl_login\Controller\DplLoginController::login' - _title: "Login via Adgangsplatformen" + _title: 'Login via Adgangsplatformen' requirements: - _permission: "access content" + _permission: 'access content' options: no_cache: TRUE diff --git a/web/modules/custom/dpl_login/dpl_login.services.yml b/web/modules/custom/dpl_login/dpl_login.services.yml index b43ff3127..c23d37a46 100644 --- a/web/modules/custom/dpl_login/dpl_login.services.yml +++ b/web/modules/custom/dpl_login/dpl_login.services.yml @@ -9,43 +9,43 @@ services: - { name: event_subscriber } dpl_login.registered_user_tokens: class: Drupal\dpl_login\RegisteredUserTokensProvider - arguments: ["@tempstore.private"] + arguments: ['@tempstore.private'] dpl_login.unregistered_user_tokens: class: Drupal\dpl_login\UnregisteredUserTokensProvider - arguments: ["@tempstore.private"] + arguments: ['@tempstore.private'] dpl_login.user_tokens: class: Drupal\dpl_login\UserTokens arguments: - - "@dpl_login.registered_user_tokens" - - "@dpl_login.unregistered_user_tokens" + - '@dpl_login.registered_user_tokens' + - '@dpl_login.unregistered_user_tokens' dpl_login.authentication.user_token: class: Drupal\dpl_login\UserTokenAuthProvider arguments: - - "@dpl_login.adgangsplatformen.client" - - "@module_handler" - - "@openid_connect.authmap" + - '@dpl_login.adgangsplatformen.client' + - '@module_handler' + - '@openid_connect.authmap' tags: - { name: authentication_provider, - provider_id: "dpl_login_user_token", + provider_id: 'dpl_login_user_token', priority: 0, } dpl_login.library_agency_id_provider: class: Drupal\dpl_login\LibraryAgencyIdProvider - arguments: ["@dpl_login.adgangsplatformen.config"] + arguments: ['@dpl_login.adgangsplatformen.config'] dpl_login.adgangsplatformen.client: class: Drupal\dpl_login\Plugin\OpenIDConnectClient\Adgangsplatformen - factory: ["@dpl_login.adgangsplatformen.factory", "createInstance"] + factory: ['@dpl_login.adgangsplatformen.factory', 'createInstance'] dpl_login.adgangsplatformen.factory: class: Drupal\dpl_login\Adgangsplatformen\Factory arguments: [ - "@plugin.manager.openid_connect_client", - "@dpl_login.adgangsplatformen.config", + '@plugin.manager.openid_connect_client', + '@dpl_login.adgangsplatformen.config', ] dpl_login.adgangsplatformen.config: class: Drupal\dpl_login\Adgangsplatformen\Config - arguments: ["@config.manager"] + arguments: ['@config.manager'] dpl_login.openid_user_info: class: Drupal\dpl_login\OpenIdUserInfoService - arguments: ["@settings"] + arguments: ['@settings'] diff --git a/web/modules/custom/dpl_mail/dpl_mail.info.yml b/web/modules/custom/dpl_mail/dpl_mail.info.yml index e5a0c6a12..932c871d5 100644 --- a/web/modules/custom/dpl_mail/dpl_mail.info.yml +++ b/web/modules/custom/dpl_mail/dpl_mail.info.yml @@ -1,5 +1,5 @@ -name: "DPL Mail" -description: "Handles mail related features and configuration" +name: 'DPL Mail' +description: 'Handles mail related features and configuration' package: DPL type: module diff --git a/web/modules/custom/dpl_mapp/dpl_mapp.permissions.yml b/web/modules/custom/dpl_mapp/dpl_mapp.permissions.yml index 60c79b4e9..d24601df4 100644 --- a/web/modules/custom/dpl_mapp/dpl_mapp.permissions.yml +++ b/web/modules/custom/dpl_mapp/dpl_mapp.permissions.yml @@ -1,3 +1,3 @@ administer dpl_mapp configuration: - title: "Administer dpl_mapp configuration" + title: 'Administer dpl_mapp configuration' restrict access: true diff --git a/web/modules/custom/dpl_mapp/dpl_mapp.routing.yml b/web/modules/custom/dpl_mapp/dpl_mapp.routing.yml index 032edf4b5..59980e735 100644 --- a/web/modules/custom/dpl_mapp/dpl_mapp.routing.yml +++ b/web/modules/custom/dpl_mapp/dpl_mapp.routing.yml @@ -1,7 +1,7 @@ dpl_mapp.settings_form: - path: "/admin/config/system/dpl-mapp" + path: '/admin/config/system/dpl-mapp' defaults: - _title: "Mapp Intelligence settings" + _title: 'Mapp Intelligence settings' _form: 'Drupal\dpl_mapp\Form\SettingsForm' requirements: - _permission: "administer dpl_mapp configuration" + _permission: 'administer dpl_mapp configuration' diff --git a/web/modules/custom/dpl_mapp/js/dpl_mapp.js b/web/modules/custom/dpl_mapp/js/dpl_mapp.js index 1d8835679..88e00f78f 100644 --- a/web/modules/custom/dpl_mapp/js/dpl_mapp.js +++ b/web/modules/custom/dpl_mapp/js/dpl_mapp.js @@ -6,35 +6,35 @@ (function dplMapp(once, wts) { const pushEvent = function pushEvent(eventId, eventData) { - console.debug("DPL Mapp: Pushing %s event %o", eventId, eventData); + console.debug('DPL Mapp: Pushing %s event %o', eventId, eventData); // Ensure that the Mapp object is defined before pushing event. - if (typeof wts !== "undefined") { - wts.push(["send", eventId, eventData]); + if (typeof wts !== 'undefined') { + wts.push(['send', eventId, eventData]); } }; Drupal.behaviors.dpl_mapp = { attach(context) { // Send Mapp events attached through the HTML. - once("js-dpl-mapp", ".js-dpl-mapp", context).forEach( + once('js-dpl-mapp', '.js-dpl-mapp', context).forEach( function elementHandler(el) { - el.addEventListener("click", function clickHandler() { - const eventId = this.dataset.dplMappEventId || "click"; + el.addEventListener('click', function clickHandler() { + const eventId = this.dataset.dplMappEventId || 'click'; const eventDataString = this.dataset.dplMappEventData; let eventData = {}; try { eventData = JSON.parse(eventDataString); } catch (e) { console.debug( - "DPL Mapp: Event data not recognized as JSON: %s", - eventDataString + 'DPL Mapp: Event data not recognized as JSON: %s', + eventDataString, ); } pushEvent(eventId, eventData); }); - } + }, ); }, }; diff --git a/web/modules/custom/dpl_opening_hours/dpl_opening_hours.info.yml b/web/modules/custom/dpl_opening_hours/dpl_opening_hours.info.yml index 2e9d345ee..817a9d3db 100644 --- a/web/modules/custom/dpl_opening_hours/dpl_opening_hours.info.yml +++ b/web/modules/custom/dpl_opening_hours/dpl_opening_hours.info.yml @@ -1,6 +1,6 @@ -name: "DPL Opening Hours" +name: 'DPL Opening Hours' type: module -description: "Handling of opening hours for branches." +description: 'Handling of opening hours for branches.' package: DPL core_version_requirement: ^10 diff --git a/web/modules/custom/dpl_opening_hours/dpl_opening_hours.links.task.yml b/web/modules/custom/dpl_opening_hours/dpl_opening_hours.links.task.yml index 1205124b9..76305e61d 100644 --- a/web/modules/custom/dpl_opening_hours/dpl_opening_hours.links.task.yml +++ b/web/modules/custom/dpl_opening_hours/dpl_opening_hours.links.task.yml @@ -1,5 +1,5 @@ dpl_opening_hours.editor.task: route_name: dpl_opening_hours.editor - title: "Opening Hours" + title: 'Opening Hours' base_route: entity.node.canonical weight: 1000 diff --git a/web/modules/custom/dpl_opening_hours/dpl_opening_hours.permissions.yml b/web/modules/custom/dpl_opening_hours/dpl_opening_hours.permissions.yml index 40071721a..d56486cff 100644 --- a/web/modules/custom/dpl_opening_hours/dpl_opening_hours.permissions.yml +++ b/web/modules/custom/dpl_opening_hours/dpl_opening_hours.permissions.yml @@ -1,4 +1,4 @@ manage opening hours for branches: - title: "Manage opening hours for branches." - description: "Create, update and delete opening hours instances for all branches." + title: 'Manage opening hours for branches.' + description: 'Create, update and delete opening hours instances for all branches.' restrict access: FALSE diff --git a/web/modules/custom/dpl_opening_hours/dpl_opening_hours.routing.yml b/web/modules/custom/dpl_opening_hours/dpl_opening_hours.routing.yml index 48f91e1bc..27ca65892 100644 --- a/web/modules/custom/dpl_opening_hours/dpl_opening_hours.routing.yml +++ b/web/modules/custom/dpl_opening_hours/dpl_opening_hours.routing.yml @@ -1,10 +1,10 @@ dpl_opening_hours.editor: - path: "/node/{node}/edit/opening-hours" + path: '/node/{node}/edit/opening-hours' defaults: _controller: '\Drupal\dpl_opening_hours\Controller\OpeningHoursEditorController::content' - _title: "Opening Hours" + _title: 'Opening Hours' requirements: - _permission: "manage opening hours for branches" + _permission: 'manage opening hours for branches' _custom_access: '\Drupal\dpl_opening_hours\Controller\OpeningHoursEditorController::access' options: _admin_route: TRUE diff --git a/web/modules/custom/dpl_opening_hours/dpl_opening_hours.services.yml b/web/modules/custom/dpl_opening_hours/dpl_opening_hours.services.yml index 472d61334..0a4980918 100644 --- a/web/modules/custom/dpl_opening_hours/dpl_opening_hours.services.yml +++ b/web/modules/custom/dpl_opening_hours/dpl_opening_hours.services.yml @@ -1,35 +1,35 @@ services: dpl_opening_hours.logger: parent: logger.channel_base - arguments: ["dpl_opening_hours"] + arguments: ['dpl_opening_hours'] dpl_opening_hours.branch_storage: class: \Drupal\Core\Entity\EntityStorageInterface - factory: ["@entity_type.manager", "getStorage"] - arguments: ["node"] + factory: ['@entity_type.manager', 'getStorage'] + arguments: ['node'] dpl_opening_hours.category_storage: class: \Drupal\Core\Entity\EntityStorageInterface - factory: ["@entity_type.manager", "getStorage"] - arguments: ["taxonomy_term"] + factory: ['@entity_type.manager', 'getStorage'] + arguments: ['taxonomy_term'] dpl_opening_hours.repository: class: Drupal\dpl_opening_hours\Model\OpeningHoursRepository arguments: - - "@dpl_opening_hours.logger" - - "@database" - - "@dpl_opening_hours.branch_storage" - - "@dpl_opening_hours.category_storage" - - "@dpl_opening_hours.repetition_repository" + - '@dpl_opening_hours.logger' + - '@database' + - '@dpl_opening_hours.branch_storage' + - '@dpl_opening_hours.category_storage' + - '@dpl_opening_hours.repetition_repository' dpl_opening_hours.repetition_repository: class: Drupal\dpl_opening_hours\Model\Repetition\RepetitionRepository arguments: - - "@database" + - '@database' dpl_opening_hours.repetition_mapper: class: Drupal\dpl_opening_hours\Mapping\RepetitionMapper dpl_opening_hours.mapper: class: Drupal\dpl_opening_hours\Mapping\OpeningHoursMapper arguments: - - "@dpl_opening_hours.branch_storage" - - "@dpl_opening_hours.category_storage" - - "@dpl_opening_hours.repetition_mapper" + - '@dpl_opening_hours.branch_storage' + - '@dpl_opening_hours.category_storage' + - '@dpl_opening_hours.repetition_mapper' dpl_opening_hours.route_subscriber: class: Drupal\dpl_opening_hours\EventSubscriber\ApiRouteSubscriber tags: diff --git a/web/modules/custom/dpl_paragraphs/dpl_paragraphs.info.yml b/web/modules/custom/dpl_paragraphs/dpl_paragraphs.info.yml index 52fc2b63c..33d05de74 100644 --- a/web/modules/custom/dpl_paragraphs/dpl_paragraphs.info.yml +++ b/web/modules/custom/dpl_paragraphs/dpl_paragraphs.info.yml @@ -1,5 +1,5 @@ -name: "DPL Paragraphs" +name: 'DPL Paragraphs' type: module -description: "Tweaks to various DPL paragraphs" -package: "DPL" +description: 'Tweaks to various DPL paragraphs' +package: 'DPL' core_version_requirement: ^10 diff --git a/web/modules/custom/dpl_patron_menu/dpl_patron_menu.services.yml b/web/modules/custom/dpl_patron_menu/dpl_patron_menu.services.yml index be8bc14bd..7cca3f6b3 100644 --- a/web/modules/custom/dpl_patron_menu/dpl_patron_menu.services.yml +++ b/web/modules/custom/dpl_patron_menu/dpl_patron_menu.services.yml @@ -1,4 +1,4 @@ services: dpl_patron_menu.settings: class: Drupal\dpl_patron_menu\DplMenuSettings - arguments: ["@config.manager"] + arguments: ['@config.manager'] diff --git a/web/modules/custom/dpl_patron_page/dpl_patron_page.links.menu.yml b/web/modules/custom/dpl_patron_page/dpl_patron_page.links.menu.yml index 701cba09e..304fa9c47 100644 --- a/web/modules/custom/dpl_patron_page/dpl_patron_page.links.menu.yml +++ b/web/modules/custom/dpl_patron_page/dpl_patron_page.links.menu.yml @@ -1,11 +1,11 @@ patron_page.profile: - title: "Patron page" + title: 'Patron page' menu_name: user-profile-menu route_name: dpl_patron_page.profile - description: "Patron page displays patron information" + description: 'Patron page displays patron information' patron_page.settings_form: - title: "Patron page settings" + title: 'Patron page settings' route_name: dpl_patron_page.settings - description: "Change patron page settings" + description: 'Change patron page settings' parent: dpl_library_agency.settings diff --git a/web/modules/custom/dpl_patron_page/dpl_patron_page.routing.yml b/web/modules/custom/dpl_patron_page/dpl_patron_page.routing.yml index 6f01e29fb..b5a1b2f76 100644 --- a/web/modules/custom/dpl_patron_page/dpl_patron_page.routing.yml +++ b/web/modules/custom/dpl_patron_page/dpl_patron_page.routing.yml @@ -1,16 +1,16 @@ dpl_patron_page.profile: - path: "/user/me" + path: '/user/me' defaults: _controller: '\Drupal\dpl_patron_page\Controller\DplPatronPageController::profile' requirements: - _permission: "access content" + _permission: 'access content' dpl_patron_page.settings: - path: "/admin/config/dpl-library-agency/patron-page-settings" + path: '/admin/config/dpl-library-agency/patron-page-settings' defaults: _form: '\Drupal\dpl_patron_page\Form\PatronPageSettingsForm' - _title: "Patron page settings" + _title: 'Patron page settings' requirements: - _permission: "administer site configuration" + _permission: 'administer site configuration' options: _admin_route: TRUE diff --git a/web/modules/custom/dpl_patron_page/dpl_patron_page.services.yml b/web/modules/custom/dpl_patron_page/dpl_patron_page.services.yml index 31361545a..fb9b68e0f 100644 --- a/web/modules/custom/dpl_patron_page/dpl_patron_page.services.yml +++ b/web/modules/custom/dpl_patron_page/dpl_patron_page.services.yml @@ -1,4 +1,4 @@ services: dpl_patron_page.settings: class: Drupal\dpl_patron_page\DplPatronPageSettings - arguments: ["@config.manager"] + arguments: ['@config.manager'] diff --git a/web/modules/custom/dpl_patron_redirect/dpl_patron_redirect.links.menu.yml b/web/modules/custom/dpl_patron_redirect/dpl_patron_redirect.links.menu.yml index e756e683c..fd51b000d 100644 --- a/web/modules/custom/dpl_patron_redirect/dpl_patron_redirect.links.menu.yml +++ b/web/modules/custom/dpl_patron_redirect/dpl_patron_redirect.links.menu.yml @@ -1,5 +1,5 @@ dpl_patron_redirect.settings_form: - title: "Patron redirect settings" + title: 'Patron redirect settings' route_name: dpl_patron_redirect.settings - description: "Set auth redirect paths for patrons" + description: 'Set auth redirect paths for patrons' parent: dpl_library_agency.settings diff --git a/web/modules/custom/dpl_patron_redirect/dpl_patron_redirect.routing.yml b/web/modules/custom/dpl_patron_redirect/dpl_patron_redirect.routing.yml index 985de9a8b..46fc5f804 100644 --- a/web/modules/custom/dpl_patron_redirect/dpl_patron_redirect.routing.yml +++ b/web/modules/custom/dpl_patron_redirect/dpl_patron_redirect.routing.yml @@ -1,9 +1,9 @@ dpl_patron_redirect.settings: - path: "/admin/config/redirect" + path: '/admin/config/redirect' defaults: _form: '\Drupal\dpl_patron_redirect\Form\PatronRedirectSettingsForm' - _title: "Patron redirect settings" + _title: 'Patron redirect settings' requirements: - _permission: "administer site configuration" + _permission: 'administer site configuration' options: _admin_route: TRUE diff --git a/web/modules/custom/dpl_patron_redirect/dpl_patron_redirect.services.yml b/web/modules/custom/dpl_patron_redirect/dpl_patron_redirect.services.yml index 525aaf94d..f51fec56e 100644 --- a/web/modules/custom/dpl_patron_redirect/dpl_patron_redirect.services.yml +++ b/web/modules/custom/dpl_patron_redirect/dpl_patron_redirect.services.yml @@ -3,12 +3,12 @@ services: class: Drupal\dpl_patron_redirect\EventSubscriber\RedirectPatronSubscriber arguments: [ - "@path_alias.manager", - "@path.matcher", - "@path.current", - "@config.factory", - "@current_user", - "@page_cache_kill_switch", + '@path_alias.manager', + '@path.matcher', + '@path.current', + '@config.factory', + '@current_user', + '@page_cache_kill_switch', ] tags: - { name: event_subscriber } diff --git a/web/modules/custom/dpl_patron_reg/dpl_patron_reg.links.menu.yml b/web/modules/custom/dpl_patron_reg/dpl_patron_reg.links.menu.yml index 66c365207..1bb57cd70 100644 --- a/web/modules/custom/dpl_patron_reg/dpl_patron_reg.links.menu.yml +++ b/web/modules/custom/dpl_patron_reg/dpl_patron_reg.links.menu.yml @@ -1,5 +1,5 @@ dpl_patron_reg.settings_form: - title: "Patron registration" + title: 'Patron registration' route_name: dpl_patron_reg.settings - description: "Change patron registration settings" + description: 'Change patron registration settings' parent: dpl_library_agency.settings diff --git a/web/modules/custom/dpl_patron_reg/dpl_patron_reg.routing.yml b/web/modules/custom/dpl_patron_reg/dpl_patron_reg.routing.yml index 76da1f4b6..e56baba6f 100644 --- a/web/modules/custom/dpl_patron_reg/dpl_patron_reg.routing.yml +++ b/web/modules/custom/dpl_patron_reg/dpl_patron_reg.routing.yml @@ -1,28 +1,28 @@ dpl_patron_reg.settings: - path: "/admin/config/people/registration" + path: '/admin/config/people/registration' defaults: _form: '\Drupal\dpl_patron_reg\Form\PatronRegSettingsForm' - _title: "Patron registration" + _title: 'Patron registration' requirements: - _permission: "administer site configuration" + _permission: 'administer site configuration' options: _admin_route: true dpl_patron_reg.auth: - path: "/user/registration/{client_name}/auth" + path: '/user/registration/{client_name}/auth' defaults: _controller: '\Drupal\dpl_patron_reg\Controller\DplPatronRegController::authRedirect' - _title: "Patron nem-login authentication" + _title: 'Patron nem-login authentication' requirements: - _permission: "access content" + _permission: 'access content' options: no_cache: true dpl_patron_reg.create: - path: "/user/registration/create" + path: '/user/registration/create' defaults: _controller: '\Drupal\dpl_patron_reg\Controller\DplPatronRegController::userRegistrationReactAppLoad' requirements: - _permission: "access content" + _permission: 'access content' options: no_cache: true diff --git a/web/modules/custom/dpl_patron_reg/dpl_patron_reg.services.yml b/web/modules/custom/dpl_patron_reg/dpl_patron_reg.services.yml index 55306e0f2..ee32e99c0 100644 --- a/web/modules/custom/dpl_patron_reg/dpl_patron_reg.services.yml +++ b/web/modules/custom/dpl_patron_reg/dpl_patron_reg.services.yml @@ -1,4 +1,4 @@ services: dpl_patron_reg.settings: class: Drupal\dpl_patron_reg\DplPatronRegSettings - arguments: ["@config.manager"] + arguments: ['@config.manager'] diff --git a/web/modules/custom/dpl_po/dpl_po.services.yml b/web/modules/custom/dpl_po/dpl_po.services.yml index 0c40b4534..7f0a83e74 100644 --- a/web/modules/custom/dpl_po/dpl_po.services.yml +++ b/web/modules/custom/dpl_po/dpl_po.services.yml @@ -2,10 +2,10 @@ services: dpl_po.config_manager: class: Drupal\dpl_po\Services\CtpConfigManager arguments: - - "@config.storage" - - "@locale.storage" - - "@config.factory" - - "@config.typed" - - "@language_manager" - - "@locale.default.config.storage" - - "@config.manager" + - '@config.storage' + - '@locale.storage' + - '@config.factory' + - '@config.typed' + - '@language_manager' + - '@locale.default.config.storage' + - '@config.manager' diff --git a/web/modules/custom/dpl_po/drush.services.yml b/web/modules/custom/dpl_po/drush.services.yml index 6e9e181e9..b7fa5b280 100644 --- a/web/modules/custom/dpl_po/drush.services.yml +++ b/web/modules/custom/dpl_po/drush.services.yml @@ -2,10 +2,10 @@ services: dpl_po.commands: class: \Drupal\dpl_po\Commands\DplPoCommands arguments: - - "@config.factory" - - "@dpl_po.config_manager" - - "@file_system" - - "@module_handler" - - "@http_client" + - '@config.factory' + - '@dpl_po.config_manager' + - '@file_system' + - '@module_handler' + - '@http_client' tags: - { name: drush.command } diff --git a/web/modules/custom/dpl_protected_nodes/dpl_protected_nodes.info.yml b/web/modules/custom/dpl_protected_nodes/dpl_protected_nodes.info.yml index 4ed847b7b..450e2151a 100644 --- a/web/modules/custom/dpl_protected_nodes/dpl_protected_nodes.info.yml +++ b/web/modules/custom/dpl_protected_nodes/dpl_protected_nodes.info.yml @@ -1,5 +1,5 @@ -name: "DPL Protected Nodes" +name: 'DPL Protected Nodes' type: module -description: "This modules handles protected nodes by checking if a node is being used as a reference in configuration." +description: 'This modules handles protected nodes by checking if a node is being used as a reference in configuration.' package: DPL core_version_requirement: ^10 diff --git a/web/modules/custom/dpl_publication/dpl_publication.info.yml b/web/modules/custom/dpl_publication/dpl_publication.info.yml index b07116130..9ceae94e4 100644 --- a/web/modules/custom/dpl_publication/dpl_publication.info.yml +++ b/web/modules/custom/dpl_publication/dpl_publication.info.yml @@ -1,5 +1,5 @@ -name: "DPL publication" +name: 'DPL publication' type: module -description: "Sets the publication date field when content is published.'" +description: 'Sets the publication date field when content is published.'' package: Custom core_version_requirement: ^10 diff --git a/web/modules/custom/dpl_publizon/dpl_publizon.links.menu.yml b/web/modules/custom/dpl_publizon/dpl_publizon.links.menu.yml index 37620aab8..13f1cceda 100644 --- a/web/modules/custom/dpl_publizon/dpl_publizon.links.menu.yml +++ b/web/modules/custom/dpl_publizon/dpl_publizon.links.menu.yml @@ -1,5 +1,5 @@ dpl_publizon.settings_form: - title: "Publizon settings" + title: 'Publizon settings' route_name: dpl_publizon.settings - description: "Change basic publizon settings" + description: 'Change basic publizon settings' parent: system.admin_config_services diff --git a/web/modules/custom/dpl_publizon/dpl_publizon.routing.yml b/web/modules/custom/dpl_publizon/dpl_publizon.routing.yml index e427fb1a4..3a11689c8 100644 --- a/web/modules/custom/dpl_publizon/dpl_publizon.routing.yml +++ b/web/modules/custom/dpl_publizon/dpl_publizon.routing.yml @@ -1,9 +1,9 @@ dpl_publizon.settings: - path: "/admin/config/services/publizon" + path: '/admin/config/services/publizon' defaults: _form: '\Drupal\dpl_publizon\Form\PublizonSettingsForm' - _title: "Publizon settings" + _title: 'Publizon settings' requirements: - _permission: "administer site configuration" + _permission: 'administer site configuration' options: _admin_route: TRUE diff --git a/web/modules/custom/dpl_publizon/dpl_publizon.services.yml b/web/modules/custom/dpl_publizon/dpl_publizon.services.yml index 1b2bdef1c..42f8d3979 100644 --- a/web/modules/custom/dpl_publizon/dpl_publizon.services.yml +++ b/web/modules/custom/dpl_publizon/dpl_publizon.services.yml @@ -1,4 +1,4 @@ services: dpl_publizon.settings: class: Drupal\dpl_publizon\DplPublizonSettings - arguments: ["@config.manager"] + arguments: ['@config.manager'] diff --git a/web/modules/custom/dpl_react/dpl_react.routing.yml b/web/modules/custom/dpl_react/dpl_react.routing.yml index 217624f8f..6ac1e41c1 100644 --- a/web/modules/custom/dpl_react/dpl_react.routing.yml +++ b/web/modules/custom/dpl_react/dpl_react.routing.yml @@ -1,9 +1,9 @@ dpl_react.user_token: - path: "/dpl-react/user-tokens" + path: '/dpl-react/user-tokens' defaults: _controller: '\Drupal\dpl_react\Controller\DplReactController::user' - _title: "DPL React User Token" + _title: 'DPL React User Token' requirements: - _permission: "access content" + _permission: 'access content' options: - no_cache: "TRUE" + no_cache: 'TRUE' diff --git a/web/modules/custom/dpl_react/js/handler.js b/web/modules/custom/dpl_react/js/handler.js index dabae852a..48ca48fe4 100644 --- a/web/modules/custom/dpl_react/js/handler.js +++ b/web/modules/custom/dpl_react/js/handler.js @@ -4,11 +4,11 @@ // element with querySelectorAll, so this tries to do the right // thing. const getElement = function getElement(element) { - if (typeof element.querySelectorAll !== "function") { + if (typeof element.querySelectorAll !== 'function') { element = element[0] || element; } - if (typeof element.querySelectorAll !== "function") { + if (typeof element.querySelectorAll !== 'function') { return null; } @@ -19,7 +19,7 @@ // https://github.com/jquery/jquery/blob/3.6.0/src/core/DOMEval.js const DOMEval = function DOMEval(code) { const doc = document; - const script = doc.createElement("script"); + const script = doc.createElement('script'); script.text = code; doc.head.appendChild(script).parentNode.removeChild(script); }; @@ -29,17 +29,17 @@ const element = getElement(context); if (element) { // Port jQuery.ajax with dataType script to vanilla JS with Fetch API. - fetch("/dpl-react/user-tokens", { + fetch('/dpl-react/user-tokens', { headers: { Accept: - "text/javascript, application/javascript, " + - "application/ecmascript, application/x-ecmascript", + 'text/javascript, application/javascript, ' + + 'application/ecmascript, application/x-ecmascript', }, }) .then((response) => { if (!response.ok) { throw new Error( - `HTTP error response: ${response.status} - ${response.statusText}` + `HTTP error response: ${response.status} - ${response.statusText}`, ); } return response.text(); diff --git a/web/modules/custom/dpl_react_apps/dpl_react_apps.routing.yml b/web/modules/custom/dpl_react_apps/dpl_react_apps.routing.yml index 93de0aa65..4d630fbcc 100644 --- a/web/modules/custom/dpl_react_apps/dpl_react_apps.routing.yml +++ b/web/modules/custom/dpl_react_apps/dpl_react_apps.routing.yml @@ -1,20 +1,20 @@ dpl_react_apps.search_result: - path: "/search" + path: '/search' defaults: _controller: '\Drupal\dpl_react_apps\Controller\DplReactAppsController::search' requirements: - _permission: "access content" + _permission: 'access content' dpl_react_apps.advanced_search: - path: "/advanced-search" + path: '/advanced-search' defaults: _controller: '\Drupal\dpl_react_apps\Controller\DplReactAppsController::advancedSearch' requirements: - _permission: "access content" + _permission: 'access content' dpl_react_apps.work: - path: "/work/{wid}" + path: '/work/{wid}' defaults: _controller: '\Drupal\dpl_react_apps\Controller\DplReactAppsController::work' requirements: - _permission: "access content" + _permission: 'access content' diff --git a/web/modules/custom/dpl_recommender/dpl_recommender.routing.yml b/web/modules/custom/dpl_recommender/dpl_recommender.routing.yml index e1dea8424..015d2a959 100644 --- a/web/modules/custom/dpl_recommender/dpl_recommender.routing.yml +++ b/web/modules/custom/dpl_recommender/dpl_recommender.routing.yml @@ -1,16 +1,16 @@ dpl_recommender.list: - path: "/recommender" + path: '/recommender' defaults: _controller: '\Drupal\dpl_recommender\Controller\DplRecommenderController::list' requirements: - _permission: "access content" + _permission: 'access content' dpl_recommender.settings: - path: "/admin/config/dpl-library-agency/recommender-settings" + path: '/admin/config/dpl-library-agency/recommender-settings' defaults: _form: '\Drupal\dpl_recommender\Form\RecommenderSettingsForm' - _title: "Recommender settings" + _title: 'Recommender settings' requirements: - _permission: "administer site configuration" + _permission: 'administer site configuration' options: _admin_route: TRUE diff --git a/web/modules/custom/dpl_recommender/dpl_recommender.services.yml b/web/modules/custom/dpl_recommender/dpl_recommender.services.yml index 3c562a04e..32f3ceddd 100644 --- a/web/modules/custom/dpl_recommender/dpl_recommender.services.yml +++ b/web/modules/custom/dpl_recommender/dpl_recommender.services.yml @@ -1,4 +1,4 @@ services: dpl_recommender.settings: class: Drupal\dpl_recommender\DplRecommenderSettings - arguments: ["@config.manager"] + arguments: ['@config.manager'] diff --git a/web/modules/custom/dpl_redia_legacy/dpl_redia_legacy.info.yml b/web/modules/custom/dpl_redia_legacy/dpl_redia_legacy.info.yml index 18cc38836..dd07827db 100644 --- a/web/modules/custom/dpl_redia_legacy/dpl_redia_legacy.info.yml +++ b/web/modules/custom/dpl_redia_legacy/dpl_redia_legacy.info.yml @@ -1,6 +1,6 @@ -name: "DPL Redia Legacy feeds" +name: 'DPL Redia Legacy feeds' type: module -description: "Various legacy integrations, used for the Redia App." +description: 'Various legacy integrations, used for the Redia App.' package: DPL core_version_requirement: ^10 diff --git a/web/modules/custom/dpl_redia_legacy/dpl_redia_legacy.routing.yml b/web/modules/custom/dpl_redia_legacy/dpl_redia_legacy.routing.yml index efb867c3d..14909ab3f 100644 --- a/web/modules/custom/dpl_redia_legacy/dpl_redia_legacy.routing.yml +++ b/web/modules/custom/dpl_redia_legacy/dpl_redia_legacy.routing.yml @@ -1,9 +1,9 @@ dpl_redia_legacy.events: - path: "/ding-redia-rss/event" + path: '/ding-redia-rss/event' defaults: _controller: '\Drupal\dpl_redia_legacy\Controller\RssFeeds\EventsController::getFeed' - _title: "Redia APP Event" + _title: 'Redia APP Event' requirements: - _permission: "access content" + _permission: 'access content' options: - _format: "xml" + _format: 'xml' diff --git a/web/modules/custom/dpl_related_content/dpl_related_content.services.yml b/web/modules/custom/dpl_related_content/dpl_related_content.services.yml index bad6a8725..b5376fc33 100644 --- a/web/modules/custom/dpl_related_content/dpl_related_content.services.yml +++ b/web/modules/custom/dpl_related_content/dpl_related_content.services.yml @@ -1,5 +1,5 @@ services: dpl_related_content.related_content: class: Drupal\dpl_related_content\Services\RelatedContent - arguments: ["@entity_type.manager", "@database", "@string_translation"] + arguments: ['@entity_type.manager', '@database', '@string_translation'] shared: false diff --git a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/eventseries/2abdab73-6a04-4646-8e34-76cad335a9e7.yml b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/eventseries/2abdab73-6a04-4646-8e34-76cad335a9e7.yml index 78b71a7a6..b0de39197 100644 --- a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/eventseries/2abdab73-6a04-4646-8e34-76cad335a9e7.yml +++ b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/eventseries/2abdab73-6a04-4646-8e34-76cad335a9e7.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: eventseries uuid: 2abdab73-6a04-4646-8e34-76cad335a9e7 bundle: default @@ -43,57 +43,57 @@ default: uid: - target_id: 1 title: - - value: "Event 2 | tag1, tag2, cat1, branch1" + - value: 'Event 2 | tag1, tag2, cat1, branch1' recur_type: - value: weekly_recurring_date consecutive_recurring_date: - - value: "" - end_value: "" - time: "08:00 am" - end_time: "11:30 pm" + - value: '' + end_value: '' + time: '08:00 am' + end_time: '11:30 pm' duration: 5 duration_units: minute buffer: 0 buffer_units: minute daily_recurring_date: - - value: "" - end_value: "" - time: "" + - value: '' + end_value: '' + time: '' duration: 0 - end_time: "" + end_time: '' duration_or_end_time: duration weekly_recurring_date: - - value: "2027-06-04T16:08:16" - end_value: "2027-12-04T17:08:16" - time: "08:00 am" + - value: '2027-06-04T16:08:16' + end_value: '2027-12-04T17:08:16' + time: '08:00 am' duration: 900 - end_time: "08:00 am" + end_time: '08:00 am' duration_or_end_time: duration days: friday monthly_recurring_date: - - value: "" - end_value: "" - time: "08:00 am" + - value: '' + end_value: '' + time: '08:00 am' duration: 900 - end_time: "08:00 am" + end_time: '08:00 am' duration_or_end_time: duration - days: "" - type: "" - day_occurrence: "" - day_of_month: "" + days: '' + type: '' + day_occurrence: '' + day_of_month: '' yearly_recurring_date: - - value: "" - end_value: "" - time: "" + - value: '' + end_value: '' + time: '' duration: 0 - end_time: "" + end_time: '' duration_or_end_time: duration - days: "" - type: "" - day_occurrence: "" - day_of_month: "" + days: '' + type: '' + day_occurrence: '' + day_of_month: '' year_interval: 0 - months: "" + months: '' created: - value: 1717499182 revision_translation_affected: @@ -102,11 +102,11 @@ default: - tag: meta attributes: name: title - content: "| DPL CMS" + content: '| DPL CMS' - tag: link attributes: rel: canonical - href: "http://dapple-cms.docker/user/login" + href: 'http://dapple-cms.docker/user/login' path: - alias: /testfilialen/events/cat1/event-2-tag1-tag2-cat1-branch1 langcode: und @@ -147,7 +147,7 @@ default: field_event_paragraphs: - entity: _meta: - version: "1.0" + version: '1.0' entity_type: paragraph uuid: 48b2695d-31dd-4a1d-b37d-1bed1a0a9443 bundle: text_body diff --git a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/eventseries/cbd3796e-c870-4e53-b47e-b43a4ec29a13.yml b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/eventseries/cbd3796e-c870-4e53-b47e-b43a4ec29a13.yml index b81482f06..ea0491dd1 100644 --- a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/eventseries/cbd3796e-c870-4e53-b47e-b43a4ec29a13.yml +++ b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/eventseries/cbd3796e-c870-4e53-b47e-b43a4ec29a13.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: eventseries uuid: cbd3796e-c870-4e53-b47e-b43a4ec29a13 bundle: default @@ -31,53 +31,53 @@ default: recur_type: - value: weekly_recurring_date consecutive_recurring_date: - - value: "" - end_value: "" - time: "08:00 am" - end_time: "11:30 pm" + - value: '' + end_value: '' + time: '08:00 am' + end_time: '11:30 pm' duration: 5 duration_units: minute buffer: 0 buffer_units: minute daily_recurring_date: - - value: "" - end_value: "" - time: "" + - value: '' + end_value: '' + time: '' duration: 0 - end_time: "" + end_time: '' duration_or_end_time: duration weekly_recurring_date: - - value: "2027-05-17T16:08:26" - end_value: "2027-08-06T16:08:26" - time: "08:00 am" + - value: '2027-05-17T16:08:26' + end_value: '2027-08-06T16:08:26' + time: '08:00 am' duration: 900 - end_time: "08:00 am" + end_time: '08:00 am' duration_or_end_time: duration days: monday monthly_recurring_date: - - value: "" - end_value: "" - time: "08:00 am" + - value: '' + end_value: '' + time: '08:00 am' duration: 900 - end_time: "08:00 am" + end_time: '08:00 am' duration_or_end_time: duration - days: "" - type: "" - day_occurrence: "" - day_of_month: "" + days: '' + type: '' + day_occurrence: '' + day_of_month: '' yearly_recurring_date: - - value: "" - end_value: "" - time: "" + - value: '' + end_value: '' + time: '' duration: 0 - end_time: "" + end_time: '' duration_or_end_time: duration - days: "" - type: "" - day_occurrence: "" - day_of_month: "" + days: '' + type: '' + day_occurrence: '' + day_of_month: '' year_interval: 0 - months: "" + months: '' created: - value: 1717512986 revision_translation_affected: @@ -86,11 +86,11 @@ default: - tag: meta attributes: name: title - content: "| DPL CMS" + content: '| DPL CMS' - tag: link attributes: rel: canonical - href: "http://dapple-cms.docker/user/login" + href: 'http://dapple-cms.docker/user/login' path: - alias: /testfilialen2/events/cat2/event-3-tag2-cat2-branch2 langcode: und @@ -116,7 +116,7 @@ default: field_event_paragraphs: - entity: _meta: - version: "1.0" + version: '1.0' entity_type: paragraph uuid: 03c12132-4913-4953-8703-9a43f39e56fa bundle: text_body diff --git a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/eventseries/cc6da236-c27d-43f7-83df-a5214f9c1026.yml b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/eventseries/cc6da236-c27d-43f7-83df-a5214f9c1026.yml index 63f8cc75f..598cad47b 100644 --- a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/eventseries/cc6da236-c27d-43f7-83df-a5214f9c1026.yml +++ b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/eventseries/cc6da236-c27d-43f7-83df-a5214f9c1026.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: eventseries uuid: cc6da236-c27d-43f7-83df-a5214f9c1026 bundle: default @@ -59,57 +59,57 @@ default: uid: - target_id: 1 title: - - value: "Event 1 | tag1, tag2, cat1, branch1" + - value: 'Event 1 | tag1, tag2, cat1, branch1' recur_type: - value: weekly_recurring_date consecutive_recurring_date: - - value: "" - end_value: "" - time: "08:00 am" - end_time: "11:30 pm" + - value: '' + end_value: '' + time: '08:00 am' + end_time: '11:30 pm' duration: 5 duration_units: minute buffer: 0 buffer_units: minute daily_recurring_date: - - value: "" - end_value: "" - time: "" + - value: '' + end_value: '' + time: '' duration: 0 - end_time: "" + end_time: '' duration_or_end_time: duration weekly_recurring_date: - - value: "2028-01-04T17:08:38" - end_value: "2028-06-04T16:08:38" - time: "08:00 am" + - value: '2028-01-04T17:08:38' + end_value: '2028-06-04T16:08:38' + time: '08:00 am' duration: 900 - end_time: "08:00 am" + end_time: '08:00 am' duration_or_end_time: duration - days: "monday,tuesday" + days: 'monday,tuesday' monthly_recurring_date: - - value: "" - end_value: "" - time: "08:00 am" + - value: '' + end_value: '' + time: '08:00 am' duration: 900 - end_time: "08:00 am" + end_time: '08:00 am' duration_or_end_time: duration - days: "" - type: "" - day_occurrence: "" - day_of_month: "" + days: '' + type: '' + day_occurrence: '' + day_of_month: '' yearly_recurring_date: - - value: "" - end_value: "" - time: "" + - value: '' + end_value: '' + time: '' duration: 0 - end_time: "" + end_time: '' duration_or_end_time: duration - days: "" - type: "" - day_occurrence: "" - day_of_month: "" + days: '' + type: '' + day_occurrence: '' + day_of_month: '' year_interval: 0 - months: "" + months: '' created: - value: 1717497934 revision_translation_affected: @@ -118,11 +118,11 @@ default: - tag: meta attributes: name: title - content: "| DPL CMS" + content: '| DPL CMS' - tag: link attributes: rel: canonical - href: "http://dapple-cms.docker/user/login" + href: 'http://dapple-cms.docker/user/login' path: - alias: /testfilialen/events/cat1/event-1-tag1-tag2-cat1-branch1 langcode: und @@ -179,7 +179,7 @@ default: field_event_paragraphs: - entity: _meta: - version: "1.0" + version: '1.0' entity_type: paragraph uuid: aab1a01d-2df5-4eb4-abd4-1c7790d974bd bundle: text_body diff --git a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/eventseries/ffb75415-6568-49a9-9cdf-1e16cc6ca0d3.yml b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/eventseries/ffb75415-6568-49a9-9cdf-1e16cc6ca0d3.yml index 89e130d2e..b69156f46 100644 --- a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/eventseries/ffb75415-6568-49a9-9cdf-1e16cc6ca0d3.yml +++ b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/eventseries/ffb75415-6568-49a9-9cdf-1e16cc6ca0d3.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: eventseries uuid: ffb75415-6568-49a9-9cdf-1e16cc6ca0d3 bundle: default @@ -19,56 +19,56 @@ default: recur_type: - value: custom consecutive_recurring_date: - - value: "" - end_value: "" - time: "08:00 am" - end_time: "11:30 pm" + - value: '' + end_value: '' + time: '08:00 am' + end_time: '11:30 pm' duration: 5 duration_units: minute buffer: 0 buffer_units: minute daily_recurring_date: - - value: "" - end_value: "" - time: "" + - value: '' + end_value: '' + time: '' duration: 0 - end_time: "" + end_time: '' duration_or_end_time: duration weekly_recurring_date: - - value: "" - end_value: "" - time: "08:00 am" + - value: '' + end_value: '' + time: '08:00 am' duration: 900 - end_time: "08:00 am" + end_time: '08:00 am' duration_or_end_time: duration - days: "" + days: '' monthly_recurring_date: - - value: "" - end_value: "" - time: "08:00 am" + - value: '' + end_value: '' + time: '08:00 am' duration: 900 - end_time: "08:00 am" + end_time: '08:00 am' duration_or_end_time: duration - days: "" - type: "" - day_occurrence: "" - day_of_month: "" + days: '' + type: '' + day_occurrence: '' + day_of_month: '' yearly_recurring_date: - - value: "" - end_value: "" - time: "" + - value: '' + end_value: '' + time: '' duration: 0 - end_time: "" + end_time: '' duration_or_end_time: duration - days: "" - type: "" - day_occurrence: "" - day_of_month: "" + days: '' + type: '' + day_occurrence: '' + day_of_month: '' year_interval: 0 - months: "" + months: '' custom_date: - - value: "2027-09-27T08:00:00" - end_value: "2027-09-27T09:00:00" + - value: '2027-09-27T08:00:00' + end_value: '2027-09-27T09:00:00' created: - value: 1717513051 revision_translation_affected: @@ -77,11 +77,11 @@ default: - tag: meta attributes: name: title - content: "| DPL CMS" + content: '| DPL CMS' - tag: link attributes: rel: canonical - href: "http://dapple-cms.docker/user/login" + href: 'http://dapple-cms.docker/user/login' path: - alias: /arrangementer/event-4-tag2-0 langcode: und @@ -93,7 +93,7 @@ default: field_event_paragraphs: - entity: _meta: - version: "1.0" + version: '1.0' entity_type: paragraph uuid: 5b3f7e3a-6f95-4cb8-bd6d-b1c12a89375c bundle: text_body diff --git a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/085fdde8-5319-43b2-8ed8-7d9d27886069.yml b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/085fdde8-5319-43b2-8ed8-7d9d27886069.yml index ae49f88a4..5f299e20e 100644 --- a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/085fdde8-5319-43b2-8ed8-7d9d27886069.yml +++ b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/085fdde8-5319-43b2-8ed8-7d9d27886069.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: node uuid: 085fdde8-5319-43b2-8ed8-7d9d27886069 bundle: article @@ -18,7 +18,7 @@ default: uid: - target_id: 1 title: - - value: "Artikel 1 | tag1, tag2, cat1, branch1" + - value: 'Artikel 1 | tag1, tag2, cat1, branch1' created: - value: 1717497539 promote: @@ -31,15 +31,15 @@ default: - value: false entity_clone_template_image: - entity: e00e1460-169e-468d-9835-d664f06d0969 - alt: "" - title: "" + alt: '' + title: '' width: 640 height: 443 metatag: - tag: meta attributes: name: title - content: "Artikel 1 | tag1, tag2, cat1, branch1 | DPL CMS" + content: 'Artikel 1 | tag1, tag2, cat1, branch1 | DPL CMS' path: - alias: /branch1/articles/cat1/artikel-1-tag1-tag2-cat1-branch1 langcode: und diff --git a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/1201ee52-766e-4793-8b9f-155fe6e74a5d.yml b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/1201ee52-766e-4793-8b9f-155fe6e74a5d.yml index 67526a391..49185c3e1 100644 --- a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/1201ee52-766e-4793-8b9f-155fe6e74a5d.yml +++ b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/1201ee52-766e-4793-8b9f-155fe6e74a5d.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: node uuid: 1201ee52-766e-4793-8b9f-155fe6e74a5d bundle: page @@ -14,7 +14,7 @@ default: uid: - target_id: 1 title: - - value: "Page1 | Branch1" + - value: 'Page1 | Branch1' created: - value: 1717517161 promote: @@ -29,7 +29,7 @@ default: - tag: meta attributes: name: title - content: "Page1 | Branch1 | DPL CMS" + content: 'Page1 | Branch1 | DPL CMS' path: - alias: /testfilialen/page1-branch1 langcode: und diff --git a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/13de1b72-4cae-4757-a92a-d81c96e6c6c2.yml b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/13de1b72-4cae-4757-a92a-d81c96e6c6c2.yml index 91e8937bf..3be907bd0 100644 --- a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/13de1b72-4cae-4757-a92a-d81c96e6c6c2.yml +++ b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/13de1b72-4cae-4757-a92a-d81c96e6c6c2.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: node uuid: 13de1b72-4cae-4757-a92a-d81c96e6c6c2 bundle: article @@ -16,7 +16,7 @@ default: uid: - target_id: 1 title: - - value: "Artikel 4 | tag1, branch2" + - value: 'Artikel 4 | tag1, branch2' created: - value: 1717497635 promote: @@ -29,15 +29,15 @@ default: - value: false entity_clone_template_image: - entity: e00e1460-169e-468d-9835-d664f06d0969 - alt: "" - title: "" + alt: '' + title: '' width: 640 height: 443 metatag: - tag: meta attributes: name: title - content: "Artikel 4 | tag1, branch2 | DPL CMS" + content: 'Artikel 4 | tag1, branch2 | DPL CMS' path: - alias: /testfilialen2/articles/artikel-4-tag1-branch2 langcode: und diff --git a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/1f4f09dd-83dd-4f82-a57d-95086966c7a3.yml b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/1f4f09dd-83dd-4f82-a57d-95086966c7a3.yml index e813600ae..a4b3c1aad 100644 --- a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/1f4f09dd-83dd-4f82-a57d-95086966c7a3.yml +++ b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/1f4f09dd-83dd-4f82-a57d-95086966c7a3.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: node uuid: 1f4f09dd-83dd-4f82-a57d-95086966c7a3 bundle: article @@ -18,7 +18,7 @@ default: uid: - target_id: 1 title: - - value: "RelatedContent test" + - value: 'RelatedContent test' created: - value: 1717516357 promote: @@ -33,7 +33,7 @@ default: - tag: meta attributes: name: title - content: "RelatedContent test | DPL CMS" + content: 'RelatedContent test | DPL CMS' path: - alias: /branch1/articles/cat2/relatedcontent-test langcode: und @@ -45,7 +45,7 @@ default: field_paragraphs: - entity: _meta: - version: "1.0" + version: '1.0' entity_type: paragraph uuid: b2cc4e4c-68a5-4a12-891c-63af28feea9b bundle: filtered_event_list @@ -64,12 +64,12 @@ default: field_filter_tags: - entity: ab73e9ee-9195-4245-bb95-f5de1c4eb06f field_max_item_amount: - - value: "12" + - value: '12' field_title: - - value: "Event list - automatic - tag1" + - value: 'Event list - automatic - tag1' - entity: _meta: - version: "1.0" + version: '1.0' entity_type: paragraph uuid: 32250239-124c-4fdd-a693-003f57e23306 bundle: content_slider_automatic @@ -95,10 +95,10 @@ default: field_filter_tags: - entity: ab73e9ee-9195-4245-bb95-f5de1c4eb06f field_title: - - value: "Slider - Article + Events + Tag 1 + Cat 1 + Branch 1 (OR)" + - value: 'Slider - Article + Events + Tag 1 + Cat 1 + Branch 1 (OR)' - entity: _meta: - version: "1.0" + version: '1.0' entity_type: paragraph uuid: a74126ed-e24d-45f3-910f-dde2680bd916 bundle: content_slider_automatic @@ -122,10 +122,10 @@ default: field_filter_tags: - entity: ab73e9ee-9195-4245-bb95-f5de1c4eb06f field_title: - - value: "Slider - Events + Articles + Tag 1 + Cat 1 (AND)" + - value: 'Slider - Events + Articles + Tag 1 + Cat 1 (AND)' - entity: _meta: - version: "1.0" + version: '1.0' entity_type: paragraph uuid: 171dc2e5-8716-4df2-bf0c-8c0d8e01f44f bundle: content_slider_automatic @@ -145,10 +145,10 @@ default: field_filter_cond_type: - value: or field_title: - - value: "Slider - Branch1+Cat1+Cat2 (OR)" + - value: 'Slider - Branch1+Cat1+Cat2 (OR)' - entity: _meta: - version: "1.0" + version: '1.0' entity_type: paragraph uuid: 3bd1e337-e322-4f5c-9576-eae680eccc81 bundle: content_slider_automatic @@ -168,10 +168,10 @@ default: - entity: ab73e9ee-9195-4245-bb95-f5de1c4eb06f - entity: 5d70c9f7-779c-4337-a587-ced7a8ecc770 field_title: - - value: "Slider - Tag1+Tag2 (AND)" + - value: 'Slider - Tag1+Tag2 (AND)' - entity: _meta: - version: "1.0" + version: '1.0' entity_type: paragraph uuid: 052840b7-538c-44c5-a5f3-b58ff37b4834 bundle: content_slider_automatic @@ -191,7 +191,7 @@ default: - value: event - value: page field_title: - - value: "Slider - Page+Events" + - value: 'Slider - Page+Events' field_show_override_author: - value: false field_tags: diff --git a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/2b38f99d-f500-42a8-9b21-9732d765ed44.yml b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/2b38f99d-f500-42a8-9b21-9732d765ed44.yml index 96362ceb7..146d619a1 100644 --- a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/2b38f99d-f500-42a8-9b21-9732d765ed44.yml +++ b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/2b38f99d-f500-42a8-9b21-9732d765ed44.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: node uuid: 2b38f99d-f500-42a8-9b21-9732d765ed44 bundle: article @@ -18,7 +18,7 @@ default: uid: - target_id: 1 title: - - value: "Artikel 2 | tag1, tag2, cat1, branch1" + - value: 'Artikel 2 | tag1, tag2, cat1, branch1' created: - value: 1717497549 promote: @@ -31,15 +31,15 @@ default: - value: false entity_clone_template_image: - entity: e00e1460-169e-468d-9835-d664f06d0969 - alt: "" - title: "" + alt: '' + title: '' width: 640 height: 443 metatag: - tag: meta attributes: name: title - content: "Artikel 2 | tag1, tag2, cat1, branch1 | DPL CMS" + content: 'Artikel 2 | tag1, tag2, cat1, branch1 | DPL CMS' path: - alias: /branch1/articles/cat1/artikel-2-tag1-tag2-cat1-branch1 langcode: und diff --git a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/76c9684c-7178-4f75-ba67-58799f4d6fc0.yml b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/76c9684c-7178-4f75-ba67-58799f4d6fc0.yml index 850174b8b..06fa3bb78 100644 --- a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/76c9684c-7178-4f75-ba67-58799f4d6fc0.yml +++ b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/76c9684c-7178-4f75-ba67-58799f4d6fc0.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: node uuid: 76c9684c-7178-4f75-ba67-58799f4d6fc0 bundle: branch @@ -25,7 +25,7 @@ default: - tag: meta attributes: name: title - content: "Branch2 | DPL CMS" + content: 'Branch2 | DPL CMS' path: - alias: /branch2 langcode: und diff --git a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/994a7d47-fe90-4ca8-a3b6-e9114d45d585.yml b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/994a7d47-fe90-4ca8-a3b6-e9114d45d585.yml index f35813e01..a924b08a2 100644 --- a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/994a7d47-fe90-4ca8-a3b6-e9114d45d585.yml +++ b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/994a7d47-fe90-4ca8-a3b6-e9114d45d585.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: node uuid: 994a7d47-fe90-4ca8-a3b6-e9114d45d585 bundle: article @@ -17,7 +17,7 @@ default: uid: - target_id: 1 title: - - value: "Artikel 5 | tag2, cat2, branch2" + - value: 'Artikel 5 | tag2, cat2, branch2' created: - value: 1717497685 promote: @@ -30,15 +30,15 @@ default: - value: false entity_clone_template_image: - entity: e00e1460-169e-468d-9835-d664f06d0969 - alt: "" - title: "" + alt: '' + title: '' width: 640 height: 443 metatag: - tag: meta attributes: name: title - content: "Artikel 5 | tag2, cat2, branch2 | DPL CMS" + content: 'Artikel 5 | tag2, cat2, branch2 | DPL CMS' path: - alias: /testfilialen/articles/cat2/artikel-5-tag2-cat2-branch2 langcode: und diff --git a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/cfd18e96-efb6-4e3b-af79-7a4033860f1d.yml b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/cfd18e96-efb6-4e3b-af79-7a4033860f1d.yml index 45a5c7b42..48fd9dc84 100644 --- a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/cfd18e96-efb6-4e3b-af79-7a4033860f1d.yml +++ b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/cfd18e96-efb6-4e3b-af79-7a4033860f1d.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: node uuid: cfd18e96-efb6-4e3b-af79-7a4033860f1d bundle: article @@ -18,7 +18,7 @@ default: uid: - target_id: 1 title: - - value: "Artikel 3 | tag1, tag2, cat1, branch1" + - value: 'Artikel 3 | tag1, tag2, cat1, branch1' created: - value: 1717497573 promote: @@ -31,15 +31,15 @@ default: - value: false entity_clone_template_image: - entity: e00e1460-169e-468d-9835-d664f06d0969 - alt: "" - title: "" + alt: '' + title: '' width: 640 height: 443 metatag: - tag: meta attributes: name: title - content: "Artikel 3 | tag1, tag2, cat1, branch1 | DPL CMS" + content: 'Artikel 3 | tag1, tag2, cat1, branch1 | DPL CMS' path: - alias: /branch1/articles/cat1/artikel-3-tag1-tag2-cat1-branch1 langcode: und diff --git a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/dd9b05c7-04ed-4cc0-95a0-91da2cc3d924.yml b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/dd9b05c7-04ed-4cc0-95a0-91da2cc3d924.yml index 4b37a889d..3a4b183b0 100644 --- a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/dd9b05c7-04ed-4cc0-95a0-91da2cc3d924.yml +++ b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/dd9b05c7-04ed-4cc0-95a0-91da2cc3d924.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: node uuid: dd9b05c7-04ed-4cc0-95a0-91da2cc3d924 bundle: article @@ -15,7 +15,7 @@ default: uid: - target_id: 1 title: - - value: "Artikel 6 | cat2" + - value: 'Artikel 6 | cat2' created: - value: 1717497734 promote: @@ -28,15 +28,15 @@ default: - value: false entity_clone_template_image: - entity: e00e1460-169e-468d-9835-d664f06d0969 - alt: "" - title: "" + alt: '' + title: '' width: 640 height: 443 metatag: - tag: meta attributes: name: title - content: "Artikel 6 | cat2 | DPL CMS" + content: 'Artikel 6 | cat2 | DPL CMS' path: - alias: /articles/cat2/artikel-6-cat2 langcode: und diff --git a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/ec9dd467-24d5-484f-b19a-e8653c493177.yml b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/ec9dd467-24d5-484f-b19a-e8653c493177.yml index 4e605f8e6..a82eed4fc 100644 --- a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/ec9dd467-24d5-484f-b19a-e8653c493177.yml +++ b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/node/ec9dd467-24d5-484f-b19a-e8653c493177.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: node uuid: ec9dd467-24d5-484f-b19a-e8653c493177 bundle: branch @@ -25,7 +25,7 @@ default: - tag: meta attributes: name: title - content: "Branch1 | DPL CMS" + content: 'Branch1 | DPL CMS' path: - alias: /branch1 langcode: und diff --git a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/taxonomy_term/3369e523-14d9-49a5-93e2-eda5585c6eaa.yml b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/taxonomy_term/3369e523-14d9-49a5-93e2-eda5585c6eaa.yml index f0db4b9a2..c6b66256a 100644 --- a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/taxonomy_term/3369e523-14d9-49a5-93e2-eda5585c6eaa.yml +++ b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/taxonomy_term/3369e523-14d9-49a5-93e2-eda5585c6eaa.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: taxonomy_term uuid: 3369e523-14d9-49a5-93e2-eda5585c6eaa bundle: categories @@ -19,12 +19,12 @@ default: - tag: meta attributes: name: title - content: "Cat1 | DPL CMS" + content: 'Cat1 | DPL CMS' - tag: link attributes: rel: canonical - href: "http://dapple-cms.docker/taxonomy/term/29" + href: 'http://dapple-cms.docker/taxonomy/term/29' path: - - alias: "" + - alias: '' langcode: da pathauto: 0 diff --git a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/taxonomy_term/5d70c9f7-779c-4337-a587-ced7a8ecc770.yml b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/taxonomy_term/5d70c9f7-779c-4337-a587-ced7a8ecc770.yml index caf83d709..07eafb0d3 100644 --- a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/taxonomy_term/5d70c9f7-779c-4337-a587-ced7a8ecc770.yml +++ b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/taxonomy_term/5d70c9f7-779c-4337-a587-ced7a8ecc770.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: taxonomy_term uuid: 5d70c9f7-779c-4337-a587-ced7a8ecc770 bundle: tags @@ -19,12 +19,12 @@ default: - tag: meta attributes: name: title - content: "Tag2 | DPL CMS" + content: 'Tag2 | DPL CMS' - tag: link attributes: rel: canonical - href: "http://dapple-cms.docker/taxonomy/term/28" + href: 'http://dapple-cms.docker/taxonomy/term/28' path: - - alias: "" + - alias: '' langcode: da pathauto: 1 diff --git a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/taxonomy_term/9df8ee6a-939d-4d8f-9d79-d082b00286ac.yml b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/taxonomy_term/9df8ee6a-939d-4d8f-9d79-d082b00286ac.yml index 1552e0ca1..696cb822b 100644 --- a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/taxonomy_term/9df8ee6a-939d-4d8f-9d79-d082b00286ac.yml +++ b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/taxonomy_term/9df8ee6a-939d-4d8f-9d79-d082b00286ac.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: taxonomy_term uuid: 9df8ee6a-939d-4d8f-9d79-d082b00286ac bundle: categories @@ -19,12 +19,12 @@ default: - tag: meta attributes: name: title - content: "Cat2 | DPL CMS" + content: 'Cat2 | DPL CMS' - tag: link attributes: rel: canonical - href: "http://dapple-cms.docker/taxonomy/term/27" + href: 'http://dapple-cms.docker/taxonomy/term/27' path: - - alias: "" + - alias: '' langcode: da pathauto: 0 diff --git a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/taxonomy_term/ab73e9ee-9195-4245-bb95-f5de1c4eb06f.yml b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/taxonomy_term/ab73e9ee-9195-4245-bb95-f5de1c4eb06f.yml index 045439022..11f2b7f20 100644 --- a/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/taxonomy_term/ab73e9ee-9195-4245-bb95-f5de1c4eb06f.yml +++ b/web/modules/custom/dpl_related_content/dpl_related_content_tests/content/taxonomy_term/ab73e9ee-9195-4245-bb95-f5de1c4eb06f.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: taxonomy_term uuid: ab73e9ee-9195-4245-bb95-f5de1c4eb06f bundle: tags @@ -19,12 +19,12 @@ default: - tag: meta attributes: name: title - content: "Tag1 | DPL CMS" + content: 'Tag1 | DPL CMS' - tag: link attributes: rel: canonical - href: "http://dapple-cms.docker/taxonomy/term/26" + href: 'http://dapple-cms.docker/taxonomy/term/26' path: - - alias: "" + - alias: '' langcode: da pathauto: 1 diff --git a/web/modules/custom/dpl_reservations/dpl_reservations.links.menu.yml b/web/modules/custom/dpl_reservations/dpl_reservations.links.menu.yml index cbe9efd02..df6ed5785 100644 --- a/web/modules/custom/dpl_reservations/dpl_reservations.links.menu.yml +++ b/web/modules/custom/dpl_reservations/dpl_reservations.links.menu.yml @@ -1,5 +1,5 @@ dpl_reservations.list: - title: "Reservations" + title: 'Reservations' menu_name: user-profile-menu route_name: dpl_reservations.list - description: "List user reservations" + description: 'List user reservations' diff --git a/web/modules/custom/dpl_reservations/dpl_reservations.routing.yml b/web/modules/custom/dpl_reservations/dpl_reservations.routing.yml index 57a7bd85a..80c868c0a 100644 --- a/web/modules/custom/dpl_reservations/dpl_reservations.routing.yml +++ b/web/modules/custom/dpl_reservations/dpl_reservations.routing.yml @@ -1,6 +1,6 @@ dpl_reservations.list: - path: "/user/me/reservations" + path: '/user/me/reservations' defaults: _controller: '\Drupal\dpl_reservations\Controller\DplReservationsController::list' requirements: - _permission: "access content" + _permission: 'access content' diff --git a/web/modules/custom/dpl_reservations/dpl_reservations.services.yml b/web/modules/custom/dpl_reservations/dpl_reservations.services.yml index 829158c09..d981e2f62 100644 --- a/web/modules/custom/dpl_reservations/dpl_reservations.services.yml +++ b/web/modules/custom/dpl_reservations/dpl_reservations.services.yml @@ -1,4 +1,4 @@ services: dpl_reservations.settings: class: Drupal\dpl_reservations\DplReservationsSettings - arguments: ["@config.manager"] + arguments: ['@config.manager'] diff --git a/web/modules/custom/dpl_rest_base/dpl_rest_base.info.yml b/web/modules/custom/dpl_rest_base/dpl_rest_base.info.yml index 485afc698..08d6bd401 100644 --- a/web/modules/custom/dpl_rest_base/dpl_rest_base.info.yml +++ b/web/modules/custom/dpl_rest_base/dpl_rest_base.info.yml @@ -1,6 +1,6 @@ -name: "DPL REST base" +name: 'DPL REST base' type: module -description: "A base module for providing shared functionality between modules exposing REST services." +description: 'A base module for providing shared functionality between modules exposing REST services.' package: DPL core_version_requirement: ^10 dependencies: diff --git a/web/modules/custom/dpl_something_similar/dpl_something_similar.routing.yml b/web/modules/custom/dpl_something_similar/dpl_something_similar.routing.yml index 1c00cb032..feba56050 100644 --- a/web/modules/custom/dpl_something_similar/dpl_something_similar.routing.yml +++ b/web/modules/custom/dpl_something_similar/dpl_something_similar.routing.yml @@ -1,6 +1,6 @@ dpl_something_similar.list: - path: "/something-similar/{faust}" + path: '/something-similar/{faust}' defaults: _controller: '\Drupal\dpl_something_similar\Controller\DplSomethingSimilarController::list' requirements: - _permission: "access content" + _permission: 'access content' diff --git a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240404_opening_hours/content/taxonomy_term/568d85d3-41bc-4000-acae-47116d378289.yml b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240404_opening_hours/content/taxonomy_term/568d85d3-41bc-4000-acae-47116d378289.yml index 1f1c72bc7..6b268a8d4 100644 --- a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240404_opening_hours/content/taxonomy_term/568d85d3-41bc-4000-acae-47116d378289.yml +++ b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240404_opening_hours/content/taxonomy_term/568d85d3-41bc-4000-acae-47116d378289.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: taxonomy_term uuid: 568d85d3-41bc-4000-acae-47116d378289 bundle: opening_hours_categories @@ -19,14 +19,14 @@ default: - tag: meta attributes: name: title - content: "Telefontid | DPL CMS" + content: 'Telefontid | DPL CMS' - tag: link attributes: rel: canonical - href: "/taxonomy/term/18" + href: '/taxonomy/term/18' path: - - alias: "" + - alias: '' langcode: da field_opening_hours_color: - - color: "#4986E7" + - color: '#4986E7' opacity: 0.0 diff --git a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240404_opening_hours/content/taxonomy_term/72249209-22bb-4142-9fc6-350a152f264a.yml b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240404_opening_hours/content/taxonomy_term/72249209-22bb-4142-9fc6-350a152f264a.yml index 70c5f65d6..50531f619 100644 --- a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240404_opening_hours/content/taxonomy_term/72249209-22bb-4142-9fc6-350a152f264a.yml +++ b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240404_opening_hours/content/taxonomy_term/72249209-22bb-4142-9fc6-350a152f264a.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: taxonomy_term uuid: 72249209-22bb-4142-9fc6-350a152f264a bundle: opening_hours_categories @@ -19,14 +19,14 @@ default: - tag: meta attributes: name: title - content: "Borgerservice | DPL CMS" + content: 'Borgerservice | DPL CMS' - tag: link attributes: rel: canonical - href: "/taxonomy/term/19" + href: '/taxonomy/term/19' path: - - alias: "" + - alias: '' langcode: da field_opening_hours_color: - - color: "#4986E7" + - color: '#4986E7' opacity: 0.0 diff --git a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240404_opening_hours/content/taxonomy_term/9c2f0d96-88e1-497c-bf82-e18eb9d5769c.yml b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240404_opening_hours/content/taxonomy_term/9c2f0d96-88e1-497c-bf82-e18eb9d5769c.yml index f0d502b7a..af8946ac1 100644 --- a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240404_opening_hours/content/taxonomy_term/9c2f0d96-88e1-497c-bf82-e18eb9d5769c.yml +++ b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240404_opening_hours/content/taxonomy_term/9c2f0d96-88e1-497c-bf82-e18eb9d5769c.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: taxonomy_term uuid: 9c2f0d96-88e1-497c-bf82-e18eb9d5769c bundle: opening_hours_categories @@ -19,14 +19,14 @@ default: - tag: meta attributes: name: title - content: "Åbent | DPL CMS" + content: 'Åbent | DPL CMS' - tag: link attributes: rel: canonical - href: "/taxonomy/term/15" + href: '/taxonomy/term/15' path: - - alias: "" + - alias: '' langcode: da field_opening_hours_color: - - color: "#4986E7" + - color: '#4986E7' opacity: 0.0 diff --git a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240404_opening_hours/content/taxonomy_term/befe3036-a870-445f-a457-9f102154f64e.yml b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240404_opening_hours/content/taxonomy_term/befe3036-a870-445f-a457-9f102154f64e.yml index f32d5e577..d53f2ad39 100644 --- a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240404_opening_hours/content/taxonomy_term/befe3036-a870-445f-a457-9f102154f64e.yml +++ b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240404_opening_hours/content/taxonomy_term/befe3036-a870-445f-a457-9f102154f64e.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: taxonomy_term uuid: befe3036-a870-445f-a457-9f102154f64e bundle: opening_hours_categories @@ -19,14 +19,14 @@ default: - tag: meta attributes: name: title - content: "Selvbetjening | DPL CMS" + content: 'Selvbetjening | DPL CMS' - tag: link attributes: rel: canonical - href: "/taxonomy/term/16" + href: '/taxonomy/term/16' path: - - alias: "" + - alias: '' langcode: da field_opening_hours_color: - - color: "#4986E7" + - color: '#4986E7' opacity: 0.0 diff --git a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240404_opening_hours/content/taxonomy_term/d3740bd9-1bd5-4376-8a7f-eb0b89e3b7e3.yml b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240404_opening_hours/content/taxonomy_term/d3740bd9-1bd5-4376-8a7f-eb0b89e3b7e3.yml index d37632ad9..629a224be 100644 --- a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240404_opening_hours/content/taxonomy_term/d3740bd9-1bd5-4376-8a7f-eb0b89e3b7e3.yml +++ b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240404_opening_hours/content/taxonomy_term/d3740bd9-1bd5-4376-8a7f-eb0b89e3b7e3.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: taxonomy_term uuid: d3740bd9-1bd5-4376-8a7f-eb0b89e3b7e3 bundle: opening_hours_categories @@ -8,7 +8,7 @@ default: status: - value: true name: - - value: "Med betjening" + - value: 'Med betjening' weight: - value: 0 parent: @@ -19,14 +19,14 @@ default: - tag: meta attributes: name: title - content: "Med betjening | DPL CMS" + content: 'Med betjening | DPL CMS' - tag: link attributes: rel: canonical - href: "/taxonomy/term/17" + href: '/taxonomy/term/17' path: - - alias: "" + - alias: '' langcode: da field_opening_hours_color: - - color: "#4986E7" + - color: '#4986E7' opacity: 0.0 diff --git a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240404_opening_hours/dpl_static_content_20240404_opening_hours.info.yml b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240404_opening_hours/dpl_static_content_20240404_opening_hours.info.yml index f765817e3..1336c7cf1 100644 --- a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240404_opening_hours/dpl_static_content_20240404_opening_hours.info.yml +++ b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240404_opening_hours/dpl_static_content_20240404_opening_hours.info.yml @@ -1,4 +1,4 @@ -name: "DPL static content: Opening hours categories" +name: 'DPL static content: Opening hours categories' type: module description: Adds default opening hours categories package: DPL diff --git a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240418_views_aliases/content/path_alias/333d93e2-a403-4a0b-a57e-2e74e729887f.yml b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240418_views_aliases/content/path_alias/333d93e2-a403-4a0b-a57e-2e74e729887f.yml index 21de83d46..cad0f8e6c 100644 --- a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240418_views_aliases/content/path_alias/333d93e2-a403-4a0b-a57e-2e74e729887f.yml +++ b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240418_views_aliases/content/path_alias/333d93e2-a403-4a0b-a57e-2e74e729887f.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: path_alias uuid: 333d93e2-a403-4a0b-a57e-2e74e729887f default_langcode: und diff --git a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240418_views_aliases/content/path_alias/67b61873-9ccf-4b2c-b2ee-cee553381bd2.yml b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240418_views_aliases/content/path_alias/67b61873-9ccf-4b2c-b2ee-cee553381bd2.yml index 1e209cf89..1773b1dcc 100644 --- a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240418_views_aliases/content/path_alias/67b61873-9ccf-4b2c-b2ee-cee553381bd2.yml +++ b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240418_views_aliases/content/path_alias/67b61873-9ccf-4b2c-b2ee-cee553381bd2.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: path_alias uuid: 67b61873-9ccf-4b2c-b2ee-cee553381bd2 default_langcode: und diff --git a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240418_views_aliases/content/path_alias/fef6c6a4-f409-4ae8-84d5-c3497e2edf28.yml b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240418_views_aliases/content/path_alias/fef6c6a4-f409-4ae8-84d5-c3497e2edf28.yml index 3f02fe4f0..ad7610db2 100644 --- a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240418_views_aliases/content/path_alias/fef6c6a4-f409-4ae8-84d5-c3497e2edf28.yml +++ b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240418_views_aliases/content/path_alias/fef6c6a4-f409-4ae8-84d5-c3497e2edf28.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: path_alias uuid: fef6c6a4-f409-4ae8-84d5-c3497e2edf28 default_langcode: und diff --git a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240418_views_aliases/dpl_static_content_20240418_views_aliases.info.yml b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240418_views_aliases/dpl_static_content_20240418_views_aliases.info.yml index 858e0e621..cd100905f 100644 --- a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240418_views_aliases/dpl_static_content_20240418_views_aliases.info.yml +++ b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240418_views_aliases/dpl_static_content_20240418_views_aliases.info.yml @@ -1,4 +1,4 @@ -name: "DPL static content: Views aliases" +name: 'DPL static content: Views aliases' type: module description: Adds path aliases to core views pages package: DPL diff --git a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240422_contact_page/content/node/d50683cc-8011-49ba-a6ea-82e56de97b80.yml b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240422_contact_page/content/node/d50683cc-8011-49ba-a6ea-82e56de97b80.yml index 6762d7ed1..e9897ee75 100644 --- a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240422_contact_page/content/node/d50683cc-8011-49ba-a6ea-82e56de97b80.yml +++ b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240422_contact_page/content/node/d50683cc-8011-49ba-a6ea-82e56de97b80.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: node uuid: d50683cc-8011-49ba-a6ea-82e56de97b80 bundle: page @@ -27,7 +27,7 @@ default: - tag: meta attributes: name: title - content: "Kontakt | DPL CMS" + content: 'Kontakt | DPL CMS' path: - alias: /kontakt langcode: und @@ -39,7 +39,7 @@ default: field_paragraphs: - entity: _meta: - version: "1.0" + version: '1.0' entity_type: paragraph uuid: 325c097a-7abc-47f9-ba77-f3e5a30a0fb2 bundle: webform @@ -55,9 +55,9 @@ default: - value: true field_webform: - target_id: contact - default_data: "" + default_data: '' status: open - open: "" - close: "" + open: '' + close: '' field_subtitle: - - value: "Kontakt dit lokale bibliotek ved at udfylde formularen nedenfor." + - value: 'Kontakt dit lokale bibliotek ved at udfylde formularen nedenfor.' diff --git a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240422_contact_page/content/taxonomy_term/6d9e3138-f948-4d8b-aba1-3ca46a05175e.yml b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240422_contact_page/content/taxonomy_term/6d9e3138-f948-4d8b-aba1-3ca46a05175e.yml index 71ad82a36..38c1697db 100644 --- a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240422_contact_page/content/taxonomy_term/6d9e3138-f948-4d8b-aba1-3ca46a05175e.yml +++ b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240422_contact_page/content/taxonomy_term/6d9e3138-f948-4d8b-aba1-3ca46a05175e.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: taxonomy_term uuid: 6d9e3138-f948-4d8b-aba1-3ca46a05175e bundle: webform_email_categories @@ -8,7 +8,7 @@ default: status: - value: true name: - - value: "Spørgsmål til biblioteket" + - value: 'Spørgsmål til biblioteket' weight: - value: 0 parent: @@ -19,13 +19,13 @@ default: - tag: meta attributes: name: title - content: "Spørgsmål til biblioteket | DPL CMS" + content: 'Spørgsmål til biblioteket | DPL CMS' - tag: link attributes: rel: canonical - href: "/taxonomy/term/22" + href: '/taxonomy/term/22' path: - - alias: "" + - alias: '' langcode: da field_email: - value: questions@test.dk diff --git a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240422_contact_page/content/taxonomy_term/b42cf13a-4047-4a36-b451-f632472c8035.yml b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240422_contact_page/content/taxonomy_term/b42cf13a-4047-4a36-b451-f632472c8035.yml index 35c3e0991..b1bbc96ab 100644 --- a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240422_contact_page/content/taxonomy_term/b42cf13a-4047-4a36-b451-f632472c8035.yml +++ b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240422_contact_page/content/taxonomy_term/b42cf13a-4047-4a36-b451-f632472c8035.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: taxonomy_term uuid: b42cf13a-4047-4a36-b451-f632472c8035 bundle: webform_email_categories @@ -8,7 +8,7 @@ default: status: - value: true name: - - value: "Gebyrer og erstatninger" + - value: 'Gebyrer og erstatninger' weight: - value: 0 parent: @@ -19,13 +19,13 @@ default: - tag: meta attributes: name: title - content: "Gebyrer og erstatninger | DPL CMS" + content: 'Gebyrer og erstatninger | DPL CMS' - tag: link attributes: rel: canonical - href: "/taxonomy/term/25" + href: '/taxonomy/term/25' path: - - alias: "" + - alias: '' langcode: da field_email: - value: fees@test.dk diff --git a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240422_contact_page/content/taxonomy_term/b97946d7-f415-45e7-bd48-131d3675fbd0.yml b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240422_contact_page/content/taxonomy_term/b97946d7-f415-45e7-bd48-131d3675fbd0.yml index 6ff660b50..07fdfecf3 100644 --- a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240422_contact_page/content/taxonomy_term/b97946d7-f415-45e7-bd48-131d3675fbd0.yml +++ b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240422_contact_page/content/taxonomy_term/b97946d7-f415-45e7-bd48-131d3675fbd0.yml @@ -1,5 +1,5 @@ _meta: - version: "1.0" + version: '1.0' entity_type: taxonomy_term uuid: b97946d7-f415-45e7-bd48-131d3675fbd0 bundle: webform_email_categories @@ -8,7 +8,7 @@ default: status: - value: true name: - - value: "Hjemmeside og app" + - value: 'Hjemmeside og app' weight: - value: 0 parent: @@ -19,13 +19,13 @@ default: - tag: meta attributes: name: title - content: "Hjemmeside og app | DPL CMS" + content: 'Hjemmeside og app | DPL CMS' - tag: link attributes: rel: canonical - href: "/taxonomy/term/24" + href: '/taxonomy/term/24' path: - - alias: "" + - alias: '' langcode: da field_email: - value: web@test.dk diff --git a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240422_contact_page/content/taxonomy_term/bb4917fe-2197-4d53-b3e8-4a04ce074c29.yml b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240422_contact_page/content/taxonomy_term/bb4917fe-2197-4d53-b3e8-4a04ce074c29.yml index 83aa9fc18..b2586aff7 100644 --- a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240422_contact_page/content/taxonomy_term/bb4917fe-2197-4d53-b3e8-4a04ce074c29.yml +++ b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240422_contact_page/content/taxonomy_term/bb4917fe-2197-4d53-b3e8-4a04ce074c29.yml @@ -8,7 +8,7 @@ default: status: - value: true name: - - value: "Forslag til indkøb" + - value: 'Forslag til indkøb' weight: - value: 0 parent: @@ -19,13 +19,13 @@ default: - tag: meta attributes: name: title - content: "Forslag til indkøb | DPL CMS" + content: 'Forslag til indkøb | DPL CMS' - tag: link attributes: rel: canonical - href: "/taxonomy/term/23" + href: '/taxonomy/term/23' path: - - alias: "" + - alias: '' langcode: da field_email: - value: suggestions@test.dk diff --git a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240422_contact_page/dpl_static_content_20240422_contact_page.info.yml b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240422_contact_page/dpl_static_content_20240422_contact_page.info.yml index 09a045dd6..e80a800a0 100644 --- a/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240422_contact_page/dpl_static_content_20240422_contact_page.info.yml +++ b/web/modules/custom/dpl_static_content/modules/dpl_static_content_20240422_contact_page/dpl_static_content_20240422_contact_page.info.yml @@ -1,4 +1,4 @@ -name: "DPL static content: Contact page" +name: 'DPL static content: Contact page' type: module description: Adds default contact page and contact webform categories package: DPL diff --git a/web/modules/custom/dpl_unilogin/dpl_unilogin.info.yml b/web/modules/custom/dpl_unilogin/dpl_unilogin.info.yml index 0e86cdd4c..30b26f9d9 100644 --- a/web/modules/custom/dpl_unilogin/dpl_unilogin.info.yml +++ b/web/modules/custom/dpl_unilogin/dpl_unilogin.info.yml @@ -1,5 +1,5 @@ -name: "DPL UniLogin" +name: 'DPL UniLogin' type: module -description: "Module containing unilogin configuration" +description: 'Module containing unilogin configuration' package: DPL core_version_requirement: ^10 || ^11 diff --git a/web/modules/custom/dpl_unilogin/dpl_unilogin.links.menu.yml b/web/modules/custom/dpl_unilogin/dpl_unilogin.links.menu.yml index 82dacdaa8..07b3a1083 100644 --- a/web/modules/custom/dpl_unilogin/dpl_unilogin.links.menu.yml +++ b/web/modules/custom/dpl_unilogin/dpl_unilogin.links.menu.yml @@ -1,5 +1,5 @@ dpl_unilogin.settings_form: - title: "UniLogin configuration" + title: 'UniLogin configuration' route_name: dpl_unilogin.settings - description: "Change UniLogin configuration" + description: 'Change UniLogin configuration' parent: system.admin_config_services diff --git a/web/modules/custom/dpl_unilogin/dpl_unilogin.routing.yml b/web/modules/custom/dpl_unilogin/dpl_unilogin.routing.yml index ae74008b4..8435e5041 100644 --- a/web/modules/custom/dpl_unilogin/dpl_unilogin.routing.yml +++ b/web/modules/custom/dpl_unilogin/dpl_unilogin.routing.yml @@ -1,9 +1,9 @@ dpl_unilogin.settings: - path: "/admin/config/services/unilogin-configuration" + path: '/admin/config/services/unilogin-configuration' defaults: _form: '\Drupal\dpl_unilogin\Form\UniloginConfigurationForm' - _title: "Unilogin configuration" + _title: 'Unilogin configuration' requirements: - _permission: "administer site configuration" + _permission: 'administer site configuration' options: _admin_route: TRUE diff --git a/web/modules/custom/dpl_unilogin/dpl_unilogin.services.yml b/web/modules/custom/dpl_unilogin/dpl_unilogin.services.yml index 89ab38091..9faf99071 100644 --- a/web/modules/custom/dpl_unilogin/dpl_unilogin.services.yml +++ b/web/modules/custom/dpl_unilogin/dpl_unilogin.services.yml @@ -1,4 +1,4 @@ services: dpl_unilogin.settings: class: Drupal\dpl_unilogin\UniloginConfiguration - arguments: ["@config.manager"] + arguments: ['@config.manager'] diff --git a/web/modules/custom/dpl_update/dpl_update.info.yml b/web/modules/custom/dpl_update/dpl_update.info.yml index a45b6afbd..ccd34d3ce 100644 --- a/web/modules/custom/dpl_update/dpl_update.info.yml +++ b/web/modules/custom/dpl_update/dpl_update.info.yml @@ -1,6 +1,6 @@ -name: "DPL Update" +name: 'DPL Update' type: module -description: "Generalized update logic, such as enabling modules." +description: 'Generalized update logic, such as enabling modules.' package: DPL core_version_requirement: ^10 dependencies: diff --git a/web/modules/custom/dpl_url_proxy/dpl_url_proxy.info.yml b/web/modules/custom/dpl_url_proxy/dpl_url_proxy.info.yml index b3d2242f2..dccdf5874 100644 --- a/web/modules/custom/dpl_url_proxy/dpl_url_proxy.info.yml +++ b/web/modules/custom/dpl_url_proxy/dpl_url_proxy.info.yml @@ -1,5 +1,5 @@ -name: "DPL Url Proxy" +name: 'DPL Url Proxy' type: module -description: "Module for generating specially formatted external urls" -package: "DPL" +description: 'Module for generating specially formatted external urls' +package: 'DPL' core_version_requirement: ^9 || ^10 diff --git a/web/modules/custom/dpl_url_proxy/dpl_url_proxy.links.menu.yml b/web/modules/custom/dpl_url_proxy/dpl_url_proxy.links.menu.yml index a5f32a0c0..a538548ad 100644 --- a/web/modules/custom/dpl_url_proxy/dpl_url_proxy.links.menu.yml +++ b/web/modules/custom/dpl_url_proxy/dpl_url_proxy.links.menu.yml @@ -1,5 +1,5 @@ dpl_url_proxy.admin_settings: - title: "Url proxy settings" - description: "Configure the host names and replacement patterns for proxy urls." + title: 'Url proxy settings' + description: 'Configure the host names and replacement patterns for proxy urls.' route_name: dpl_url_proxy.configure parent: dpl_library_agency.settings diff --git a/web/modules/custom/dpl_url_proxy/dpl_url_proxy.permissions.yml b/web/modules/custom/dpl_url_proxy/dpl_url_proxy.permissions.yml index 35ef86ac5..3c4f2c28f 100644 --- a/web/modules/custom/dpl_url_proxy/dpl_url_proxy.permissions.yml +++ b/web/modules/custom/dpl_url_proxy/dpl_url_proxy.permissions.yml @@ -1,3 +1,3 @@ administer url proxy configuration: - title: "Administer url proxy configuration" - description: "Access for administering of the url proxy configuration." + title: 'Administer url proxy configuration' + description: 'Access for administering of the url proxy configuration.' diff --git a/web/modules/custom/dpl_url_proxy/dpl_url_proxy.routing.yml b/web/modules/custom/dpl_url_proxy/dpl_url_proxy.routing.yml index 730db1d0d..16ec39906 100644 --- a/web/modules/custom/dpl_url_proxy/dpl_url_proxy.routing.yml +++ b/web/modules/custom/dpl_url_proxy/dpl_url_proxy.routing.yml @@ -1,9 +1,9 @@ dpl_url_proxy.configure: - path: "admin/config/services/dpl-url-proxy" + path: 'admin/config/services/dpl-url-proxy' defaults: _form: '\Drupal\dpl_url_proxy\Form\ProxyUrlConfigurationForm' - _title: "Configure proxy urls" + _title: 'Configure proxy urls' requirements: - _permission: "administer url proxy configuration" + _permission: 'administer url proxy configuration' options: _admin_route: TRUE diff --git a/web/modules/custom/dpl_webform/dpl_webform.info.yml b/web/modules/custom/dpl_webform/dpl_webform.info.yml index f97d1c144..0fba97016 100644 --- a/web/modules/custom/dpl_webform/dpl_webform.info.yml +++ b/web/modules/custom/dpl_webform/dpl_webform.info.yml @@ -1,5 +1,5 @@ -name: "DPL Webform" -description: "Handles custom webform configuration" +name: 'DPL Webform' +description: 'Handles custom webform configuration' package: DPL type: module diff --git a/web/modules/custom/dpl_webform/dpl_webform.permissions.yml b/web/modules/custom/dpl_webform/dpl_webform.permissions.yml index d949c5463..30d044f6e 100644 --- a/web/modules/custom/dpl_webform/dpl_webform.permissions.yml +++ b/web/modules/custom/dpl_webform/dpl_webform.permissions.yml @@ -1,30 +1,30 @@ administer advanced webform access settings: - title: "Administer advanced webform access settings" - description: "Administer advanced webform access settings for webforms." + title: 'Administer advanced webform access settings' + description: 'Administer advanced webform access settings for webforms.' restrict access: true administer advanced webform confirmation settings: - title: "Administer advanced webform confirmation settings" - description: "Administer advanced webform confirmation settings for webforms." + title: 'Administer advanced webform confirmation settings' + description: 'Administer advanced webform confirmation settings for webforms.' administer advanced webform element settings: - title: "Administer advanced webform element settings" - description: "Administer advanced webform element settings for webforms." + title: 'Administer advanced webform element settings' + description: 'Administer advanced webform element settings for webforms.' administer advanced webform form settings: - title: "Administer advanced webform form settings" - description: "Administer advanced webform form settings for webforms." + title: 'Administer advanced webform form settings' + description: 'Administer advanced webform form settings for webforms.' restrict access: true administer advanced webform general settings: - title: "Administer advanced webform general settings" - description: "Administer advanced webform general settings for webforms." + title: 'Administer advanced webform general settings' + description: 'Administer advanced webform general settings for webforms.' administer advanced webform handler settings: - title: "Administer advanced webform handler settings" - description: "Administer advanced webform handler settings for webforms." + title: 'Administer advanced webform handler settings' + description: 'Administer advanced webform handler settings for webforms.' administer advanced webform submission settings: - title: "Administer advanced webform submission settings" - description: "Administer advanced webform submission settings for webforms." + title: 'Administer advanced webform submission settings' + description: 'Administer advanced webform submission settings for webforms.' restrict access: true diff --git a/web/modules/custom/drupal_typed/drupal_typed.info.yml b/web/modules/custom/drupal_typed/drupal_typed.info.yml index 3d1754910..17540a448 100644 --- a/web/modules/custom/drupal_typed/drupal_typed.info.yml +++ b/web/modules/custom/drupal_typed/drupal_typed.info.yml @@ -1,5 +1,5 @@ -name: "DrupalTyped" +name: 'DrupalTyped' type: module -description: "Better, faster, stronger types" +description: 'Better, faster, stronger types' package: Development core_version_requirement: ^10 diff --git a/web/modules/custom/media_twentythree/media_twentythree.info.yml b/web/modules/custom/media_twentythree/media_twentythree.info.yml index b091a7ffc..fdcfb9283 100644 --- a/web/modules/custom/media_twentythree/media_twentythree.info.yml +++ b/web/modules/custom/media_twentythree/media_twentythree.info.yml @@ -1,6 +1,6 @@ -name: "TwentyThree" +name: 'TwentyThree' type: module -description: "Integrate the TwentyThree video platform into the Media module with oEmbed support" +description: 'Integrate the TwentyThree video platform into the Media module with oEmbed support' package: Media core_version_requirement: ^10 diff --git a/web/modules/custom/media_twentythree/media_twentythree.services.yml b/web/modules/custom/media_twentythree/media_twentythree.services.yml index 67ac4db29..766bf98c3 100644 --- a/web/modules/custom/media_twentythree/media_twentythree.services.yml +++ b/web/modules/custom/media_twentythree/media_twentythree.services.yml @@ -3,7 +3,7 @@ services: decorates: media.oembed.provider_repository class: Drupal\media_twentythree\ProviderRepositoryDecorator public: false - arguments: ["@media_twentythree.oembed.provider_repository.inner"] + arguments: ['@media_twentythree.oembed.provider_repository.inner'] media_twentythree.oembed.url_resolver: class: Drupal\media_twentythree\DiscoveryUrlResolver parent: media.oembed.url_resolver diff --git a/web/profiles/dpl_cms/dpl_cms.info.yml b/web/profiles/dpl_cms/dpl_cms.info.yml index 1147159bb..55c6b8aeb 100644 --- a/web/profiles/dpl_cms/dpl_cms.info.yml +++ b/web/profiles/dpl_cms/dpl_cms.info.yml @@ -1,6 +1,6 @@ name: DPL CMS type: profile -description: "Web platform for the Danish Public Libraries" +description: 'Web platform for the Danish Public Libraries' core_version_requirement: ^9 || ^10 distribution: @@ -22,5 +22,5 @@ distribution: # Note that this will not set any theme as the default theme. #themes: -"interface translation project": dpl_cms -"interface translation server pattern": https://danskernesdigitalebibliotek.github.io/dpl-cms/translations/%language.po +'interface translation project': dpl_cms +'interface translation server pattern': https://danskernesdigitalebibliotek.github.io/dpl-cms/translations/%language.po diff --git a/web/themes/custom/novel/novel.info.yml b/web/themes/custom/novel/novel.info.yml index d18fb33a7..a38906c1a 100644 --- a/web/themes/custom/novel/novel.info.yml +++ b/web/themes/custom/novel/novel.info.yml @@ -1,7 +1,7 @@ name: Novel type: theme base theme: stable9 -description: "Custom theme for the Danish Public Libraries" +description: 'Custom theme for the Danish Public Libraries' core_version_requirement: ^9 || ^10 # We want to add dpl_react as a module dependency @@ -19,9 +19,9 @@ libraries: - novel/base regions: - header: "Header" - content: "Content" - footer: "Footer" + header: 'Header' + content: 'Content' + footer: 'Footer' ckeditor5-stylesheets: - assets/dpl-design-system/css/wysiwyg.css diff --git a/web/themes/custom/novel/novel.libraries.yml b/web/themes/custom/novel/novel.libraries.yml index 9eb2ee825..c2717d89a 100644 --- a/web/themes/custom/novel/novel.libraries.yml +++ b/web/themes/custom/novel/novel.libraries.yml @@ -23,17 +23,17 @@ slider: - novel/swiper swiper: - remote: "https://github.com/nolimits4web/swiper.git" + remote: 'https://github.com/nolimits4web/swiper.git' license: name: MIT url: https://github.com/nolimits4web/swiper/blob/master/LICENSE gpl-compatible: true js: - "https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js": + 'https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js': { type: external } css: theme: - "https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css": + 'https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css': { type: external } footer-accordions: js: