├── web ├── modules │ ├── .gitkeep │ └── custom │ │ ├── migrate_posts │ │ ├── migrate_posts.features.yml │ │ ├── config │ │ │ └── install │ │ │ │ ├── node.type.post.yml │ │ │ │ ├── field.field.node.post.body.yml │ │ │ │ ├── core.base_field_override.node.post.promote.yml │ │ │ │ ├── core.entity_view_display.node.post.teaser.yml │ │ │ │ ├── field.field.node.post.comment.yml │ │ │ │ ├── core.entity_view_display.node.post.default.yml │ │ │ │ └── core.entity_form_display.node.post.default.yml │ │ └── migrate_posts.info.yml │ │ ├── migrate_json_hackday │ │ ├── migrate_json_hackday.info.yml │ │ ├── src │ │ │ └── Plugin │ │ │ │ └── migrate │ │ │ │ └── process │ │ │ │ └── Truncate.php │ │ └── config │ │ │ └── install │ │ │ ├── migrate_plus.migration.post.yml │ │ │ └── migrate_plus.migration.comment.yml │ │ └── migrate_menu │ │ ├── migrate_menu.info.yml │ │ ├── migrate_menu.install │ │ ├── config │ │ └── install │ │ │ ├── migrate_plus.migration_group.liip.yml │ │ │ ├── migrate_plus.migration.page_node.yml │ │ │ └── migrate_plus.migration.menu_item.yml │ │ ├── src │ │ └── Plugin │ │ │ └── migrate │ │ │ ├── process │ │ │ └── generatePath.php │ │ │ └── source │ │ │ ├── PageNode.php │ │ │ └── MenuItem.php │ │ └── data │ │ └── navigation.csv ├── profiles │ └── .gitkeep ├── themes │ └── .gitkeep ├── .eslintrc ├── sites │ ├── default │ │ ├── config_migrate │ │ │ └── sync │ │ │ │ ├── seven.settings.yml │ │ │ │ ├── system.image.yml │ │ │ │ ├── dblog.settings.yml │ │ │ │ ├── field.settings.yml │ │ │ │ ├── node.settings.yml │ │ │ │ ├── system.image.gd.yml │ │ │ │ ├── system.logging.yml │ │ │ │ ├── automated_cron.settings.yml │ │ │ │ ├── field_ui.settings.yml │ │ │ │ ├── system.authorize.yml │ │ │ │ ├── system.theme.yml │ │ │ │ ├── text.settings.yml │ │ │ │ ├── menu_ui.settings.yml │ │ │ │ ├── system.mail.yml │ │ │ │ ├── config_devel.settings.yml │ │ │ │ ├── features.settings.yml │ │ │ │ ├── system.diff.yml │ │ │ │ ├── filter.settings.yml │ │ │ │ ├── system.cron.yml │ │ │ │ ├── taxonomy.settings.yml │ │ │ │ ├── user.flood.yml │ │ │ │ ├── system.rss.yml │ │ │ │ ├── contact.settings.yml │ │ │ │ ├── file.settings.yml │ │ │ │ ├── image.settings.yml │ │ │ │ ├── system.file.yml │ │ │ │ ├── system.maintenance.yml │ │ │ │ ├── shortcut.set.default.yml │ │ │ │ ├── system.date.yml │ │ │ │ ├── core.menu.static_menu_link_overrides.yml │ │ │ │ ├── core.date_format.html_date.yml │ │ │ │ ├── core.date_format.html_month.yml │ │ │ │ ├── core.date_format.html_week.yml │ │ │ │ ├── core.date_format.html_year.yml │ │ │ │ ├── core.date_format.html_time.yml │ │ │ │ ├── core.date_format.long.yml │ │ │ │ ├── core.date_format.short.yml │ │ │ │ ├── migrate_plus.migration_group.liip.yml │ │ │ │ ├── system.menu.footer.yml │ │ │ │ ├── system.menu.main.yml │ │ │ │ ├── core.date_format.medium.yml │ │ │ │ ├── system.menu.admin.yml │ │ │ │ ├── contact.form.personal.yml │ │ │ │ ├── core.date_format.fallback.yml │ │ │ │ ├── system.menu.tools.yml │ │ │ │ ├── core.date_format.html_datetime.yml │ │ │ │ ├── core.date_format.html_yearless_date.yml │ │ │ │ ├── update.settings.yml │ │ │ │ ├── user.role.administrator.yml │ │ │ │ ├── core.entity_view_mode.node.rss.yml │ │ │ │ ├── block_content.type.basic.yml │ │ │ │ ├── contact.form.feedback.yml │ │ │ │ ├── core.entity_view_mode.node.teaser.yml │ │ │ │ ├── core.entity_view_mode.user.compact.yml │ │ │ │ ├── system.menu.account.yml │ │ │ │ ├── comment.type.comment.yml │ │ │ │ ├── core.entity_form_mode.user.register.yml │ │ │ │ ├── core.entity_view_mode.node.full.yml │ │ │ │ ├── core.entity_view_mode.user.full.yml │ │ │ │ ├── core.entity_view_mode.comment.full.yml │ │ │ │ ├── core.entity_view_mode.node.search_index.yml │ │ │ │ ├── search.page.user_search.yml │ │ │ │ ├── taxonomy.vocabulary.tags.yml │ │ │ │ ├── core.entity_view_mode.block_content.full.yml │ │ │ │ ├── system.action.node_save_action.yml │ │ │ │ ├── core.entity_view_mode.node.search_result.yml │ │ │ │ ├── core.entity_view_mode.taxonomy_term.full.yml │ │ │ │ ├── system.action.node_delete_action.yml │ │ │ │ ├── search.page.node_search.yml │ │ │ │ ├── system.action.node_publish_action.yml │ │ │ │ ├── system.site.yml │ │ │ │ ├── system.action.comment_save_action.yml │ │ │ │ ├── system.action.node_unpublish_action.yml │ │ │ │ ├── system.action.comment_publish_action.yml │ │ │ │ ├── system.action.node_make_sticky_action.yml │ │ │ │ ├── system.action.node_promote_action.yml │ │ │ │ ├── system.action.node_unpromote_action.yml │ │ │ │ ├── system.action.user_block_user_action.yml │ │ │ │ ├── system.action.comment_unpublish_action.yml │ │ │ │ ├── system.action.node_make_unsticky_action.yml │ │ │ │ ├── system.action.user_unblock_user_action.yml │ │ │ │ ├── system.action.user_cancel_user_action.yml │ │ │ │ ├── migrate_plus.migration_group.default.yml │ │ │ │ ├── rdf.mapping.user.user.yml │ │ │ │ ├── system.theme.global.yml │ │ │ │ ├── system.action.user_add_role_action.administrator.yml │ │ │ │ ├── node.type.page.yml │ │ │ │ ├── node.type.article.yml │ │ │ │ ├── system.action.user_remove_role_action.administrator.yml │ │ │ │ ├── search.settings.yml │ │ │ │ ├── page_manager.page.node_view.yml │ │ │ │ ├── user.role.anonymous.yml │ │ │ │ ├── node.type.post.yml │ │ │ │ ├── image.style.large.yml │ │ │ │ ├── image.style.medium.yml │ │ │ │ ├── image.style.thumbnail.yml │ │ │ │ ├── block.block.seven_help.yml │ │ │ │ ├── block.block.bartik_help.yml │ │ │ │ ├── block.block.seven_page_title.yml │ │ │ │ ├── block.block.bartik_page_title.yml │ │ │ │ ├── field.storage.node.body.yml │ │ │ │ ├── block.block.bartik_local_actions.yml │ │ │ │ ├── block.block.seven_local_actions.yml │ │ │ │ ├── block.block.seven_login.yml │ │ │ │ ├── block.block.adminimal_theme_help.yml │ │ │ │ ├── block.block.bartik_search.yml │ │ │ │ ├── block.block.seven_content.yml │ │ │ │ ├── block.block.adminimal_theme_page_title.yml │ │ │ │ ├── block.block.bartik_content.yml │ │ │ │ ├── field.storage.comment.comment_body.yml │ │ │ │ ├── block.block.bartik_local_tasks.yml │ │ │ │ ├── field.storage.node.comment.yml │ │ │ │ ├── block.block.bartik_messages.yml │ │ │ │ ├── block.block.seven_breadcrumbs.yml │ │ │ │ ├── block.block.seven_messages.yml │ │ │ │ ├── field.storage.block_content.body.yml │ │ │ │ ├── user.role.authenticated.yml │ │ │ │ ├── block.block.bartik_breadcrumbs.yml │ │ │ │ ├── block.block.mainnavigation.yml │ │ │ │ ├── block.block.bartik_powered.yml │ │ │ │ ├── rdf.mapping.taxonomy_term.tags.yml │ │ │ │ ├── block.block.adminimal_theme_local_actions.yml │ │ │ │ ├── block.block.adminimal_theme_login.yml │ │ │ │ ├── block.block.seven_primary_local_tasks.yml │ │ │ │ ├── field.storage.node.field_tags.yml │ │ │ │ ├── user.settings.yml │ │ │ │ ├── block.block.adminimal_theme_content.yml │ │ │ │ ├── block.block.seven_secondary_local_tasks.yml │ │ │ │ ├── block.block.adminimal_theme_breadcrumbs.yml │ │ │ │ ├── block.block.adminimal_theme_messages.yml │ │ │ │ ├── block.block.adminimal_theme_primary_local_tasks.yml │ │ │ │ ├── field.field.node.page.body.yml │ │ │ │ ├── field.field.node.post.body.yml │ │ │ │ ├── block.block.adminimal_theme_secondary_local_tasks.yml │ │ │ │ ├── core.base_field_override.node.page.promote.yml │ │ │ │ ├── core.base_field_override.node.post.promote.yml │ │ │ │ ├── field.field.node.article.body.yml │ │ │ │ ├── system.performance.yml │ │ │ │ ├── block.block.bartik_tools.yml │ │ │ │ ├── block.block.bartik_branding.yml │ │ │ │ ├── block.block.bartik_footer.yml │ │ │ │ ├── block.block.bartik_main_menu.yml │ │ │ │ ├── field.field.comment.comment.comment_body.yml │ │ │ │ ├── core.entity_view_display.block_content.basic.default.yml │ │ │ │ ├── core.entity_view_display.node.page.default.yml │ │ │ │ ├── block.block.bartik_account_menu.yml │ │ │ │ ├── field.field.block_content.basic.body.yml │ │ │ │ ├── core.entity_view_display.comment.comment.default.yml │ │ │ │ ├── core.entity_view_display.node.page.teaser.yml │ │ │ │ ├── core.entity_view_display.user.user.default.yml │ │ │ │ ├── filter.format.plain_text.yml │ │ │ │ ├── core.entity_view_display.node.article.rss.yml │ │ │ │ ├── core.entity_view_display.user.user.compact.yml │ │ │ │ ├── core.entity_view_display.node.post.teaser.yml │ │ │ │ ├── .htaccess │ │ │ │ ├── migrate_plus.migration.post.yml │ │ │ │ ├── field.storage.node.field_image.yml │ │ │ │ ├── field.storage.user.user_picture.yml │ │ │ │ ├── core.entity_form_display.user.user.default.yml │ │ │ │ ├── core.entity_form_display.comment.comment.default.yml │ │ │ │ ├── field.field.node.post.comment.yml │ │ │ │ ├── core.entity_form_display.block_content.basic.default.yml │ │ │ │ ├── core.entity_view_display.node.post.default.yml │ │ │ │ ├── field.field.node.article.comment.yml │ │ │ │ ├── field.field.node.article.field_tags.yml │ │ │ │ ├── migrate_plus.migration.page_node.yml │ │ │ │ ├── filter.format.full_html.yml │ │ │ │ ├── filter.format.restricted_html.yml │ │ │ │ ├── rdf.mapping.comment.comment.yml │ │ │ │ ├── views.settings.yml │ │ │ │ ├── field.field.node.article.field_image.yml │ │ │ │ ├── field.field.user.user.user_picture.yml │ │ │ │ ├── migrate_plus.migration.comment.yml │ │ │ │ ├── rdf.mapping.node.page.yml │ │ │ │ ├── editor.editor.basic_html.yml │ │ │ │ ├── core.extension.yml │ │ │ │ ├── core.entity_view_display.node.article.teaser.yml │ │ │ │ ├── migrate_plus.migration.menu_item.yml │ │ │ │ ├── filter.format.basic_html.yml │ │ │ │ ├── rdf.mapping.node.article.yml │ │ │ │ ├── core.entity_view_display.node.article.default.yml │ │ │ │ ├── editor.editor.full_html.yml │ │ │ │ ├── core.entity_form_display.node.page.default.yml │ │ │ │ ├── core.entity_form_display.node.post.default.yml │ │ │ │ ├── core.entity_form_display.node.article.default.yml │ │ │ │ ├── features.bundle.default.yml │ │ │ │ ├── tour.tour.views-ui.yml │ │ │ │ ├── user.mail.yml │ │ │ │ ├── views.view.who_s_new.yml │ │ │ │ └── views.view.who_s_online.yml │ │ ├── settings.local.php │ │ ├── services.yml │ │ └── default.services.yml │ ├── development.services.yml │ ├── example.sites.php │ └── example.settings.local.php ├── .eslintignore ├── php.exe.stackdump ├── .editorconfig ├── autoload.php ├── index.php ├── update.php ├── .csslintrc ├── robots.txt ├── .gitattributes └── web.config ├── drush └── README.md ├── .gitignore ├── phpunit.xml.dist ├── .travis.yml ├── README.md ├── scripts └── composer │ └── ScriptHandler.php └── composer.json /web/modules/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/profiles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/themes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./core/.eslintrc" 3 | } 4 | -------------------------------------------------------------------------------- /web/modules/custom/migrate_posts/migrate_posts.features.yml: -------------------------------------------------------------------------------- 1 | required: true 2 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/seven.settings.yml: -------------------------------------------------------------------------------- 1 | third_party_settings: 2 | shortcut: 3 | module_link: true 4 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.image.yml: -------------------------------------------------------------------------------- 1 | toolkit: gd 2 | _core: 3 | default_config_hash: durWHaKeBaq4d9Wpi4RqwADj1OufDepcnJuhVLmKN24 4 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/dblog.settings.yml: -------------------------------------------------------------------------------- 1 | row_limit: 1000 2 | _core: 3 | default_config_hash: e883aGsrt1wFrsydlYU584PZONCSfRy0DtkZ9KzHb58 4 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/field.settings.yml: -------------------------------------------------------------------------------- 1 | purge_batch_size: 50 2 | _core: 3 | default_config_hash: nJk0TAQBzlNo52ehiHI7bIEPLGi0BYqZvPdEn7Chfu0 4 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/node.settings.yml: -------------------------------------------------------------------------------- 1 | use_admin_theme: true 2 | _core: 3 | default_config_hash: 2OMXCScXUOLSYID9-phjO4q36nnnaMWNUlDxEqZzG1U 4 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.image.gd.yml: -------------------------------------------------------------------------------- 1 | jpeg_quality: 75 2 | _core: 3 | default_config_hash: eNXaHfkJJUThHeF0nvkoXyPLRrKYGxgHRjORvT4F5rQ 4 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.logging.yml: -------------------------------------------------------------------------------- 1 | error_level: hide 2 | _core: 3 | default_config_hash: u3-njszl92FaxjrCMiq0yDcjAfcdx72w1zT1O9dx6aA 4 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/automated_cron.settings.yml: -------------------------------------------------------------------------------- 1 | interval: 10800 2 | _core: 3 | default_config_hash: fUksROt4FfkAU9BV4hV2XvhTBSS2nTNrZS4U7S-tKrs 4 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/field_ui.settings.yml: -------------------------------------------------------------------------------- 1 | field_prefix: field_ 2 | _core: 3 | default_config_hash: Q1nMi90W6YQxKzZAgJQw7Ag9U4JrsEUwkomF0lhvbIM 4 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.authorize.yml: -------------------------------------------------------------------------------- 1 | filetransfer_default: null 2 | _core: 3 | default_config_hash: z63ds8M4zPrylEgFRkRcOlfcsXWwfITzjD4cj1kRdfg 4 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.theme.yml: -------------------------------------------------------------------------------- 1 | admin: seven 2 | default: bartik 3 | _core: 4 | default_config_hash: fOjer9hADYYnbCJVZMFZIIM1azTFWyg84ZkFDHfAbUg 5 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/text.settings.yml: -------------------------------------------------------------------------------- 1 | default_summary_length: 600 2 | _core: 3 | default_config_hash: Bkewb77RBOK3_aXMPsp8p87gbc03NvmC5gBLzPl7hVA 4 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/menu_ui.settings.yml: -------------------------------------------------------------------------------- 1 | override_parent_selector: false 2 | _core: 3 | default_config_hash: SqMarzIjxC3F8dZo9FEOxfqDKD_sdW1tbcFTV1BA2zU 4 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.mail.yml: -------------------------------------------------------------------------------- 1 | interface: 2 | default: php_mail 3 | _core: 4 | default_config_hash: rYgt7uhPafP2ngaN_ZUPFuyI4KdE0zU868zLNSlzKoE 5 | -------------------------------------------------------------------------------- /drush/README.md: -------------------------------------------------------------------------------- 1 | This directory contains commands, configuration and site aliases for Drush. See http://packages.drush.org/ for a directory of Drush commands installable via Composer. 2 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/config_devel.settings.yml: -------------------------------------------------------------------------------- 1 | auto_import: { } 2 | auto_export: { } 3 | _core: 4 | default_config_hash: W4OGMJ9g0nIliU6O4quijGqNLQuWFixbxzi1Fytx6lk 5 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/features.settings.yml: -------------------------------------------------------------------------------- 1 | export: 2 | folder: custom 3 | langcode: en 4 | _core: 5 | default_config_hash: YS8SFNy6Qff2UEsQ5zXWEj-ABeRS-jCgcHJrXHJhtJ0 6 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.diff.yml: -------------------------------------------------------------------------------- 1 | context: 2 | lines_leading: 2 3 | lines_trailing: 2 4 | _core: 5 | default_config_hash: 1WanmaEhxW_vM8_5Ktsdntj8MaO9UBHXg0lN603PsWM 6 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/filter.settings.yml: -------------------------------------------------------------------------------- 1 | fallback_format: plain_text 2 | always_show_fallback_choice: false 3 | _core: 4 | default_config_hash: FiPjM3WdB__ruFA7B6TLwni_UcZbmek5G4b2dxQItxA 5 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.cron.yml: -------------------------------------------------------------------------------- 1 | threshold: 2 | requirements_warning: 172800 3 | requirements_error: 1209600 4 | _core: 5 | default_config_hash: 05U0n1_8zHYzxEFSWjyHCWuJyhdez2a6Z_aTIXin04E 6 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/taxonomy.settings.yml: -------------------------------------------------------------------------------- 1 | maintain_index_table: true 2 | override_selector: false 3 | terms_per_page_admin: 100 4 | _core: 5 | default_config_hash: zKpaWT6cJc1tVQQaTqatGELaCqU_oyRym6zTl27Yias 6 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/user.flood.yml: -------------------------------------------------------------------------------- 1 | uid_only: false 2 | ip_limit: 50 3 | ip_window: 3600 4 | user_limit: 5 5 | user_window: 21600 6 | _core: 7 | default_config_hash: UYfMzeP1S8jKm9PSvxf7nQNe8DsNS-3bc2WSNNXBQWs 8 | -------------------------------------------------------------------------------- /web/.eslintignore: -------------------------------------------------------------------------------- 1 | core/assets/vendor/**/* 2 | core/modules/locale/tests/locale_test.js 3 | vendor/**/* 4 | sites/**/files/**/* 5 | libraries/**/* 6 | sites/**/libraries/**/* 7 | profiles/**/libraries/**/* 8 | **/js_test_files/**/* 9 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.rss.yml: -------------------------------------------------------------------------------- 1 | channel: 2 | description: '' 3 | items: 4 | limit: 10 5 | view_mode: rss 6 | langcode: en 7 | _core: 8 | default_config_hash: TlH7NNk46phfxu1mSUfwg1C0YqaGsUCeD4l9JQnQlDU 9 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/contact.settings.yml: -------------------------------------------------------------------------------- 1 | default_form: feedback 2 | flood: 3 | limit: 5 4 | interval: 3600 5 | user_default_enabled: true 6 | _core: 7 | default_config_hash: U69DBeuvXuNVOC15rVNaBjDPK2fWFbo9v4takdYSSO8 8 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/file.settings.yml: -------------------------------------------------------------------------------- 1 | description: 2 | type: textfield 3 | length: 128 4 | icon: 5 | directory: core/modules/file/icons 6 | _core: 7 | default_config_hash: 8LI-1XgwLt9hYRns_7c81S632d6JhdqXKs4vDheaG6E 8 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/image.settings.yml: -------------------------------------------------------------------------------- 1 | preview_image: core/modules/image/sample.png 2 | allow_insecure_derivatives: false 3 | suppress_itok_output: false 4 | _core: 5 | default_config_hash: k-yDFHbqNfpe-Srg4sdCSqaosCl2D8uwyEY5esF8gEw 6 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.file.yml: -------------------------------------------------------------------------------- 1 | allow_insecure_uploads: false 2 | default_scheme: public 3 | path: 4 | temporary: /tmp 5 | temporary_maximum_age: 21600 6 | _core: 7 | default_config_hash: t48gCU9DzYfjb3bAOIqHLzhL0ChBlXh6_5B5Pyo9t8g 8 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.maintenance.yml: -------------------------------------------------------------------------------- 1 | message: '@site is currently under maintenance. We should be back shortly. Thank you for your patience.' 2 | langcode: en 3 | _core: 4 | default_config_hash: Z5MXifrF77GEAgx0GQ6iWT8wStjFuY8BD9OruofWTJ8 5 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/shortcut.set.default.yml: -------------------------------------------------------------------------------- 1 | uuid: d5a556f6-9b7e-414d-8a8b-4b61d8579a6b 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: U5VlGjd_SfV0Qm_EfnaynOfc549cNscFAx48JfYoMRI 7 | id: default 8 | label: Default 9 | -------------------------------------------------------------------------------- /web/sites/development.services.yml: -------------------------------------------------------------------------------- 1 | # Local development services. 2 | # 3 | # To activate this feature, follow the instructions at the top of the 4 | # 'example.settings.local.php' file, which sits next to this file. 5 | services: 6 | cache.backend.null: 7 | class: Drupal\Core\Cache\NullBackendFactory 8 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.date.yml: -------------------------------------------------------------------------------- 1 | country: 2 | default: '' 3 | first_day: 0 4 | timezone: 5 | default: Europe/Zurich 6 | user: 7 | configurable: true 8 | warn: false 9 | default: 0 10 | _core: 11 | default_config_hash: V9UurX2GPT05NWKG9f2GWQqFG2TRG8vczidwjpy7Woo 12 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.menu.static_menu_link_overrides.yml: -------------------------------------------------------------------------------- 1 | definitions: 2 | contact__site_page: 3 | enabled: true 4 | menu_name: footer 5 | parent: '' 6 | weight: 0 7 | expanded: false 8 | _core: 9 | default_config_hash: jdY7AU0tU-QsjmiOw3W8vwpYMb-By--_MSFgbqKUTYM 10 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.date_format.html_date.yml: -------------------------------------------------------------------------------- 1 | uuid: 11a1a13e-accd-4b1b-adc4-37ced2277146 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: EOQltUQPmgc6UQ2rcJ4Xi_leCEJj5ui0TR-12duS-Tk 7 | id: html_date 8 | label: 'HTML Date' 9 | locked: true 10 | pattern: Y-m-d 11 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.date_format.html_month.yml: -------------------------------------------------------------------------------- 1 | uuid: a21a44d8-4d05-4001-86f0-b27e74a5715b 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: Z7KuCUwM_WdTNvLcoltuX3_8d-s-8FZkTN6KgNwF0eM 7 | id: html_month 8 | label: 'HTML Month' 9 | locked: true 10 | pattern: Y-m 11 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.date_format.html_week.yml: -------------------------------------------------------------------------------- 1 | uuid: b9b70169-7f1e-42bd-9b17-bb741eaf0f1c 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: wKD4WsoV_wFgv2vgI4mcAAFSIzrye17ykzdwrnApkfY 7 | id: html_week 8 | label: 'HTML Week' 9 | locked: true 10 | pattern: Y-\WW 11 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.date_format.html_year.yml: -------------------------------------------------------------------------------- 1 | uuid: 0f768602-f64d-4d7c-b203-93102308825e 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: OjekiQuX9RbVQ2_8jOHBL94RgYLePqX7wpfNGgcQzrk 7 | id: html_year 8 | label: 'HTML Year' 9 | locked: true 10 | pattern: 'Y' 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore directories generated by Composer 2 | drush/contrib 3 | vendor 4 | web/core 5 | web/modules/contrib 6 | web/themes/contrib 7 | web/profiles/contrib 8 | 9 | # Ignore Drupal's file directory 10 | web/sites/default/files 11 | web/sites/default/settings.php 12 | 13 | # Ignore files generated by PhpStorm 14 | .idea 15 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.date_format.html_time.yml: -------------------------------------------------------------------------------- 1 | uuid: 3f67d54d-54d8-4671-9feb-75a79461b2c7 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: M7yqicYkU36hRy5p9drAaGBBihhUD1OyujFrAaQ93ZE 7 | id: html_time 8 | label: 'HTML Time' 9 | locked: true 10 | pattern: 'H:i:s' 11 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.date_format.long.yml: -------------------------------------------------------------------------------- 1 | uuid: dadfe959-e96d-4bac-a735-006fd3994c35 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: og8sWXhBuHbLMw3CoiBEZjgqSyhFBFmcbUW_wLcfNbo 7 | id: long 8 | label: 'Default long date' 9 | locked: false 10 | pattern: 'l, F j, Y - H:i' 11 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.date_format.short.yml: -------------------------------------------------------------------------------- 1 | uuid: 50ef54ce-69a0-4040-b455-bcda1f357c03 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: AlzeyytA8InBgxIG9H2UDJYs3CG98Zj6yRsDKmlbZwA 7 | id: short 8 | label: 'Default short date' 9 | locked: false 10 | pattern: 'm/d/Y - H:i' 11 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/migrate_plus.migration_group.liip.yml: -------------------------------------------------------------------------------- 1 | uuid: 7b3f0d88-b47d-4527-8a4a-8caba0dc393d 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | id: liip 6 | label: 'Liip CSV Imports' 7 | description: 'All custom imports of Liip AG' 8 | source_type: null 9 | module: null 10 | shared_configuration: null 11 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.menu.footer.yml: -------------------------------------------------------------------------------- 1 | uuid: 21af8b2a-2c4b-45c5-b167-7c5dd48409f7 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: 7yrlW5z9zdg2eBucB2GPqXKSMQfH9lSRSO4DbWF7AFc 7 | id: footer 8 | label: Footer 9 | description: 'Site information links' 10 | locked: true 11 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.menu.main.yml: -------------------------------------------------------------------------------- 1 | uuid: 1fe55615-a6d3-44e8-af3b-a1141b531516 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: Q2Ra3jfoIVk0f3SjxJX61byRQFVBAbpzYDQOiY-kno8 7 | id: main 8 | label: 'Main navigation' 9 | description: 'Site section links' 10 | locked: true 11 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.date_format.medium.yml: -------------------------------------------------------------------------------- 1 | uuid: 7405aa50-4240-4627-9265-874feb2acec6 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: nzL5d024NjXIX_8TlT6uFAu973lmfkmHklJC-2i9rAE 7 | id: medium 8 | label: 'Default medium date' 9 | locked: false 10 | pattern: 'D, m/d/Y - H:i' 11 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.menu.admin.yml: -------------------------------------------------------------------------------- 1 | uuid: d47e7e90-e223-4ce1-b987-8fb9cada307a 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: sapEi2YDGoI9yQIT_WgIV2vUdQ6DScH0V3fAyTadAL0 7 | id: admin 8 | label: Administration 9 | description: 'Administrative task links' 10 | locked: true 11 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/contact.form.personal.yml: -------------------------------------------------------------------------------- 1 | uuid: 909d6cd5-d4d6-4ef3-a8bc-cdfd2e531b84 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: 4w1vDIuPlVqNIiynysHZHU-9sBCpx5uiEIPlo4SW1tw 7 | id: personal 8 | label: 'Personal contact form' 9 | recipients: { } 10 | reply: '' 11 | weight: 0 12 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.date_format.fallback.yml: -------------------------------------------------------------------------------- 1 | uuid: e9d5c687-7631-4057-a8ad-4f87b9e1a276 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: 7klS5IWXrwzVaPpYZFAs6wcx8U2FF1X73OfrtTsvuvE 7 | id: fallback 8 | label: 'Fallback date format' 9 | locked: true 10 | pattern: 'D, m/d/Y - H:i' 11 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.menu.tools.yml: -------------------------------------------------------------------------------- 1 | uuid: dcc3fde2-9381-497a-87f6-501b4f9d7d6f 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: BCM-vV1zzRaLHN18dqAR_CuGOj8AFJvTx7BKl_8Gcxc 7 | id: tools 8 | label: Tools 9 | description: 'User tool links, often added by modules' 10 | locked: true 11 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.date_format.html_datetime.yml: -------------------------------------------------------------------------------- 1 | uuid: 097e1d88-ec7c-403e-b9ed-44c6e312f64b 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: jxfClwZIRXIdcvMrE--WkcZxDGUVoOIE3Sm2NRZlFuE 7 | id: html_datetime 8 | label: 'HTML Datetime' 9 | locked: true 10 | pattern: 'Y-m-d\TH:i:sO' 11 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.date_format.html_yearless_date.yml: -------------------------------------------------------------------------------- 1 | uuid: a7ffa0ff-8f60-4378-a2c8-7feb78f5a565 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: 5VpawMrKPEPCkoO4YpPa0TDFO2dgiIHfTziJtwlmUxc 7 | id: html_yearless_date 8 | label: 'HTML Yearless date' 9 | locked: true 10 | pattern: m-d 11 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/update.settings.yml: -------------------------------------------------------------------------------- 1 | check: 2 | disabled_extensions: false 3 | interval_days: 1 4 | fetch: 5 | url: '' 6 | max_attempts: 2 7 | timeout: 30 8 | notification: 9 | emails: 10 | - admin@example.com 11 | threshold: all 12 | _core: 13 | default_config_hash: 2QzULf0zovJQx3J06Y9rufzzfi-CY2CTTlEfJJh2Qyw 14 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/user.role.administrator.yml: -------------------------------------------------------------------------------- 1 | uuid: 6a0baacd-2ded-4dc3-9cc6-86224e1f21ee 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: Om6FEO7vZZMkPIbVvfxtdkWerQ2PvQM4sWUd6Q3ZnfI 7 | id: administrator 8 | label: Administrator 9 | weight: 2 10 | is_admin: true 11 | permissions: { } 12 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.entity_view_mode.node.rss.yml: -------------------------------------------------------------------------------- 1 | uuid: ef40f251-870e-4a5e-b56b-22a9fc4b870d 2 | langcode: en 3 | status: false 4 | dependencies: 5 | module: 6 | - node 7 | _core: 8 | default_config_hash: vlYzr-rp2f9NMp-Qlr4sFjlqRq-90mco5-afLNGwCrU 9 | id: node.rss 10 | label: RSS 11 | targetEntityType: node 12 | cache: true 13 | -------------------------------------------------------------------------------- /web/php.exe.stackdump: -------------------------------------------------------------------------------- 1 | Exception: STATUS_ACCESS_VIOLATION at eip=68B989E1 2 | eax=FFD41000 ebx=00286C30 ecx=00286D10 edx=00286E9E esi=FFD40FFF edi=FFD41000 3 | ebp=00000000 esp=00286B50 program=C:\Zend\babun\.babun\cygwin\bin\php.exe, pid 6532, thread main 4 | cs=0023 ds=002B es=002B fs=0053 gs=002B ss=002B 5 | Stack trace: 6 | Frame Function Args 7 | End of stack trace 8 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block_content.type.basic.yml: -------------------------------------------------------------------------------- 1 | uuid: 5e59a481-c886-4edb-80fb-3cde834eaca0 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: zglzjmYxi0G0ag9MZ02y0LSJOdpWRwJxyP_OvFojFyo 7 | id: basic 8 | label: 'Basic block' 9 | revision: 0 10 | description: 'A basic block contains a title and a body.' 11 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/contact.form.feedback.yml: -------------------------------------------------------------------------------- 1 | uuid: 7fb67d1f-00ed-492b-b349-e582559a56bb 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: c4zaT5cyPxuTXI6JOWt3qRtMvICT9tHB6d9a5VG-CmQ 7 | id: feedback 8 | label: 'Website feedback' 9 | recipients: 10 | - admin@example.com 11 | reply: '' 12 | weight: 0 13 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.entity_view_mode.node.teaser.yml: -------------------------------------------------------------------------------- 1 | uuid: 25fcf611-ca16-43c8-aee0-7835ced46fbb 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - node 7 | _core: 8 | default_config_hash: Mz9qWr1kUYK0mjRAGDsr5XS6PvtZ24en_7ndt-pyWe4 9 | id: node.teaser 10 | label: Teaser 11 | targetEntityType: node 12 | cache: true 13 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.entity_view_mode.user.compact.yml: -------------------------------------------------------------------------------- 1 | uuid: 68a054d2-a443-44b9-8908-4030b1cc5db0 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - user 7 | _core: 8 | default_config_hash: 71CSAr_LNPcgu6D6jI4INl1KATkahmeyUFBETAWya8g 9 | id: user.compact 10 | label: Compact 11 | targetEntityType: user 12 | cache: true 13 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.menu.account.yml: -------------------------------------------------------------------------------- 1 | uuid: 3037b46f-78bd-40b2-9da4-17b55ad9fa35 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: M_Bh81osDyUQ4wV0GgU_NdBNqkzM87sLxjaCdFj9mnw 7 | id: account 8 | label: 'User account menu' 9 | description: 'Links related to the active user account' 10 | locked: true 11 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/comment.type.comment.yml: -------------------------------------------------------------------------------- 1 | uuid: 8773f70e-3f66-4ae1-b942-0c2bec464950 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: bqZsN31T2n0UjcbyCpOPi9D2iO0sAOHR7FnEs9qMvaA 7 | id: comment 8 | label: 'Default comments' 9 | target_entity_type_id: node 10 | description: 'Allows commenting on content' 11 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.entity_form_mode.user.register.yml: -------------------------------------------------------------------------------- 1 | uuid: f47670af-8b51-4e3b-8300-b90af2099494 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - user 7 | _core: 8 | default_config_hash: flXhTcp55yLcyy7ZLOhPGKGZobZQJdkAFVWV3LseiuI 9 | id: user.register 10 | label: Register 11 | targetEntityType: user 12 | cache: true 13 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.entity_view_mode.node.full.yml: -------------------------------------------------------------------------------- 1 | uuid: fe34ec3c-cf2d-4edc-95c6-f68eedb79085 2 | langcode: en 3 | status: false 4 | dependencies: 5 | module: 6 | - node 7 | _core: 8 | default_config_hash: ElrtInxGjZd7GaapJ5O9n-ugi2hG2IxFivtgn0tHOsk 9 | id: node.full 10 | label: 'Full content' 11 | targetEntityType: node 12 | cache: true 13 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.entity_view_mode.user.full.yml: -------------------------------------------------------------------------------- 1 | uuid: 4c9e181e-a102-47d9-89c6-3bc35c024659 2 | langcode: en 3 | status: false 4 | dependencies: 5 | module: 6 | - user 7 | _core: 8 | default_config_hash: mQIF_foYjmnVSr9MpcD4CTaJE_FpO1AyDd_DskztGhM 9 | id: user.full 10 | label: 'User account' 11 | targetEntityType: user 12 | cache: true 13 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.entity_view_mode.comment.full.yml: -------------------------------------------------------------------------------- 1 | uuid: d15e17f0-2c27-4134-9c30-a19227f00285 2 | langcode: en 3 | status: false 4 | dependencies: 5 | module: 6 | - comment 7 | _core: 8 | default_config_hash: K7eNlfU7NEUajz01wItywZklr2oaPgL6s1_97fmDXLA 9 | id: comment.full 10 | label: 'Full comment' 11 | targetEntityType: comment 12 | cache: true 13 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.entity_view_mode.node.search_index.yml: -------------------------------------------------------------------------------- 1 | uuid: 10776af8-2651-4a9f-aaeb-076c4da8d6fb 2 | langcode: en 3 | status: false 4 | dependencies: 5 | module: 6 | - node 7 | _core: 8 | default_config_hash: fVFfJv_GzBRE-wpRHbfD5a3VjnhbEOXG6lvRd3uaccY 9 | id: node.search_index 10 | label: 'Search index' 11 | targetEntityType: node 12 | cache: true 13 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/search.page.user_search.yml: -------------------------------------------------------------------------------- 1 | uuid: d8bf31d0-8ef8-41f9-95e3-f4f373b0b266 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - user 7 | _core: 8 | default_config_hash: k3aUaZXGDuhkek2TZIee0PApOPTvYZLadziekdyHA5A 9 | id: user_search 10 | label: Users 11 | path: user 12 | weight: 0 13 | plugin: user_search 14 | configuration: { } 15 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/taxonomy.vocabulary.tags.yml: -------------------------------------------------------------------------------- 1 | uuid: dd6964f1-472f-4d3c-89dd-71b6e6a91bd5 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: lO5ziR5dVI1PpEeHZsSOfQ-Y7NWihSDKW8-MMf6uoms 7 | name: Tags 8 | vid: tags 9 | description: 'Use tags to group articles on similar topics into categories.' 10 | hierarchy: 0 11 | weight: 0 12 | -------------------------------------------------------------------------------- /web/modules/custom/migrate_posts/config/install/node.type.post.yml: -------------------------------------------------------------------------------- 1 | langcode: en 2 | status: true 3 | dependencies: 4 | module: 5 | - menu_ui 6 | third_party_settings: 7 | menu_ui: 8 | available_menus: { } 9 | parent: '' 10 | name: Post 11 | type: post 12 | description: 'Imported by JSON' 13 | help: '' 14 | new_revision: false 15 | preview_mode: 1 16 | display_submitted: false 17 | -------------------------------------------------------------------------------- /web/modules/custom/migrate_posts/migrate_posts.info.yml: -------------------------------------------------------------------------------- 1 | type: module 2 | name: Migrate Posts 3 | description: 'Imports menu structure from a csv file' 4 | package: Migration 5 | core: 8.x 6 | dependencies: 7 | - comment 8 | - field 9 | - menu_ui 10 | - node 11 | - path 12 | - text 13 | - user 14 | - migrate 15 | - migrate_plus 16 | - migrate_source_csv 17 | version: 8.x-1.0 18 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.entity_view_mode.block_content.full.yml: -------------------------------------------------------------------------------- 1 | uuid: db3daa31-b977-4644-b004-be68fede9244 2 | langcode: en 3 | status: false 4 | dependencies: 5 | module: 6 | - block_content 7 | _core: 8 | default_config_hash: 4tedlMuvQjDOdvHdw86_e-2Rt78aR7TGFMfOK8Ejppg 9 | id: block_content.full 10 | label: Full 11 | targetEntityType: block_content 12 | cache: true 13 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.action.node_save_action.yml: -------------------------------------------------------------------------------- 1 | uuid: aa9260fb-3489-450a-8221-52590b3b8e33 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - node 7 | _core: 8 | default_config_hash: U9HspszLxcw6pZmRacFa6yDbbheyMN-We4fPbrWWHGg 9 | id: node_save_action 10 | label: 'Save content' 11 | type: node 12 | plugin: node_save_action 13 | configuration: { } 14 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.entity_view_mode.node.search_result.yml: -------------------------------------------------------------------------------- 1 | uuid: ea91e393-4316-4d78-86ca-603b3416b23e 2 | langcode: en 3 | status: false 4 | dependencies: 5 | module: 6 | - node 7 | _core: 8 | default_config_hash: 6GCOQ-jP2RbdbHA5YWQ6bT8CfGbqrBYKOSC_XY4E3ZM 9 | id: node.search_result 10 | label: 'Search result highlighting input' 11 | targetEntityType: node 12 | cache: true 13 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.entity_view_mode.taxonomy_term.full.yml: -------------------------------------------------------------------------------- 1 | uuid: 5c5fbe46-be4b-4757-a416-14a68baabc94 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - taxonomy 7 | _core: 8 | default_config_hash: '-PPKjsNQPvoIDjOuUAvlLocYD976MNjb9Zpgyz5_BWE' 9 | id: taxonomy_term.full 10 | label: 'Taxonomy term page' 11 | targetEntityType: taxonomy_term 12 | cache: true 13 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.action.node_delete_action.yml: -------------------------------------------------------------------------------- 1 | uuid: 7e0f5583-7755-496e-9f43-d6601828a1d4 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - node 7 | _core: 8 | default_config_hash: Zx0jD1Klh5tZaGJy8uOeR_2MCu9FDM4xg7TaUJUEbkI 9 | id: node_delete_action 10 | label: 'Delete content' 11 | type: node 12 | plugin: node_delete_action 13 | configuration: { } 14 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/search.page.node_search.yml: -------------------------------------------------------------------------------- 1 | uuid: 0445e93c-3ea6-4f9e-860b-a7fb5f5a7f93 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - node 7 | _core: 8 | default_config_hash: 97tvtzGOa8_flb22CzSjgtm_YkiGMHvEBO-6q2K9V_U 9 | id: node_search 10 | label: Content 11 | path: node 12 | weight: -10 13 | plugin: node_search 14 | configuration: 15 | rankings: { } 16 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.action.node_publish_action.yml: -------------------------------------------------------------------------------- 1 | uuid: bd5575c2-3834-4681-a016-c8af9ef2c2b7 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - node 7 | _core: 8 | default_config_hash: lsQkbo4njZ-Q_oGKCPGXGWFjWF1I7QpgA6m-t9rcRoA 9 | id: node_publish_action 10 | label: 'Publish content' 11 | type: node 12 | plugin: node_publish_action 13 | configuration: { } 14 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.site.yml: -------------------------------------------------------------------------------- 1 | uuid: 81beb126-f8fa-4445-9d71-08864f660ee6 2 | name: 'Drupal 8 Migrate' 3 | mail: admin@example.com 4 | slogan: '' 5 | page: 6 | 403: '' 7 | 404: '' 8 | front: /node 9 | admin_compact_mode: false 10 | weight_select_max: 100 11 | langcode: en 12 | default_langcode: en 13 | _core: 14 | default_config_hash: yXadRE77Va-G6dxhd2kPYapAvbnSvTF6hO4oXiOEynI 15 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.action.comment_save_action.yml: -------------------------------------------------------------------------------- 1 | uuid: b1e24c43-6aa0-4459-a360-cbebcc293c70 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - comment 7 | _core: 8 | default_config_hash: TSkg_gUZvk-39yXFrIFnKjsxuEzO0qBH82TdDxOMMr4 9 | id: comment_save_action 10 | label: 'Save comment' 11 | type: comment 12 | plugin: comment_save_action 13 | configuration: { } 14 | -------------------------------------------------------------------------------- /web/modules/custom/migrate_json_hackday/migrate_json_hackday.info.yml: -------------------------------------------------------------------------------- 1 | type: module 2 | name: Migrate Menu 3 | description: 'Imports menu structure from a csv file' 4 | package: Migration 5 | core: 8.x 6 | dependencies: 7 | - migrate 8 | - migrate_plus 9 | - migrate_source_json 10 | - migrate_posts 11 | config_devel: 12 | install: 13 | - migrate_plus.migration.post 14 | - migrate_plus.migration.comment 15 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.action.node_unpublish_action.yml: -------------------------------------------------------------------------------- 1 | uuid: 14df01c8-10d2-496b-aa0e-3f5230810094 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - node 7 | _core: 8 | default_config_hash: gGQXiSspwGl0lyOS6w_HCPpvGAPDciqDNLFwWOydVtI 9 | id: node_unpublish_action 10 | label: 'Unpublish content' 11 | type: node 12 | plugin: node_unpublish_action 13 | configuration: { } 14 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.action.comment_publish_action.yml: -------------------------------------------------------------------------------- 1 | uuid: 058fcc35-ecfe-4bf7-b0b7-27d1e769bfc5 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - comment 7 | _core: 8 | default_config_hash: f6w_Pd30AyyDIoMkD4QpPMM2-I8FTEHICchFVOpjiCI 9 | id: comment_publish_action 10 | label: 'Publish comment' 11 | type: comment 12 | plugin: comment_publish_action 13 | configuration: { } 14 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.action.node_make_sticky_action.yml: -------------------------------------------------------------------------------- 1 | uuid: 5bc9c3ed-1fdc-43a2-b842-3009816c2773 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - node 7 | _core: 8 | default_config_hash: sOb26JSy3fGpWkvR0WYN6_hMqj_6d1rvbvrkzp1yya0 9 | id: node_make_sticky_action 10 | label: 'Make content sticky' 11 | type: node 12 | plugin: node_make_sticky_action 13 | configuration: { } 14 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.action.node_promote_action.yml: -------------------------------------------------------------------------------- 1 | uuid: 362556b2-ac20-4889-8da8-5cc6352c6fbd 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - node 7 | _core: 8 | default_config_hash: N0RDBTqiK4dKoN4p4oW2j0SGWycdHyALUe9M-Ofp89U 9 | id: node_promote_action 10 | label: 'Promote content to front page' 11 | type: node 12 | plugin: node_promote_action 13 | configuration: { } 14 | -------------------------------------------------------------------------------- /web/modules/custom/migrate_menu/migrate_menu.info.yml: -------------------------------------------------------------------------------- 1 | type: module 2 | name: Migrate Menu 3 | description: 'Imports menu structure from a csv file' 4 | package: Migration 5 | core: 8.x 6 | dependencies: 7 | - migrate 8 | - migrate_plus 9 | - migrate_source_csv 10 | config_devel: 11 | install: 12 | - migrate_plus.migration.page_node 13 | - migrate_plus.migration.menu_item 14 | - migrate_plus.migration_group.liip 15 | -------------------------------------------------------------------------------- /web/modules/custom/migrate_menu/migrate_menu.install: -------------------------------------------------------------------------------- 1 | getEditable('migrate_plus.migration.page_node')->delete(); 8 | \Drupal::configFactory()->getEditable('migrate_plus.migration.menu_item')->delete(); 9 | \Drupal::configFactory()->getEditable('migrate_plus.migration_group.liip')->delete(); 10 | } -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.action.node_unpromote_action.yml: -------------------------------------------------------------------------------- 1 | uuid: 08c09d49-2cb5-46f5-8e2f-829dd02a0297 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - node 7 | _core: 8 | default_config_hash: JBptjnfuOMtsdKygklXxoOgeOCTMtQxlkymjnnj-cC0 9 | id: node_unpromote_action 10 | label: 'Remove content from front page' 11 | type: node 12 | plugin: node_unpromote_action 13 | configuration: { } 14 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.action.user_block_user_action.yml: -------------------------------------------------------------------------------- 1 | uuid: 981989d8-b690-448a-a408-148d8dc28c99 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - user 7 | _core: 8 | default_config_hash: DyypzTfThX10FFQw-399qPfEbLLyrhXgQrKPVsmAoJ4 9 | id: user_block_user_action 10 | label: 'Block the selected user(s)' 11 | type: user 12 | plugin: user_block_user_action 13 | configuration: { } 14 | -------------------------------------------------------------------------------- /web/.editorconfig: -------------------------------------------------------------------------------- 1 | # Drupal editor configuration normalization 2 | # @see http://editorconfig.org/ 3 | 4 | # This is the top-most .editorconfig file; do not search in parent directories. 5 | root = true 6 | 7 | # All files. 8 | [*] 9 | end_of_line = LF 10 | indent_style = space 11 | indent_size = 2 12 | charset = utf-8 13 | trim_trailing_whitespace = true 14 | insert_final_newline = true 15 | 16 | [composer.json] 17 | indent_size = 4 18 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.action.comment_unpublish_action.yml: -------------------------------------------------------------------------------- 1 | uuid: 5c02ed57-f13b-4d78-9ad2-9524d91eb2d9 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - comment 7 | _core: 8 | default_config_hash: MLin6S_PsJ7Oo480DxS46D46IM8tqFkkWOLyH7TGByI 9 | id: comment_unpublish_action 10 | label: 'Unpublish comment' 11 | type: comment 12 | plugin: comment_unpublish_action 13 | configuration: { } 14 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.action.node_make_unsticky_action.yml: -------------------------------------------------------------------------------- 1 | uuid: 7df1cfd9-cd55-4d8c-86f5-9aaee521c101 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - node 7 | _core: 8 | default_config_hash: lDM9mvIGAu8Sw8rt-uCO4Sr7yX5VPrDPxYcawkbKd6k 9 | id: node_make_unsticky_action 10 | label: 'Make content unsticky' 11 | type: node 12 | plugin: node_make_unsticky_action 13 | configuration: { } 14 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.action.user_unblock_user_action.yml: -------------------------------------------------------------------------------- 1 | uuid: 0d3405c4-92bf-4ae1-8024-1e7c0bb8248e 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - user 7 | _core: 8 | default_config_hash: SPsUXsR3Rc8d1y3gewzaAKWa1ncea_ywXX3f7LTn7k0 9 | id: user_unblock_user_action 10 | label: 'Unblock the selected user(s)' 11 | type: user 12 | plugin: user_unblock_user_action 13 | configuration: { } 14 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.action.user_cancel_user_action.yml: -------------------------------------------------------------------------------- 1 | uuid: 1339ba72-0834-4beb-8ae5-a675df2c15a3 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - user 7 | _core: 8 | default_config_hash: nvrL9bFilzBvm2bjO9rQnFDpBA7dBBUjShSSt6NS-DU 9 | id: user_cancel_user_action 10 | label: 'Cancel the selected user account(s)' 11 | type: user 12 | plugin: user_cancel_user_action 13 | configuration: { } 14 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/migrate_plus.migration_group.default.yml: -------------------------------------------------------------------------------- 1 | uuid: 685af974-b2e7-4a7e-9125-38613fefbc45 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: RX-67i9WOQCu4AWLuhoM0XhownC-0jVCL34zqNGJUdw 7 | id: default 8 | label: Default 9 | description: 'A container for any migrations not explicitly assigned to a group.' 10 | source_type: null 11 | module: null 12 | shared_configuration: null 13 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/rdf.mapping.user.user.yml: -------------------------------------------------------------------------------- 1 | uuid: ab711ae5-fd85-45b6-a9dd-f2c4a1b05e29 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - user 7 | _core: 8 | default_config_hash: TGTlmpYAtXxjtYMFA_A0vosE2c4R5MCQwLviIA5HUM0 9 | id: user.user 10 | targetEntityType: user 11 | bundle: user 12 | types: 13 | - 'schema:Person' 14 | fieldMappings: 15 | name: 16 | properties: 17 | - 'schema:name' 18 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.theme.global.yml: -------------------------------------------------------------------------------- 1 | favicon: 2 | mimetype: image/vnd.microsoft.icon 3 | path: '' 4 | url: '' 5 | use_default: true 6 | features: 7 | comment_user_picture: true 8 | comment_user_verification: true 9 | favicon: true 10 | node_user_picture: true 11 | logo: 12 | path: '' 13 | url: '' 14 | use_default: true 15 | _core: 16 | default_config_hash: 9rAU4Pku7eMBQxauQqAgjzlcicFZ2As6zEa6zvTlCB8 17 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.action.user_add_role_action.administrator.yml: -------------------------------------------------------------------------------- 1 | uuid: b05649e3-ec90-4300-9d64-8582998bb558 2 | langcode: en 3 | status: true 4 | dependencies: 5 | config: 6 | - user.role.administrator 7 | module: 8 | - user 9 | id: user_add_role_action.administrator 10 | label: 'Add the Administrator role to the selected users' 11 | type: user 12 | plugin: user_add_role_action 13 | configuration: 14 | rid: administrator 15 | -------------------------------------------------------------------------------- /web/autoload.php: -------------------------------------------------------------------------------- 1 | basic pages for your static content, such as an ''About us'' page.' 10 | help: '' 11 | new_revision: false 12 | preview_mode: 1 13 | display_submitted: false 14 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/node.type.article.yml: -------------------------------------------------------------------------------- 1 | uuid: 41f0407c-4bbf-49c4-9ab7-723dabbaca5d 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: i4OVV5qrD7abstl4SKS8v5Ee7PuxrL548iZVSty1HRg 7 | name: Article 8 | type: article 9 | description: 'Use articles for time-sensitive content like news, press releases or blog posts.' 10 | help: '' 11 | new_revision: false 12 | preview_mode: 1 13 | display_submitted: true 14 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.action.user_remove_role_action.administrator.yml: -------------------------------------------------------------------------------- 1 | uuid: 547aa5f4-c159-4fb1-8f88-2746b2ad5d76 2 | langcode: en 3 | status: true 4 | dependencies: 5 | config: 6 | - user.role.administrator 7 | module: 8 | - user 9 | id: user_remove_role_action.administrator 10 | label: 'Remove the Administrator role from the selected users' 11 | type: user 12 | plugin: user_remove_role_action 13 | configuration: 14 | rid: administrator 15 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/search.settings.yml: -------------------------------------------------------------------------------- 1 | and_or_limit: 7 2 | default_page: node_search 3 | index: 4 | cron_limit: 100 5 | overlap_cjk: true 6 | minimum_word_size: 3 7 | tag_weights: 8 | h1: 25 9 | h2: 18 10 | h3: 15 11 | h4: 14 12 | h5: 9 13 | h6: 6 14 | u: 3 15 | b: 3 16 | i: 3 17 | strong: 3 18 | em: 3 19 | a: 10 20 | logging: false 21 | _core: 22 | default_config_hash: hvVxL1G-ZCxaq32IZws0YsfuhvaDiQE_np-0g35KjUk 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/page_manager.page.node_view.yml: -------------------------------------------------------------------------------- 1 | uuid: 932d38f0-886c-483e-99b6-92aa64f1ed78 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: 1rbdWeEeBjGARzFlodw9zcw3FlX6WQD83Rsckxl9_3o 7 | id: node_view 8 | label: 'Node view' 9 | use_admin_theme: false 10 | path: '/node/{node}' 11 | access_logic: and 12 | access_conditions: { } 13 | parameters: 14 | node: 15 | machine_name: node 16 | type: 'entity:node' 17 | label: Node 18 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/user.role.anonymous.yml: -------------------------------------------------------------------------------- 1 | uuid: 2251373f-5170-45c6-aa29-8746f18d9fb5 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: j5zLMOdJBqC0bMvSdth5UebkprJB8g_2FXHqhfpJzow 7 | id: anonymous 8 | label: 'Anonymous user' 9 | weight: 0 10 | is_admin: false 11 | permissions: 12 | - 'access content' 13 | - 'use text format restricted_html' 14 | - 'access comments' 15 | - 'access site-wide contact form' 16 | - 'search content' 17 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/node.type.post.yml: -------------------------------------------------------------------------------- 1 | uuid: 626f3dbb-50c1-472c-b104-0d4d45eb0ce9 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - menu_ui 7 | third_party_settings: 8 | menu_ui: 9 | available_menus: { } 10 | parent: '' 11 | _core: 12 | default_config_hash: kMgvMCsF6OZmLwl5lo8t_uSbnAjRDjL67wxjvHpS7QA 13 | name: Post 14 | type: post 15 | description: 'Imported by JSON' 16 | help: '' 17 | new_revision: false 18 | preview_mode: 1 19 | display_submitted: false 20 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/image.style.large.yml: -------------------------------------------------------------------------------- 1 | uuid: 55526cdd-4a0e-4373-bdf5-d587e1e0c1e0 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: J2n0RpFzS0-bgSyxjs6rSdgxB1rb-bTAgqywNx_964M 7 | name: large 8 | label: 'Large (480×480)' 9 | effects: 10 | ddd73aa7-4bd6-4c85-b600-bdf2b1628d1d: 11 | uuid: ddd73aa7-4bd6-4c85-b600-bdf2b1628d1d 12 | id: image_scale 13 | weight: 0 14 | data: 15 | width: 480 16 | height: 480 17 | upscale: false 18 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/image.style.medium.yml: -------------------------------------------------------------------------------- 1 | uuid: b9cca73f-7643-4da7-af70-8460fbc210c9 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: Y9NmnZHQq20ASSyTNA6JnwtWrJJiSajOehGDtmUFdM0 7 | name: medium 8 | label: 'Medium (220×220)' 9 | effects: 10 | bddf0d06-42f9-4c75-a700-a33cafa25ea0: 11 | uuid: bddf0d06-42f9-4c75-a700-a33cafa25ea0 12 | id: image_scale 13 | weight: 0 14 | data: 15 | width: 220 16 | height: 220 17 | upscale: false 18 | -------------------------------------------------------------------------------- /web/modules/custom/migrate_posts/config/install/field.field.node.post.body.yml: -------------------------------------------------------------------------------- 1 | langcode: en 2 | status: true 3 | dependencies: 4 | config: 5 | - field.storage.node.body 6 | - node.type.post 7 | module: 8 | - text 9 | id: node.post.body 10 | field_name: body 11 | entity_type: node 12 | bundle: post 13 | label: Body 14 | description: '' 15 | required: false 16 | translatable: true 17 | default_value: { } 18 | default_value_callback: '' 19 | settings: 20 | display_summary: true 21 | field_type: text_with_summary 22 | -------------------------------------------------------------------------------- /web/modules/custom/migrate_posts/config/install/core.base_field_override.node.post.promote.yml: -------------------------------------------------------------------------------- 1 | langcode: en 2 | status: true 3 | dependencies: 4 | config: 5 | - node.type.post 6 | id: node.post.promote 7 | field_name: promote 8 | entity_type: node 9 | bundle: post 10 | label: 'Promoted to front page' 11 | description: '' 12 | required: false 13 | translatable: true 14 | default_value: 15 | - 16 | value: 0 17 | default_value_callback: '' 18 | settings: 19 | on_label: 'On' 20 | off_label: 'Off' 21 | field_type: boolean 22 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/image.style.thumbnail.yml: -------------------------------------------------------------------------------- 1 | uuid: 28f63a4c-aae5-46c9-99a8-a80e3eb03772 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: cCiWdBHgLwj5omG35lsKc4LkW4MBdmcctkVop4ol5x0 7 | name: thumbnail 8 | label: 'Thumbnail (100×100)' 9 | effects: 10 | 1cfec298-8620-4749-b100-ccb6c4500779: 11 | uuid: 1cfec298-8620-4749-b100-ccb6c4500779 12 | id: image_scale 13 | weight: 0 14 | data: 15 | width: 100 16 | height: 100 17 | upscale: false 18 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.seven_help.yml: -------------------------------------------------------------------------------- 1 | uuid: 4adf7d1f-4b4e-41c7-89b7-bf8c9becc7ca 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - help 7 | theme: 8 | - seven 9 | _core: 10 | default_config_hash: NU5A_49mwLHfs5xFzMFrZ850w9pgUolxMS9NNF3vv4c 11 | id: seven_help 12 | theme: seven 13 | region: help 14 | weight: 0 15 | provider: null 16 | plugin: help_block 17 | settings: 18 | id: help_block 19 | label: Help 20 | provider: help 21 | label_display: '0' 22 | visibility: { } 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.bartik_help.yml: -------------------------------------------------------------------------------- 1 | uuid: e8cfdc69-c711-494c-8636-982ddf51a14f 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - help 7 | theme: 8 | - bartik 9 | _core: 10 | default_config_hash: 8I8iACSa0sKO3k3jlvUG1ge52rfcKX7USJAQYnzuBgg 11 | id: bartik_help 12 | theme: bartik 13 | region: content 14 | weight: -8 15 | provider: null 16 | plugin: help_block 17 | settings: 18 | id: help_block 19 | label: Help 20 | provider: help 21 | label_display: '0' 22 | visibility: { } 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.seven_page_title.yml: -------------------------------------------------------------------------------- 1 | uuid: 8e61e21b-c41e-42d2-83ef-bdd807acac84 2 | langcode: en 3 | status: true 4 | dependencies: 5 | theme: 6 | - seven 7 | _core: 8 | default_config_hash: ZSpc3IoSaLd0PkB02nxjVPBMztIdsTdHek9SiGaqZ_c 9 | id: seven_page_title 10 | theme: seven 11 | region: header 12 | weight: -30 13 | provider: null 14 | plugin: page_title_block 15 | settings: 16 | id: page_title_block 17 | label: 'Page title' 18 | provider: core 19 | label_display: '0' 20 | visibility: { } 21 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.bartik_page_title.yml: -------------------------------------------------------------------------------- 1 | uuid: cfddb57d-87cd-4bd6-b833-d911fd64206b 2 | langcode: en 3 | status: true 4 | dependencies: 5 | theme: 6 | - bartik 7 | _core: 8 | default_config_hash: 7rR9chwXvdM2H8OYMAYx9Zj3GGlPMrZp_M3ZA4thYTk 9 | id: bartik_page_title 10 | theme: bartik 11 | region: content 12 | weight: -8 13 | provider: null 14 | plugin: page_title_block 15 | settings: 16 | id: page_title_block 17 | label: 'Page title' 18 | provider: core 19 | label_display: '0' 20 | visibility: { } 21 | -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | 11 | 12 | ./test/ 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/field.storage.node.body.yml: -------------------------------------------------------------------------------- 1 | uuid: 1b7a88a7-c2f8-40d0-8f1d-857d9723ae93 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - node 7 | - text 8 | _core: 9 | default_config_hash: EBUo7qOWqaiZaQ_RC9sLY5IoDKphS34v77VIHSACmVY 10 | id: node.body 11 | field_name: body 12 | entity_type: node 13 | type: text_with_summary 14 | settings: { } 15 | module: text 16 | locked: false 17 | cardinality: 1 18 | translatable: true 19 | indexes: { } 20 | persist_with_no_fields: true 21 | custom_storage: false 22 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.bartik_local_actions.yml: -------------------------------------------------------------------------------- 1 | uuid: 20ec7627-df70-4576-b7e7-f25fbce3348d 2 | langcode: en 3 | status: true 4 | dependencies: 5 | theme: 6 | - bartik 7 | _core: 8 | default_config_hash: 13GQpeITIJsp1kyPniXtWZfyFH87vb1xxJCHifL4UeE 9 | id: bartik_local_actions 10 | theme: bartik 11 | region: content 12 | weight: -8 13 | provider: null 14 | plugin: local_actions_block 15 | settings: 16 | id: local_actions_block 17 | label: 'Primary admin actions' 18 | provider: core 19 | label_display: '0' 20 | visibility: { } 21 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.seven_local_actions.yml: -------------------------------------------------------------------------------- 1 | uuid: 8acb8af4-b03e-40dc-8e2b-37b07fa1be65 2 | langcode: en 3 | status: true 4 | dependencies: 5 | theme: 6 | - seven 7 | _core: 8 | default_config_hash: HHryZVJbeKi9WnuBGC8FOhBZmBnk2G1H6KxFuy-rC9A 9 | id: seven_local_actions 10 | theme: seven 11 | region: content 12 | weight: -10 13 | provider: null 14 | plugin: local_actions_block 15 | settings: 16 | id: local_actions_block 17 | label: 'Primary admin actions' 18 | provider: core 19 | label_display: '0' 20 | visibility: { } 21 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.seven_login.yml: -------------------------------------------------------------------------------- 1 | uuid: ddb9b6c3-d13b-4a5c-85a7-df590ca769b0 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - user 7 | theme: 8 | - seven 9 | _core: 10 | default_config_hash: IItlF4SKHgxduIysVQdvirDJ_v3HGuAviOkidAOJYRE 11 | id: seven_login 12 | theme: seven 13 | region: content 14 | weight: 10 15 | provider: null 16 | plugin: user_login_block 17 | settings: 18 | id: user_login_block 19 | label: 'User login' 20 | provider: user 21 | label_display: visible 22 | visibility: { } 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.adminimal_theme_help.yml: -------------------------------------------------------------------------------- 1 | uuid: f3347ecb-b708-428a-bceb-0fda3736eb3a 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - help 7 | theme: 8 | - adminimal_theme 9 | _core: 10 | default_config_hash: PfozGAnWQRNy00G6KEnZjIu9b2lGuWg-j-GT_-Ejglc 11 | id: adminimal_theme_help 12 | theme: adminimal_theme 13 | region: help 14 | weight: 0 15 | provider: null 16 | plugin: help_block 17 | settings: 18 | id: help_block 19 | label: Help 20 | provider: help 21 | label_display: '0' 22 | visibility: { } 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.bartik_search.yml: -------------------------------------------------------------------------------- 1 | uuid: 11e9b201-451a-461b-ac8a-ec65e7728b06 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - search 7 | theme: 8 | - bartik 9 | _core: 10 | default_config_hash: za-39d5WDUg6XvbyqSnuVYEeq6QM4qKJxW8MnoAha5A 11 | id: bartik_search 12 | theme: bartik 13 | region: sidebar_first 14 | weight: -1 15 | provider: null 16 | plugin: search_form_block 17 | settings: 18 | id: search_form_block 19 | label: Search 20 | provider: search 21 | label_display: visible 22 | visibility: { } 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.seven_content.yml: -------------------------------------------------------------------------------- 1 | uuid: dafbf20a-1db5-4ffa-8cf5-849ebdd1ff52 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - system 7 | theme: 8 | - seven 9 | _core: 10 | default_config_hash: YRY68JWkaUiGeZlWMv1nzeIgDm0ZZwXYgpqUpLFzwAY 11 | id: seven_content 12 | theme: seven 13 | region: content 14 | weight: 0 15 | provider: null 16 | plugin: system_main_block 17 | settings: 18 | id: system_main_block 19 | label: 'Main page content' 20 | provider: system 21 | label_display: '0' 22 | visibility: { } 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.adminimal_theme_page_title.yml: -------------------------------------------------------------------------------- 1 | uuid: 30322ac9-8044-4e1b-b14f-cee9f9b6ab20 2 | langcode: en 3 | status: true 4 | dependencies: 5 | theme: 6 | - adminimal_theme 7 | _core: 8 | default_config_hash: Z3nlZUh2mSJP3apMrJWt-duS-aLyP79rcfu_0wpPmDs 9 | id: adminimal_theme_page_title 10 | theme: adminimal_theme 11 | region: header 12 | weight: -30 13 | provider: null 14 | plugin: page_title_block 15 | settings: 16 | id: page_title_block 17 | label: 'Page title' 18 | provider: core 19 | label_display: '0' 20 | visibility: { } 21 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.bartik_content.yml: -------------------------------------------------------------------------------- 1 | uuid: f3936260-f67e-4ff5-a1fe-35ff39f5e1d8 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - system 7 | theme: 8 | - bartik 9 | _core: 10 | default_config_hash: 9EoWV2Lot6FVSr50t4hoKgiz1LIXYWNG-IIPYsWxBqo 11 | id: bartik_content 12 | theme: bartik 13 | region: content 14 | weight: 0 15 | provider: null 16 | plugin: system_main_block 17 | settings: 18 | id: system_main_block 19 | label: 'Main page content' 20 | provider: system 21 | label_display: '0' 22 | visibility: { } 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/field.storage.comment.comment_body.yml: -------------------------------------------------------------------------------- 1 | uuid: 605e94c8-1690-48f9-9f6f-1285f048a56f 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - comment 7 | - text 8 | _core: 9 | default_config_hash: swYoCch_hY8QO5uwr4FURplfnUCUlpPB4idF8WGVCpw 10 | id: comment.comment_body 11 | field_name: comment_body 12 | entity_type: comment 13 | type: text_long 14 | settings: { } 15 | module: text 16 | locked: false 17 | cardinality: 1 18 | translatable: true 19 | indexes: { } 20 | persist_with_no_fields: true 21 | custom_storage: false 22 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.bartik_local_tasks.yml: -------------------------------------------------------------------------------- 1 | uuid: 7d53cee7-9001-4d6b-8e9f-ce3c09451e82 2 | langcode: en 3 | status: true 4 | dependencies: 5 | theme: 6 | - bartik 7 | _core: 8 | default_config_hash: X9I1OB0W3WlWtrK-CNcg6hNWwa8wficanpH8pYnDZDE 9 | id: bartik_local_tasks 10 | theme: bartik 11 | region: content 12 | weight: -8 13 | provider: null 14 | plugin: local_tasks_block 15 | settings: 16 | id: local_tasks_block 17 | label: Tabs 18 | provider: core 19 | label_display: '0' 20 | primary: true 21 | secondary: true 22 | visibility: { } 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/field.storage.node.comment.yml: -------------------------------------------------------------------------------- 1 | uuid: 11b98033-556d-4021-abbe-781c24e6e91b 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - comment 7 | - node 8 | _core: 9 | default_config_hash: ktCna9xmWvYZIUfOCUyDQvedn5RtnS4CRmEIwNmvYjc 10 | id: node.comment 11 | field_name: comment 12 | entity_type: node 13 | type: comment 14 | settings: 15 | comment_type: comment 16 | module: comment 17 | locked: false 18 | cardinality: 1 19 | translatable: true 20 | indexes: { } 21 | persist_with_no_fields: false 22 | custom_storage: false 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.bartik_messages.yml: -------------------------------------------------------------------------------- 1 | uuid: 7b2c7c9b-5d0e-42df-914a-9c0271124c08 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - system 7 | theme: 8 | - bartik 9 | _core: 10 | default_config_hash: KHQIJ7Vfl25lTjzIc7qIvnuistt-Mw2O0kG4jCofmkI 11 | id: bartik_messages 12 | theme: bartik 13 | region: highlighted 14 | weight: 0 15 | provider: null 16 | plugin: system_messages_block 17 | settings: 18 | id: system_messages_block 19 | label: 'Status messages' 20 | provider: system 21 | label_display: '0' 22 | visibility: { } 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.seven_breadcrumbs.yml: -------------------------------------------------------------------------------- 1 | uuid: daa4fa21-7763-4d68-a274-b718fe9e2ef1 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - system 7 | theme: 8 | - seven 9 | _core: 10 | default_config_hash: WWu2OQswgCztl9OeXjD1stexIEMZsSgPMYIdC-JHx9c 11 | id: seven_breadcrumbs 12 | theme: seven 13 | region: breadcrumb 14 | weight: 0 15 | provider: null 16 | plugin: system_breadcrumb_block 17 | settings: 18 | id: system_breadcrumb_block 19 | label: Breadcrumbs 20 | provider: system 21 | label_display: '0' 22 | visibility: { } 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.seven_messages.yml: -------------------------------------------------------------------------------- 1 | uuid: 755ffbdb-db46-4e88-a519-514a63892d9a 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - system 7 | theme: 8 | - seven 9 | _core: 10 | default_config_hash: XJqWwLt1LDCnazcEN6QkJmCLjk4R0__-8s0OO9xeNjg 11 | id: seven_messages 12 | theme: seven 13 | region: highlighted 14 | weight: 0 15 | provider: null 16 | plugin: system_messages_block 17 | settings: 18 | id: system_messages_block 19 | label: 'Status messages' 20 | provider: system 21 | label_display: '0' 22 | visibility: { } 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/field.storage.block_content.body.yml: -------------------------------------------------------------------------------- 1 | uuid: a4af780a-45c6-4947-8197-f34b80dbaa8f 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - block_content 7 | - text 8 | _core: 9 | default_config_hash: eS0snV_L3dx9shtWRTzm5eblwOJ7qKWC9IE-4GMTDFc 10 | id: block_content.body 11 | field_name: body 12 | entity_type: block_content 13 | type: text_with_summary 14 | settings: { } 15 | module: text 16 | locked: false 17 | cardinality: 1 18 | translatable: true 19 | indexes: { } 20 | persist_with_no_fields: true 21 | custom_storage: false 22 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/user.role.authenticated.yml: -------------------------------------------------------------------------------- 1 | uuid: 5f0084eb-e41e-4d5f-b92b-1b6f8f407e8f 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: dJ0L2DNSj5q6XVZAGsuVDpJTh5UeYkIPwKrUOOpr8YI 7 | id: authenticated 8 | label: 'Authenticated user' 9 | weight: 1 10 | is_admin: false 11 | permissions: 12 | - 'access content' 13 | - 'use text format basic_html' 14 | - 'access comments' 15 | - 'post comments' 16 | - 'skip comment approval' 17 | - 'access site-wide contact form' 18 | - 'access shortcuts' 19 | - 'search content' 20 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.bartik_breadcrumbs.yml: -------------------------------------------------------------------------------- 1 | uuid: 5f5cfc7d-dc3c-44a6-b57e-a30ad9a00f90 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - system 7 | theme: 8 | - bartik 9 | _core: 10 | default_config_hash: oXUb3JZR2WW5VOdw4HrhRicCsq51mCgLfRyvheG68ck 11 | id: bartik_breadcrumbs 12 | theme: bartik 13 | region: breadcrumb 14 | weight: 0 15 | provider: null 16 | plugin: system_breadcrumb_block 17 | settings: 18 | id: system_breadcrumb_block 19 | label: Breadcrumbs 20 | provider: system 21 | label_display: '0' 22 | visibility: { } 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.mainnavigation.yml: -------------------------------------------------------------------------------- 1 | uuid: 42abcf18-1c73-4d24-86aa-720a8f256bc6 2 | langcode: en 3 | status: true 4 | dependencies: 5 | config: 6 | - system.menu.main 7 | module: 8 | - system 9 | theme: 10 | - bartik 11 | id: mainnavigation 12 | theme: bartik 13 | region: sidebar_first 14 | weight: -8 15 | provider: null 16 | plugin: 'system_menu_block:main' 17 | settings: 18 | id: 'system_menu_block:main' 19 | label: 'Main navigation' 20 | provider: system 21 | label_display: visible 22 | level: 2 23 | depth: 0 24 | visibility: { } 25 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.bartik_powered.yml: -------------------------------------------------------------------------------- 1 | uuid: 1082abdd-6401-4ef2-a421-2f793b85779c 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - system 7 | theme: 8 | - bartik 9 | _core: 10 | default_config_hash: jQQUUWN2Uxr5qZtc9zcJKBCxpKY8orN1u2HPqYYRQDI 11 | id: bartik_powered 12 | theme: bartik 13 | region: footer_fifth 14 | weight: -8 15 | provider: null 16 | plugin: system_powered_by_block 17 | settings: 18 | id: system_powered_by_block 19 | label: 'Powered by Drupal' 20 | provider: system 21 | label_display: '0' 22 | visibility: { } 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/rdf.mapping.taxonomy_term.tags.yml: -------------------------------------------------------------------------------- 1 | uuid: cf4602be-6056-4388-9940-f62bcf6dbbfe 2 | langcode: en 3 | status: true 4 | dependencies: 5 | config: 6 | - taxonomy.vocabulary.tags 7 | module: 8 | - taxonomy 9 | _core: 10 | default_config_hash: o5duwyS1CTHx3tYOZhuu91kspe8VQjQsnwZjAJv9njk 11 | id: taxonomy_term.tags 12 | targetEntityType: taxonomy_term 13 | bundle: tags 14 | types: 15 | - 'schema:Thing' 16 | fieldMappings: 17 | name: 18 | properties: 19 | - 'schema:name' 20 | description: 21 | properties: 22 | - 'schema:description' 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.adminimal_theme_local_actions.yml: -------------------------------------------------------------------------------- 1 | uuid: 26f4a7bb-2574-46c5-8c76-0cf9542999d8 2 | langcode: en 3 | status: true 4 | dependencies: 5 | theme: 6 | - adminimal_theme 7 | _core: 8 | default_config_hash: ik4PTMlBD0MWansnSMpSXq5SUlWRJ1IVVt6C7AIbQmc 9 | id: adminimal_theme_local_actions 10 | theme: adminimal_theme 11 | region: content 12 | weight: -10 13 | provider: null 14 | plugin: local_actions_block 15 | settings: 16 | id: local_actions_block 17 | label: 'Primary admin actions' 18 | provider: core 19 | label_display: '0' 20 | visibility: { } 21 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.adminimal_theme_login.yml: -------------------------------------------------------------------------------- 1 | uuid: 0bc1431d-0b88-4b37-bf40-a95b0afc1029 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - user 7 | theme: 8 | - adminimal_theme 9 | _core: 10 | default_config_hash: 862sIulDdHmF0vBU1s2j2_a_CwkxursrL0pIrMDzzOg 11 | id: adminimal_theme_login 12 | theme: adminimal_theme 13 | region: content 14 | weight: 10 15 | provider: null 16 | plugin: user_login_block 17 | settings: 18 | id: user_login_block 19 | label: 'User login' 20 | provider: user 21 | label_display: visible 22 | visibility: { } 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.seven_primary_local_tasks.yml: -------------------------------------------------------------------------------- 1 | uuid: 5790a1aa-9188-4c4b-ae36-6f22cec4ca42 2 | langcode: en 3 | status: true 4 | dependencies: 5 | theme: 6 | - seven 7 | _core: 8 | default_config_hash: ddy1OsBbWxjwEI8VL1viD4I69qcLHOkul4BxbTqLBTs 9 | id: seven_primary_local_tasks 10 | theme: seven 11 | region: header 12 | weight: 0 13 | provider: null 14 | plugin: local_tasks_block 15 | settings: 16 | id: local_tasks_block 17 | label: 'Primary tabs' 18 | provider: core 19 | label_display: '0' 20 | primary: true 21 | secondary: false 22 | visibility: { } 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/field.storage.node.field_tags.yml: -------------------------------------------------------------------------------- 1 | uuid: 2fcfa70c-7ece-4a7f-8640-195cf8487fdb 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - node 7 | - taxonomy 8 | _core: 9 | default_config_hash: WpOE_bs8Bs_HY2ns7n2r__de-xno0-Bxkqep5-MsHAs 10 | id: node.field_tags 11 | field_name: field_tags 12 | entity_type: node 13 | type: entity_reference 14 | settings: 15 | target_type: taxonomy_term 16 | module: core 17 | locked: false 18 | cardinality: -1 19 | translatable: true 20 | indexes: { } 21 | persist_with_no_fields: false 22 | custom_storage: false 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/user.settings.yml: -------------------------------------------------------------------------------- 1 | anonymous: Anonymous 2 | verify_mail: true 3 | notify: 4 | cancel_confirm: true 5 | password_reset: true 6 | status_activated: true 7 | status_blocked: false 8 | status_canceled: false 9 | register_admin_created: true 10 | register_no_approval_required: true 11 | register_pending_approval: true 12 | register: visitors_admin_approval 13 | cancel_method: user_cancel_block 14 | password_reset_timeout: 86400 15 | password_strength: true 16 | langcode: en 17 | _core: 18 | default_config_hash: r4kwhOM0IWXVMUZDz744Yc16EOh37ZhYbA8kGOhSmLk 19 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.adminimal_theme_content.yml: -------------------------------------------------------------------------------- 1 | uuid: 35ee5ac3-5294-4028-88f6-47b44ed52f43 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - system 7 | theme: 8 | - adminimal_theme 9 | _core: 10 | default_config_hash: 80N66GdzEvwqi1m-_GZ-ulkk8AJG9beoXcZ4-pMVKjI 11 | id: adminimal_theme_content 12 | theme: adminimal_theme 13 | region: content 14 | weight: 0 15 | provider: null 16 | plugin: system_main_block 17 | settings: 18 | id: system_main_block 19 | label: 'Main page content' 20 | provider: system 21 | label_display: '0' 22 | visibility: { } 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.seven_secondary_local_tasks.yml: -------------------------------------------------------------------------------- 1 | uuid: de9d62e4-d191-46b6-8349-a10a35fb3c3d 2 | langcode: en 3 | status: true 4 | dependencies: 5 | theme: 6 | - seven 7 | _core: 8 | default_config_hash: QeZBeCilQfeET3GeW6ZtJkEiwROADTZktFgKWwPieD4 9 | id: seven_secondary_local_tasks 10 | theme: seven 11 | region: pre_content 12 | weight: 0 13 | provider: null 14 | plugin: local_tasks_block 15 | settings: 16 | id: local_tasks_block 17 | label: 'Secondary tabs' 18 | provider: core 19 | label_display: '0' 20 | primary: false 21 | secondary: true 22 | visibility: { } 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.adminimal_theme_breadcrumbs.yml: -------------------------------------------------------------------------------- 1 | uuid: c9cdd028-be0c-4750-8fa1-374ab97341d8 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - system 7 | theme: 8 | - adminimal_theme 9 | _core: 10 | default_config_hash: 8by5KRsb7ZpmjHj0ms1d7xAG_xH54AWsOX6spDLJ59U 11 | id: adminimal_theme_breadcrumbs 12 | theme: adminimal_theme 13 | region: breadcrumb 14 | weight: 0 15 | provider: null 16 | plugin: system_breadcrumb_block 17 | settings: 18 | id: system_breadcrumb_block 19 | label: Breadcrumbs 20 | provider: system 21 | label_display: '0' 22 | visibility: { } 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.adminimal_theme_messages.yml: -------------------------------------------------------------------------------- 1 | uuid: d93c14e4-eeab-4d28-9d25-3532a618a84b 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - system 7 | theme: 8 | - adminimal_theme 9 | _core: 10 | default_config_hash: YqKTtloWJ8FjLtfVNfrHaK6kVgxT67lC1cJ3j6i6WLo 11 | id: adminimal_theme_messages 12 | theme: adminimal_theme 13 | region: highlighted 14 | weight: 0 15 | provider: null 16 | plugin: system_messages_block 17 | settings: 18 | id: system_messages_block 19 | label: 'Status messages' 20 | provider: system 21 | label_display: '0' 22 | visibility: { } 23 | -------------------------------------------------------------------------------- /web/modules/custom/migrate_posts/config/install/core.entity_view_display.node.post.teaser.yml: -------------------------------------------------------------------------------- 1 | langcode: en 2 | status: true 3 | dependencies: 4 | config: 5 | - core.entity_view_mode.node.teaser 6 | - field.field.node.post.body 7 | - node.type.post 8 | module: 9 | - text 10 | - user 11 | id: node.post.teaser 12 | targetEntityType: node 13 | bundle: post 14 | mode: teaser 15 | content: 16 | body: 17 | label: hidden 18 | type: text_summary_or_trimmed 19 | weight: 101 20 | settings: 21 | trim_length: 600 22 | third_party_settings: { } 23 | links: 24 | weight: 100 25 | hidden: { } 26 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.adminimal_theme_primary_local_tasks.yml: -------------------------------------------------------------------------------- 1 | uuid: 838ce98f-d1ed-4de5-aa7a-82c77e183311 2 | langcode: en 3 | status: true 4 | dependencies: 5 | theme: 6 | - adminimal_theme 7 | _core: 8 | default_config_hash: CyX_aDKAka2_eihevNLscCHDYrzDgIqwWzFVEFRKIww 9 | id: adminimal_theme_primary_local_tasks 10 | theme: adminimal_theme 11 | region: header 12 | weight: 0 13 | provider: null 14 | plugin: local_tasks_block 15 | settings: 16 | id: local_tasks_block 17 | label: 'Primary tabs' 18 | provider: core 19 | label_display: '0' 20 | primary: true 21 | secondary: false 22 | visibility: { } 23 | -------------------------------------------------------------------------------- /web/index.php: -------------------------------------------------------------------------------- 1 | handle($request); 20 | $response->send(); 21 | 22 | $kernel->terminate($request, $response); 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/field.field.node.page.body.yml: -------------------------------------------------------------------------------- 1 | uuid: 587513b7-e227-42f5-ab17-376242468a86 2 | langcode: en 3 | status: true 4 | dependencies: 5 | config: 6 | - field.storage.node.body 7 | - node.type.page 8 | module: 9 | - text 10 | _core: 11 | default_config_hash: rUop-8b6hvxxDYbv-KobTfNIBNbPY9qOPl8f6kBNSpw 12 | id: node.page.body 13 | field_name: body 14 | entity_type: node 15 | bundle: page 16 | label: Body 17 | description: '' 18 | required: false 19 | translatable: true 20 | default_value: { } 21 | default_value_callback: '' 22 | settings: 23 | display_summary: true 24 | field_type: text_with_summary 25 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/field.field.node.post.body.yml: -------------------------------------------------------------------------------- 1 | uuid: 5cf9ec79-9647-4b65-90f9-9149c3c808bd 2 | langcode: en 3 | status: true 4 | dependencies: 5 | config: 6 | - field.storage.node.body 7 | - node.type.post 8 | module: 9 | - text 10 | _core: 11 | default_config_hash: TcbB1i2ejq5W1rhhxA5NavlWslcj1laVfYY95hsqdls 12 | id: node.post.body 13 | field_name: body 14 | entity_type: node 15 | bundle: post 16 | label: Body 17 | description: '' 18 | required: false 19 | translatable: true 20 | default_value: { } 21 | default_value_callback: '' 22 | settings: 23 | display_summary: true 24 | field_type: text_with_summary 25 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.adminimal_theme_secondary_local_tasks.yml: -------------------------------------------------------------------------------- 1 | uuid: ca9afbfe-d096-4ed0-8922-2bbf55c7d899 2 | langcode: en 3 | status: true 4 | dependencies: 5 | theme: 6 | - adminimal_theme 7 | _core: 8 | default_config_hash: DJ7Om1C2xWr2GI8CjZaZtyWpP-0S3hRR3oROZl1oesc 9 | id: adminimal_theme_secondary_local_tasks 10 | theme: adminimal_theme 11 | region: pre_content 12 | weight: 0 13 | provider: null 14 | plugin: local_tasks_block 15 | settings: 16 | id: local_tasks_block 17 | label: 'Secondary tabs' 18 | provider: core 19 | label_display: '0' 20 | primary: false 21 | secondary: true 22 | visibility: { } 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.base_field_override.node.page.promote.yml: -------------------------------------------------------------------------------- 1 | uuid: 6b0417de-f492-4b75-afa8-069f0103a7db 2 | langcode: en 3 | status: true 4 | dependencies: 5 | config: 6 | - node.type.page 7 | _core: 8 | default_config_hash: fPUEnm4T5zfZRr3ttDUqq7yCDd2uW3clWD-pvos4tlQ 9 | id: node.page.promote 10 | field_name: promote 11 | entity_type: node 12 | bundle: page 13 | label: 'Promoted to front page' 14 | description: '' 15 | required: false 16 | translatable: false 17 | default_value: 18 | - 19 | value: 0 20 | default_value_callback: '' 21 | settings: 22 | on_label: 'On' 23 | off_label: 'Off' 24 | field_type: boolean 25 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.base_field_override.node.post.promote.yml: -------------------------------------------------------------------------------- 1 | uuid: 3d018da1-d253-435a-b122-7d797184d7ca 2 | langcode: en 3 | status: true 4 | dependencies: 5 | config: 6 | - node.type.post 7 | _core: 8 | default_config_hash: 7untcjSww_yZYqkYKt6i3Ol2R0qLJOF_7CmUCrwvCN8 9 | id: node.post.promote 10 | field_name: promote 11 | entity_type: node 12 | bundle: post 13 | label: 'Promoted to front page' 14 | description: '' 15 | required: false 16 | translatable: true 17 | default_value: 18 | - 19 | value: 0 20 | default_value_callback: '' 21 | settings: 22 | on_label: 'On' 23 | off_label: 'Off' 24 | field_type: boolean 25 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/field.field.node.article.body.yml: -------------------------------------------------------------------------------- 1 | uuid: ea60d3d7-864b-4d2f-94c8-f6a8f009dd34 2 | langcode: en 3 | status: true 4 | dependencies: 5 | config: 6 | - field.storage.node.body 7 | - node.type.article 8 | module: 9 | - text 10 | _core: 11 | default_config_hash: Ay3b2hq42cpQTFB_lNu8S2ZxuVIY6-dlBsc7vLeJ-YY 12 | id: node.article.body 13 | field_name: body 14 | entity_type: node 15 | bundle: article 16 | label: Body 17 | description: '' 18 | required: false 19 | translatable: true 20 | default_value: { } 21 | default_value_callback: '' 22 | settings: 23 | display_summary: true 24 | field_type: text_with_summary 25 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/system.performance.yml: -------------------------------------------------------------------------------- 1 | cache: 2 | page: 3 | max_age: 0 4 | css: 5 | preprocess: true 6 | gzip: true 7 | fast_404: 8 | enabled: true 9 | paths: '/\.(?:txt|png|gif|jpe?g|css|js|ico|swf|flv|cgi|bat|pl|dll|exe|asp)$/i' 10 | exclude_paths: '/\/(?:styles|imagecache)\//' 11 | html: '404 Not Found

Not Found

The requested URL "@path" was not found on this server.

' 12 | js: 13 | preprocess: true 14 | gzip: true 15 | stale_file_threshold: 2592000 16 | _core: 17 | default_config_hash: b2cssrj-lOmATIbdehfCqfCFgVR0qCdxxWhwqa2KBVQ 18 | -------------------------------------------------------------------------------- /web/update.php: -------------------------------------------------------------------------------- 1 | handle($request); 20 | $response->send(); 21 | 22 | $kernel->terminate($request, $response); 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.bartik_tools.yml: -------------------------------------------------------------------------------- 1 | uuid: 5f997e76-e052-415e-977c-a886513cb691 2 | langcode: en 3 | status: true 4 | dependencies: 5 | config: 6 | - system.menu.tools 7 | module: 8 | - system 9 | theme: 10 | - bartik 11 | _core: 12 | default_config_hash: NeHSoqm4XFqA7_0bDmR429ZZQt3LRbZMNRJTMsFyOfI 13 | id: bartik_tools 14 | theme: bartik 15 | region: sidebar_first 16 | weight: 0 17 | provider: null 18 | plugin: 'system_menu_block:tools' 19 | settings: 20 | id: 'system_menu_block:tools' 21 | label: Tools 22 | provider: system 23 | label_display: visible 24 | level: 1 25 | depth: 0 26 | visibility: { } 27 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.bartik_branding.yml: -------------------------------------------------------------------------------- 1 | uuid: 19fc9a8a-bd02-4561-9080-cc7d36414a60 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - system 7 | theme: 8 | - bartik 9 | _core: 10 | default_config_hash: NDwadleLD3YVSbDUaakxyYZyINYtkFtOVGShfq4kWy8 11 | id: bartik_branding 12 | theme: bartik 13 | region: header 14 | weight: 0 15 | provider: null 16 | plugin: system_branding_block 17 | settings: 18 | id: system_branding_block 19 | label: 'Site branding' 20 | provider: system 21 | label_display: '0' 22 | use_site_logo: true 23 | use_site_name: true 24 | use_site_slogan: true 25 | visibility: { } 26 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/block.block.bartik_footer.yml: -------------------------------------------------------------------------------- 1 | uuid: 6c3de7f7-b575-4626-b83f-af6b33570725 2 | langcode: en 3 | status: true 4 | dependencies: 5 | config: 6 | - system.menu.footer 7 | module: 8 | - system 9 | theme: 10 | - bartik 11 | _core: 12 | default_config_hash: kkISXE1LT2FJEoYnqCrCpeFB-2pmGmMxMklVk7rQcfg 13 | id: bartik_footer 14 | theme: bartik 15 | region: footer_fifth 16 | weight: 0 17 | provider: null 18 | plugin: 'system_menu_block:footer' 19 | settings: 20 | id: 'system_menu_block:footer' 21 | label: 'Footer menu' 22 | provider: system 23 | label_display: '0' 24 | level: 1 25 | depth: 0 26 | visibility: { } 27 | -------------------------------------------------------------------------------- /web/modules/custom/migrate_menu/config/install/migrate_plus.migration_group.liip.yml: -------------------------------------------------------------------------------- 1 | # A "migration group" is - surprise! - a group of migrations. It is used to 2 | # group migrations for display by our tools, and to perform operations on a 3 | # specific set of migrations. It can also be used to hold any configuration 4 | # common to those migrations, so it doesn't have to be duplicated in each one. 5 | 6 | # The machine name of the group, by which it is referenced in individual 7 | # migrations. 8 | id: liip 9 | 10 | # A human-friendly label for the group. 11 | label: Liip CSV Imports 12 | 13 | # More information about the group. 14 | description: All custom imports of Liip AG -------------------------------------------------------------------------------- /web/modules/custom/migrate_menu/src/Plugin/migrate/process/generatePath.php: -------------------------------------------------------------------------------- 1 | 3 | Require all denied 4 | 5 | 6 | # Deny all requests from Apache 2.0-2.2. 7 | 8 | Deny from all 9 | 10 | # Turn off all options we don't need. 11 | Options -Indexes -ExecCGI -Includes -MultiViews 12 | 13 | # Set the catch-all handler to prevent scripts from being executed. 14 | SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006 15 | 16 | # Override the handler again if we're run later in the evaluation list. 17 | SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003 18 | 19 | 20 | # If we know how to do it safely, disable the PHP engine entirely. 21 | 22 | php_flag engine off 23 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/migrate_plus.migration.post.yml: -------------------------------------------------------------------------------- 1 | uuid: 566e4036-c0d0-400c-bcc2-713001c4ebde 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | id: post 6 | migration_tags: null 7 | migration_group: liip 8 | label: 'Import posts' 9 | source: 10 | plugin: json_source 11 | path: 'http://jsonplaceholder.typicode.com/posts' 12 | headers: 13 | Accept: application/json 14 | identifier: id 15 | identifierDepth: 0 16 | fields: 17 | - userId 18 | - id 19 | - title 20 | - body 21 | process: 22 | type: 23 | plugin: default_value 24 | default_value: post 25 | title: title 26 | uid: 27 | plugin: default_value 28 | default_value: 1 29 | body/value: body 30 | body/summary: excerpt 31 | destination: 32 | plugin: 'entity:node' 33 | migration_dependencies: { } 34 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/field.storage.node.field_image.yml: -------------------------------------------------------------------------------- 1 | uuid: 8c6ea5fa-8d12-4254-86b1-e8e0f7f174a9 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - file 7 | - image 8 | - node 9 | _core: 10 | default_config_hash: SkXIPKZYiIMMtnBmfnxk58RYfbZ8cHSw5NZPY_JByME 11 | id: node.field_image 12 | field_name: field_image 13 | entity_type: node 14 | type: image 15 | settings: 16 | uri_scheme: public 17 | default_image: 18 | uuid: null 19 | alt: '' 20 | title: '' 21 | width: null 22 | height: null 23 | target_type: file 24 | display_field: false 25 | display_default: false 26 | module: image 27 | locked: false 28 | cardinality: 1 29 | translatable: true 30 | indexes: 31 | target_id: 32 | - target_id 33 | persist_with_no_fields: false 34 | custom_storage: false 35 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/field.storage.user.user_picture.yml: -------------------------------------------------------------------------------- 1 | uuid: af41b7be-3c04-4d96-9356-8d628095f446 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - file 7 | - image 8 | - user 9 | _core: 10 | default_config_hash: 6k-VBFilDLuzgSOT-77CFgHFlcd5D-kqRixtH89EShU 11 | id: user.user_picture 12 | field_name: user_picture 13 | entity_type: user 14 | type: image 15 | settings: 16 | uri_scheme: public 17 | default_image: 18 | uuid: null 19 | alt: '' 20 | title: '' 21 | width: null 22 | height: null 23 | target_type: file 24 | display_field: false 25 | display_default: false 26 | module: image 27 | locked: false 28 | cardinality: 1 29 | translatable: true 30 | indexes: 31 | target_id: 32 | - target_id 33 | persist_with_no_fields: false 34 | custom_storage: false 35 | -------------------------------------------------------------------------------- /web/modules/custom/migrate_json_hackday/config/install/migrate_plus.migration.post.yml: -------------------------------------------------------------------------------- 1 | # Migration configuration 2 | id: post 3 | label: Import posts 4 | migration_group: liip 5 | source: 6 | plugin: json_source 7 | path: 'http://jsonplaceholder.typicode.com/posts' 8 | headers: 9 | Accept: application/json 10 | identifier: id 11 | identifierDepth: 0 12 | #track_changes: true 13 | fields: 14 | - userId 15 | - id 16 | - title 17 | - body 18 | destination: 19 | plugin: 'entity:node' 20 | process: 21 | type: 22 | plugin: default_value 23 | default_value: post 24 | title: title 25 | uid: 26 | plugin: default_value 27 | default_value: 1 28 | 'body/value': body 29 | 'body/summary': excerpt 30 | 31 | template: null 32 | 33 | 34 | #Absolutely necessary if you dont want an error 35 | migration_dependencies: {} -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.entity_form_display.user.user.default.yml: -------------------------------------------------------------------------------- 1 | uuid: 847d3b39-0a43-4412-9572-f0a369e3924b 2 | langcode: en 3 | status: true 4 | dependencies: 5 | config: 6 | - field.field.user.user.user_picture 7 | - image.style.thumbnail 8 | module: 9 | - image 10 | - user 11 | _core: 12 | default_config_hash: LLAieeozVsoZDb-2PbFxRJpQqnKmpR7-4OoRJnduz-U 13 | id: user.user.default 14 | targetEntityType: user 15 | bundle: user 16 | mode: default 17 | content: 18 | account: 19 | weight: -10 20 | contact: 21 | weight: 5 22 | language: 23 | weight: 0 24 | timezone: 25 | weight: 6 26 | user_picture: 27 | type: image_image 28 | settings: 29 | progress_indicator: throbber 30 | preview_image_style: thumbnail 31 | third_party_settings: { } 32 | weight: -1 33 | hidden: { } 34 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.entity_form_display.comment.comment.default.yml: -------------------------------------------------------------------------------- 1 | uuid: 45ff35ea-8b55-48a8-9846-ab32bd5b9092 2 | langcode: en 3 | status: true 4 | dependencies: 5 | config: 6 | - comment.type.comment 7 | - field.field.comment.comment.comment_body 8 | module: 9 | - text 10 | _core: 11 | default_config_hash: ooVjelXSXbiQtp-hYb7LS44vR5UO-Kqu4vf484ggR8w 12 | id: comment.comment.default 13 | targetEntityType: comment 14 | bundle: comment 15 | mode: default 16 | content: 17 | author: 18 | weight: -2 19 | comment_body: 20 | type: text_textarea 21 | weight: 11 22 | settings: 23 | rows: 5 24 | placeholder: '' 25 | third_party_settings: { } 26 | subject: 27 | type: string_textfield 28 | weight: 10 29 | settings: 30 | size: 60 31 | placeholder: '' 32 | third_party_settings: { } 33 | hidden: { } 34 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/field.field.node.post.comment.yml: -------------------------------------------------------------------------------- 1 | uuid: 698c01c4-ba2e-4d05-816c-028d1aa13f9e 2 | langcode: en 3 | status: true 4 | dependencies: 5 | config: 6 | - field.storage.node.comment 7 | - node.type.post 8 | module: 9 | - comment 10 | _core: 11 | default_config_hash: jsAftD1IHusNdI2ko2JNpv2fX3p-X1APsL-M-ru8pJI 12 | id: node.post.comment 13 | field_name: comment 14 | entity_type: node 15 | bundle: post 16 | label: Comments 17 | description: '' 18 | required: false 19 | translatable: true 20 | default_value: 21 | - 22 | status: 2 23 | cid: 0 24 | last_comment_timestamp: 0 25 | last_comment_name: null 26 | last_comment_uid: 0 27 | comment_count: 0 28 | default_value_callback: '' 29 | settings: 30 | default_mode: 0 31 | per_page: 50 32 | anonymous: 0 33 | form_location: true 34 | preview: 0 35 | field_type: comment 36 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.entity_form_display.block_content.basic.default.yml: -------------------------------------------------------------------------------- 1 | uuid: 5bff1139-917a-4054-8a91-4ff3238b5943 2 | langcode: en 3 | status: true 4 | dependencies: 5 | config: 6 | - block_content.type.basic 7 | - field.field.block_content.basic.body 8 | module: 9 | - text 10 | _core: 11 | default_config_hash: kv6gwb6PJ8DcMSj5kgsd52qCIHl1xkxBDL5_AMm-g8k 12 | id: block_content.basic.default 13 | targetEntityType: block_content 14 | bundle: basic 15 | mode: default 16 | content: 17 | body: 18 | type: text_textarea_with_summary 19 | weight: -4 20 | settings: 21 | rows: 9 22 | summary_rows: 3 23 | placeholder: '' 24 | third_party_settings: { } 25 | info: 26 | type: string_textfield 27 | weight: -5 28 | settings: 29 | size: 60 30 | placeholder: '' 31 | third_party_settings: { } 32 | hidden: { } 33 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/core.entity_view_display.node.post.default.yml: -------------------------------------------------------------------------------- 1 | uuid: a4a2ff0c-4244-43b7-ae26-98d073896fe8 2 | langcode: en 3 | status: true 4 | dependencies: 5 | config: 6 | - field.field.node.post.body 7 | - field.field.node.post.comment 8 | - node.type.post 9 | module: 10 | - comment 11 | - text 12 | - user 13 | _core: 14 | default_config_hash: muKXalZFkL_a89nXqb-iAT4OvImwcsgv_0ZWc9CFE1Q 15 | id: node.post.default 16 | targetEntityType: node 17 | bundle: post 18 | mode: default 19 | content: 20 | body: 21 | label: hidden 22 | type: text_default 23 | weight: 101 24 | settings: { } 25 | third_party_settings: { } 26 | comment: 27 | weight: 102 28 | label: above 29 | settings: 30 | pager_id: 0 31 | third_party_settings: { } 32 | type: comment_default 33 | links: 34 | weight: 100 35 | hidden: { } 36 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/field.field.node.article.comment.yml: -------------------------------------------------------------------------------- 1 | uuid: fb597de4-7871-45fa-80a6-9bf1ece40d0c 2 | langcode: en 3 | status: true 4 | dependencies: 5 | config: 6 | - field.storage.node.comment 7 | - node.type.article 8 | module: 9 | - comment 10 | _core: 11 | default_config_hash: szSOp-8eNsMcuh8usDre1x76RhDKaPhNUuwzRX5cgv4 12 | id: node.article.comment 13 | field_name: comment 14 | entity_type: node 15 | bundle: article 16 | label: Comments 17 | description: '' 18 | required: true 19 | translatable: true 20 | default_value: 21 | - 22 | status: 2 23 | cid: 0 24 | last_comment_name: null 25 | last_comment_timestamp: 0 26 | last_comment_uid: 0 27 | comment_count: 0 28 | default_value_callback: '' 29 | settings: 30 | default_mode: 1 31 | per_page: 50 32 | form_location: true 33 | anonymous: 0 34 | preview: 1 35 | field_type: comment 36 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/field.field.node.article.field_tags.yml: -------------------------------------------------------------------------------- 1 | uuid: 5efcccf9-87e3-4873-a83d-bfc2ab558d4c 2 | langcode: en 3 | status: true 4 | dependencies: 5 | config: 6 | - field.storage.node.field_tags 7 | - node.type.article 8 | - taxonomy.vocabulary.tags 9 | _core: 10 | default_config_hash: QdUgf_beeoaPiyKorFv0q1fcJpWH_uZTqe_xoVJacrw 11 | id: node.article.field_tags 12 | field_name: field_tags 13 | entity_type: node 14 | bundle: article 15 | label: Tags 16 | description: 'Enter a comma-separated list. For example: Amsterdam, Mexico City, "Cleveland, Ohio"' 17 | required: false 18 | translatable: true 19 | default_value: { } 20 | default_value_callback: '' 21 | settings: 22 | handler: 'default:taxonomy_term' 23 | handler_settings: 24 | target_bundles: 25 | tags: tags 26 | sort: 27 | field: _none 28 | auto_create: true 29 | field_type: entity_reference 30 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/migrate_plus.migration.page_node.yml: -------------------------------------------------------------------------------- 1 | uuid: cb5929d5-d982-4ca9-96bc-5134c21e84b3 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | id: page_node 6 | migration_tags: null 7 | migration_group: liip 8 | label: 'Dummy pages' 9 | source: 10 | plugin: page_node 11 | path: 'public://csv/navigation_small.csv' 12 | header_row_count: 1 13 | keys: 14 | - ID 15 | process: 16 | type: 17 | plugin: default_value 18 | default_value: page 19 | title: name 20 | uid: 21 | plugin: default_value 22 | default_value: 1 23 | sticky: 24 | plugin: default_value 25 | default_value: 0 26 | status: 27 | plugin: default_value 28 | default_value: 1 29 | promote: 30 | plugin: default_value 31 | default_value: 0 32 | body/value: body 33 | body/summary: excerpt 34 | destination: 35 | plugin: 'entity:node' 36 | migration_dependencies: { } 37 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/filter.format.full_html.yml: -------------------------------------------------------------------------------- 1 | uuid: ee0b1ece-9cf9-4572-8130-c6b911a4f839 2 | langcode: en 3 | status: true 4 | dependencies: 5 | module: 6 | - editor 7 | _core: 8 | default_config_hash: hewPmBgni9jlDK_IjLxUx1HsTbinK-hdl0lOwjbteIY 9 | name: 'Full HTML' 10 | format: full_html 11 | weight: 1 12 | filters: 13 | filter_align: 14 | id: filter_align 15 | provider: filter 16 | status: true 17 | weight: 8 18 | settings: { } 19 | filter_caption: 20 | id: filter_caption 21 | provider: filter 22 | status: true 23 | weight: 9 24 | settings: { } 25 | filter_htmlcorrector: 26 | id: filter_htmlcorrector 27 | provider: filter 28 | status: true 29 | weight: 10 30 | settings: { } 31 | editor_file_reference: 32 | id: editor_file_reference 33 | provider: editor 34 | status: true 35 | weight: 11 36 | settings: { } 37 | -------------------------------------------------------------------------------- /web/sites/default/config_migrate/sync/filter.format.restricted_html.yml: -------------------------------------------------------------------------------- 1 | uuid: c8efcb4a-8d77-4582-b4dd-a6a57ccd6f0e 2 | langcode: en 3 | status: true 4 | dependencies: { } 5 | _core: 6 | default_config_hash: KUjJ8Ti_ZJSlhGM88E_mhJP-8mmQRNUB6RFof615Kt0 7 | name: 'Restricted HTML' 8 | format: restricted_html 9 | weight: 0 10 | filters: 11 | filter_html: 12 | id: filter_html 13 | provider: filter 14 | status: true 15 | weight: -10 16 | settings: 17 | allowed_html: '