From f5f22d983ec60c31aab0c63a03b6f2552b7bcd3f Mon Sep 17 00:00:00 2001 From: Stuart Clark Date: Mon, 11 Apr 2022 05:52:00 +0000 Subject: [PATCH 1/5] feat(#25): update gitpod and example --- .gitpod.yml | 72 ++++++++++++++++++++++++- .gitpod/Dockerfile | 16 ++++++ .gitpod/scripts/ddev-download-images.sh | 7 +++ .gitpod/scripts/ddev-setup.sh | 9 ++++ .gitpod/scripts/drupal-setup.sh | 7 +++ .gitpod/scripts/nuxt-setup.sh | 11 ++++ example/README.md | 8 +++ example/{ => nuxt}/nuxt.config.js | 0 example/{ => nuxt}/package.json | 0 example/{ => nuxt}/pages/index.vue | 0 10 files changed, 129 insertions(+), 1 deletion(-) create mode 100644 .gitpod/Dockerfile create mode 100755 .gitpod/scripts/ddev-download-images.sh create mode 100755 .gitpod/scripts/ddev-setup.sh create mode 100755 .gitpod/scripts/drupal-setup.sh create mode 100755 .gitpod/scripts/nuxt-setup.sh create mode 100644 example/README.md rename example/{ => nuxt}/nuxt.config.js (100%) rename example/{ => nuxt}/package.json (100%) rename example/{ => nuxt}/pages/index.vue (100%) diff --git a/.gitpod.yml b/.gitpod.yml index 5f7675c..1b0fef3 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,4 +1,74 @@ +image: + file: .gitpod/Dockerfile + +tasks: + - init: | + # Installing DDev and Drupal backend. + .gitpod/scripts/ddev-download-images.sh + # .gitpod/scripts/ddev-setup.sh + # .gitpod/scripts/drupal-setup.sh + # Installing Nuxt/Druxt frontend. + # .gitpod/scripts/nuxt-setup.sh + # Build module + # yarn && yarn build + command: | + # .gitpod/scripts/ddev-setup.sh + # .gitpod/scripts/nuxt-setup.sh + # cd $GITPOD_REPO_ROOT/example/nuxt && NUXT_TELEMETRY_DISABLED=1 yarn dev + +# VScode xdebug extension vscode: extensions: + - dbaeumer.vscode-eslint + - editorconfig.editorconfig + - felixfbecker.php-debug - octref.vetur - - EditorConfig.EditorConfig + +ports: + # Drupal + - port: 8080 + onOpen: ignore + visibility: public + + # Nuxt/Druxt + - port: 3000 + onOpen: ignore + visibility: public + + # Nuxt/Druxt + - port: 3003 + onOpen: ignore + visibility: public + + # Currently un-notified and unsupported mailhog http port + - port: 8025 + onOpen: ignore + # Currently un-notified and unsupported mailhog https port + - port: 8026 + onOpen: ignore + # Currently un-notified and unsupported phpmyadmin http port + - port: 8036 + onOpen: ignore + # Currently un-notified and unsupported phpmyadmin https port + - port: 8037 + onOpen: ignore + # router http port that we're ignoring. + - port: 8888 + onOpen: ignore + # router https port that we're ignoring. + - port: 8889 + onOpen: ignore + # xdebug port + - port: 9000 + onOpen: ignore + +github: + prebuilds: + master: true + branches: true + pullRequests: true + pullRequestsFromForks: true + addCheck: true + addComment: false + addBadge: true + addLabel: true diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile new file mode 100644 index 0000000..ae79852 --- /dev/null +++ b/.gitpod/Dockerfile @@ -0,0 +1,16 @@ +FROM gitpod/workspace-full +SHELL ["/bin/bash", "-c"] + +RUN sudo apt-get -qq update + +# Install ddev +RUN brew update && brew install drud/ddev/ddev + +# Install latest composer +RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" +RUN php -r "if (hash_file('sha384', 'composer-setup.php') === '906a84df04cea2aa72f40b5f787e49f22d4c2f19492ac310e8cba5b96ac8b64115ac402c8cd292b8a03482574915d1a8') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" +RUN sudo php composer-setup.php --install-dir /usr/bin --filename composer +RUN php -r "unlink('composer-setup.php');" + +# Install latest npm +RUN npm install -g npm diff --git a/.gitpod/scripts/ddev-download-images.sh b/.gitpod/scripts/ddev-download-images.sh new file mode 100755 index 0000000..52f005b --- /dev/null +++ b/.gitpod/scripts/ddev-download-images.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash + +ddev version | awk '/(drud|phpmyadmin)/ {print $2;}' >/tmp/images.txt +while IFS= read -r item +do + docker pull "$item" +done < <(cat /tmp/images.txt) diff --git a/.gitpod/scripts/ddev-setup.sh b/.gitpod/scripts/ddev-setup.sh new file mode 100755 index 0000000..4604be8 --- /dev/null +++ b/.gitpod/scripts/ddev-setup.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +DRUPAL_DIR="${GITPOD_REPO_ROOT}/example/drupal" + +# Misc housekeeping before start +ddev config global --instrumentation-opt-in=true + +# Start ddev +cd $DRUPAL_DIR && ddev start diff --git a/.gitpod/scripts/drupal-setup.sh b/.gitpod/scripts/drupal-setup.sh new file mode 100755 index 0000000..feed9a2 --- /dev/null +++ b/.gitpod/scripts/drupal-setup.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +set -eu -o pipefail + +DRUPAL_DIR="${GITPOD_REPO_ROOT}/example/drupal" + +# Set up Drupal website +cd "$DRUPAL_DIR" && ddev drupal-install diff --git a/.gitpod/scripts/nuxt-setup.sh b/.gitpod/scripts/nuxt-setup.sh new file mode 100755 index 0000000..458040e --- /dev/null +++ b/.gitpod/scripts/nuxt-setup.sh @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + +# Set up Druxt for use on gitpod + +set -eu -o pipefail + +DRUXT_DIR="${GITPOD_REPO_ROOT}/example/nuxt" + +# Set up Nuxt +cd "$DRUXT_DIR" && echo "BASE_URL=$(gp url 8080)" > .env +cd "$DRUXT_DIR" && yarn diff --git a/example/README.md b/example/README.md new file mode 100644 index 0000000..0f00375 --- /dev/null +++ b/example/README.md @@ -0,0 +1,8 @@ +# DruxtModule example + +This directory contains the Drupal and Nuxt codebases to demonstrate the DruxtModule (template) module. + +## Get started + +1. `cd drupal && ddev start && ddev drupal-install` +2. `cd ../nuxt && yarn && yarn dev` diff --git a/example/nuxt.config.js b/example/nuxt/nuxt.config.js similarity index 100% rename from example/nuxt.config.js rename to example/nuxt/nuxt.config.js diff --git a/example/package.json b/example/nuxt/package.json similarity index 100% rename from example/package.json rename to example/nuxt/package.json diff --git a/example/pages/index.vue b/example/nuxt/pages/index.vue similarity index 100% rename from example/pages/index.vue rename to example/nuxt/pages/index.vue From 6c598cc24670e2771c0e9efa85357fc3af873d03 Mon Sep 17 00:00:00 2001 From: Stuart Clark Date: Mon, 11 Apr 2022 06:09:49 +0000 Subject: [PATCH 2/5] chore(#25): update setup files --- .gitpod.yml | 16 +- .../drupal/.ddev/commands/web/drupal-install | 8 + example/drupal/.ddev/config.yaml | 207 ++++++++++++++++++ example/drupal/.gitignore | 26 +++ example/drupal/composer.json | 79 +++++++ 5 files changed, 329 insertions(+), 7 deletions(-) create mode 100755 example/drupal/.ddev/commands/web/drupal-install create mode 100644 example/drupal/.ddev/config.yaml create mode 100644 example/drupal/.gitignore create mode 100644 example/drupal/composer.json diff --git a/.gitpod.yml b/.gitpod.yml index 1b0fef3..2e88fe4 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -5,16 +5,18 @@ tasks: - init: | # Installing DDev and Drupal backend. .gitpod/scripts/ddev-download-images.sh - # .gitpod/scripts/ddev-setup.sh - # .gitpod/scripts/drupal-setup.sh + .gitpod/scripts/ddev-setup.sh + .gitpod/scripts/drupal-setup.sh + # Installing Nuxt/Druxt frontend. - # .gitpod/scripts/nuxt-setup.sh + .gitpod/scripts/nuxt-setup.sh + # Build module - # yarn && yarn build + yarn && yarn build command: | - # .gitpod/scripts/ddev-setup.sh - # .gitpod/scripts/nuxt-setup.sh - # cd $GITPOD_REPO_ROOT/example/nuxt && NUXT_TELEMETRY_DISABLED=1 yarn dev + .gitpod/scripts/ddev-setup.sh + .gitpod/scripts/nuxt-setup.sh + cd $GITPOD_REPO_ROOT/example/nuxt && NUXT_TELEMETRY_DISABLED=1 yarn dev # VScode xdebug extension vscode: diff --git a/example/drupal/.ddev/commands/web/drupal-install b/example/drupal/.ddev/commands/web/drupal-install new file mode 100755 index 0000000..c41c83a --- /dev/null +++ b/example/drupal/.ddev/commands/web/drupal-install @@ -0,0 +1,8 @@ +#!/bin/bash + +## Description: Install Drupal +## Usage: drupal-install +## Example: "ddev drupal-install" + +composer install +drush -y tome:install diff --git a/example/drupal/.ddev/config.yaml b/example/drupal/.ddev/config.yaml new file mode 100644 index 0000000..857dc06 --- /dev/null +++ b/example/drupal/.ddev/config.yaml @@ -0,0 +1,207 @@ +name: druxt-module-template +type: drupal9 +docroot: web +php_version: "8.0" +webserver_type: nginx-fpm +router_http_port: "80" +router_https_port: "443" +xdebug_enabled: false +additional_hostnames: [] +additional_fqdns: [] +database: + type: mariadb + version: "10.3" +nfs_mount_enabled: false +mutagen_enabled: false +use_dns_when_possible: true +composer_version: "2" +web_environment: [] +nodejs_version: "16" + +# Key features of ddev's config.yaml: + +# name: # Name of the project, automatically provides +# http://projectname.ddev.site and https://projectname.ddev.site + +# type: # drupal6/7/8, backdrop, typo3, wordpress, php + +# docroot: # Relative path to the directory containing index.php. + +# php_version: "7.4" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1" + +# You can explicitly specify the webimage but this +# is not recommended, as the images are often closely tied to ddev's' behavior, +# so this can break upgrades. + +# webimage: # nginx/php docker image. + +# database: +# type: # mysql, mariadb +# version: # database version, like "10.3" or "8.0" +# Note that mariadb_version or mysql_version from v1.18 and earlier +# will automatically be converted to this notation with just a "ddev config --auto" + +# router_http_port: # Port to be used for http (defaults to port 80) +# router_https_port: # Port for https (defaults to 443) + +# xdebug_enabled: false # Set to true to enable xdebug and "ddev start" or "ddev restart" +# Note that for most people the commands +# "ddev xdebug" to enable xdebug and "ddev xdebug off" to disable it work better, +# as leaving xdebug enabled all the time is a big performance hit. + +# xhprof_enabled: false # Set to true to enable xhprof and "ddev start" or "ddev restart" +# Note that for most people the commands +# "ddev xhprof" to enable xhprof and "ddev xhprof off" to disable it work better, +# as leaving xhprof enabled all the time is a big performance hit. + +# webserver_type: nginx-fpm # or apache-fpm + +# timezone: Europe/Berlin +# This is the timezone used in the containers and by PHP; +# it can be set to any valid timezone, +# see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones +# For example Europe/Dublin or MST7MDT + +# composer_root: +# Relative path to the composer root directory from the project root. This is +# the directory which contains the composer.json and where all Composer related +# commands are executed. + +# composer_version: "2" +# if composer_version:"2" it will use the most recent composer v2 +# It can also be set to "1", to get most recent composer v1 +# or "" for the default v2 created at release time. +# It can be set to any existing specific composer version. +# After first project 'ddev start' this will not be updated until it changes + +# nodejs_version: "16" +# change from the default system Node.js version to another supported version, like 12, 14, 17. +# Note that you can use 'ddev nvm' or nvm inside the web container to provide nearly any +# Node.js version, including v6, etc. + +# additional_hostnames: +# - somename +# - someothername +# would provide http and https URLs for "somename.ddev.site" +# and "someothername.ddev.site". + +# additional_fqdns: +# - example.com +# - sub1.example.com +# would provide http and https URLs for "example.com" and "sub1.example.com" +# Please take care with this because it can cause great confusion. + +# upload_dir: custom/upload/dir +# would set the destination path for ddev import-files to /custom/upload/dir + +# working_dir: +# web: /var/www/html +# db: /home +# would set the default working directory for the web and db services. +# These values specify the destination directory for ddev ssh and the +# directory in which commands passed into ddev exec are run. + +# omit_containers: [db, dba, ddev-ssh-agent] +# Currently only these containers are supported. Some containers can also be +# omitted globally in the ~/.ddev/global_config.yaml. Note that if you omit +# the "db" container, several standard features of ddev that access the +# database container will be unusable. In the global configuration it is also +# possible to omit ddev-router, but not here. + +# nfs_mount_enabled: false +# Great performance improvement but requires host configuration first. +# See https://ddev.readthedocs.io/en/stable/users/performance/#using-nfs-to-mount-the-project-into-the-container + +# mutagen_enabled: false +# Experimental performance improvement using mutagen asynchronous updates. +# See https://ddev.readthedocs.io/en/latest/users/performance/#using-mutagen + +# fail_on_hook_fail: False +# Decide whether 'ddev start' should be interrupted by a failing hook + +# host_https_port: "59002" +# The host port binding for https can be explicitly specified. It is +# dynamic unless otherwise specified. +# This is not used by most people, most people use the *router* instead +# of the localhost port. + +# host_webserver_port: "59001" +# The host port binding for the ddev-webserver can be explicitly specified. It is +# dynamic unless otherwise specified. +# This is not used by most people, most people use the *router* instead +# of the localhost port. + +# host_db_port: "59002" +# The host port binding for the ddev-dbserver can be explicitly specified. It is dynamic +# unless explicitly specified. + +# phpmyadmin_port: "8036" +# phpmyadmin_https_port: "8037" +# The PHPMyAdmin ports can be changed from the default 8036 and 8037 + +# host_phpmyadmin_port: "8036" +# The phpmyadmin (dba) port is not normally bound on the host at all, instead being routed +# through ddev-router, but it can be specified and bound. + +# mailhog_port: "8025" +# mailhog_https_port: "8026" +# The MailHog ports can be changed from the default 8025 and 8026 + +# host_mailhog_port: "8025" +# The mailhog port is not normally bound on the host at all, instead being routed +# through ddev-router, but it can be bound directly to localhost if specified here. + +# webimage_extra_packages: [php7.4-tidy, php-bcmath] +# Extra Debian packages that are needed in the webimage can be added here + +# dbimage_extra_packages: [telnet,netcat] +# Extra Debian packages that are needed in the dbimage can be added here + +# use_dns_when_possible: true +# If the host has internet access and the domain configured can +# successfully be looked up, DNS will be used for hostname resolution +# instead of editing /etc/hosts +# Defaults to true + +# project_tld: ddev.site +# The top-level domain used for project URLs +# The default "ddev.site" allows DNS lookup via a wildcard +# If you prefer you can change this to "ddev.local" to preserve +# pre-v1.9 behavior. + +# ngrok_args: --subdomain mysite --auth username:pass +# Provide extra flags to the "ngrok http" command, see +# https://ngrok.com/docs#http or run "ngrok http -h" + +# disable_settings_management: false +# If true, ddev will not create CMS-specific settings files like +# Drupal's settings.php/settings.ddev.php or TYPO3's AdditionalConfiguration.php +# In this case the user must provide all such settings. + +# You can inject environment variables into the web container with: +# web_environment: +# - SOMEENV=somevalue +# - SOMEOTHERENV=someothervalue + +# no_project_mount: false +# (Experimental) If true, ddev will not mount the project into the web container; +# the user is responsible for mounting it manually or via a script. +# This is to enable experimentation with alternate file mounting strategies. +# For advanced users only! + +# bind_all_interfaces: false +# If true, host ports will be bound on all network interfaces, +# not just the localhost interface. This means that ports +# will be available on the local network if the host firewall +# allows it. + +# Many ddev commands can be extended to run tasks before or after the +# ddev command is executed, for example "post-start", "post-import-db", +# "pre-composer", "post-composer" +# See https://ddev.readthedocs.io/en/stable/users/extending-commands/ for more +# information on the commands that can be extended and the tasks you can define +# for them. Example: +#hooks: +# post-import-db: +# - exec: drush cr +# - exec: drush updb diff --git a/example/drupal/.gitignore b/example/drupal/.gitignore new file mode 100644 index 0000000..2dca39b --- /dev/null +++ b/example/drupal/.gitignore @@ -0,0 +1,26 @@ +# Ignore directories generated by Composer +bin/ +drush/Commands/contrib/ +keys/*.key +vendor/ +web/core/ +web/modules/contrib/ +web/themes/contrib/ +web/profiles/contrib/ +web/libraries/ + +# Ignore sensitive information +web/sites/*/settings.local.php + +# Ignore Drupal's file directory +web/sites/*/files/ +!web/sites/default/files/.gitkeep + +# Ignore SimpleTest multi-site environment. +web/sites/simpletest + +# Ignore environment specific files. +.env +web/robots.txt +.editorconfig +.gitattributes diff --git a/example/drupal/composer.json b/example/drupal/composer.json new file mode 100644 index 0000000..ce4e880 --- /dev/null +++ b/example/drupal/composer.json @@ -0,0 +1,79 @@ +{ + "name": "druxt/module-template", + "description": "Drupal 9 codebase for the DruxtModule template example.", + "type": "project", + "license": "GPL-2.0-or-later", + "homepage": "https://druxtjs.org", + "support": { + "chat": "https://discord.druxtjs.org" + }, + "repositories": [ + { + "type": "composer", + "url": "https://packages.drupal.org/8" + } + ], + "require": { + "composer/installers": "2.1.0", + "drupal-tome/tome_drush": "dev-master", + "drupal/core-composer-scaffold": "9.3.9", + "drupal/core-project-message": "9.3.9", + "drupal/core-recommended": "9.3.9", + "drupal/druxt": "1.1.1", + "drupal/tome": "1.6.0", + "drush/drush": "11.0.7" + }, + "require-dev": { + "drupal/core-dev": "9.3.9" + }, + "conflict": { + "drupal/drupal": "*" + }, + "minimum-stability": "dev", + "prefer-stable": true, + "config": { + "sort-packages": true, + "allow-plugins": { + "composer/installers": true, + "drupal/core-composer-scaffold": true, + "drupal/core-project-message": true, + "dealerdirect/phpcodesniffer-composer-installer": true + } + }, + "extra": { + "drupal-scaffold": { + "locations": { + "web-root": "web/" + } + }, + "installer-paths": { + "web/core": [ + "type:drupal-core" + ], + "web/libraries/{$name}": [ + "type:drupal-library" + ], + "web/modules/contrib/{$name}": [ + "type:drupal-module" + ], + "web/profiles/contrib/{$name}": [ + "type:drupal-profile" + ], + "web/themes/contrib/{$name}": [ + "type:drupal-theme" + ], + "drush/Commands/contrib/{$name}": [ + "type:drupal-drush" + ], + "web/modules/custom/{$name}": [ + "type:drupal-custom-module" + ], + "web/profiles/custom/{$name}": [ + "type:drupal-custom-profile" + ], + "web/themes/custom/{$name}": [ + "type:drupal-custom-theme" + ] + } + } +} From 606560cdfcb7b90b2f7e5c8308ded7a9c6e88390 Mon Sep 17 00:00:00 2001 From: Stuart Clark Date: Mon, 11 Apr 2022 06:10:38 +0000 Subject: [PATCH 3/5] chore(#25): add drupal files --- example/drupal/config/sync/.htaccess | 24 + .../config/sync/automated_cron.settings.yml | 3 + .../sync/block.block.bartik_account_menu.yml | 27 + .../sync/block.block.bartik_branding.yml | 25 + .../sync/block.block.bartik_breadcrumbs.yml | 22 + .../sync/block.block.bartik_content.yml | 22 + .../config/sync/block.block.bartik_footer.yml | 27 + .../config/sync/block.block.bartik_help.yml | 22 + .../sync/block.block.bartik_local_actions.yml | 20 + .../sync/block.block.bartik_local_tasks.yml | 22 + .../sync/block.block.bartik_main_menu.yml | 27 + .../sync/block.block.bartik_messages.yml | 22 + .../sync/block.block.bartik_page_title.yml | 20 + .../sync/block.block.bartik_powered.yml | 22 + .../config/sync/block.block.bartik_search.yml | 23 + .../config/sync/block.block.bartik_tools.yml | 27 + .../sync/block.block.seven_breadcrumbs.yml | 22 + .../config/sync/block.block.seven_content.yml | 22 + .../config/sync/block.block.seven_help.yml | 22 + .../sync/block.block.seven_local_actions.yml | 20 + .../sync/block.block.seven_messages.yml | 22 + .../sync/block.block.seven_page_title.yml | 20 + .../block.block.seven_primary_local_tasks.yml | 22 + ...lock.block.seven_secondary_local_tasks.yml | 22 + .../config/sync/block_content.type.basic.yml | 10 + .../drupal/config/sync/comment.settings.yml | 3 + .../config/sync/comment.type.comment.yml | 10 + .../config/sync/contact.form.feedback.yml | 14 + .../config/sync/contact.form.personal.yml | 13 + .../drupal/config/sync/contact.settings.yml | 7 + ....base_field_override.node.page.promote.yml | 24 + .../config/sync/core.date_format.fallback.yml | 10 + .../sync/core.date_format.html_date.yml | 10 + .../sync/core.date_format.html_datetime.yml | 10 + .../sync/core.date_format.html_month.yml | 10 + .../sync/core.date_format.html_time.yml | 10 + .../sync/core.date_format.html_week.yml | 10 + .../sync/core.date_format.html_year.yml | 10 + .../core.date_format.html_yearless_date.yml | 10 + .../config/sync/core.date_format.long.yml | 10 + .../config/sync/core.date_format.medium.yml | 10 + .../config/sync/core.date_format.short.yml | 10 + ...rm_display.block_content.basic.default.yml | 35 + ...y_form_display.comment.comment.default.yml | 36 + ...tity_form_display.node.article.default.yml | 109 ++ ....entity_form_display.node.page.default.yml | 79 + ....entity_form_display.user.user.default.yml | 38 + .../core.entity_form_mode.user.register.yml | 12 + ...ew_display.block_content.basic.default.yml | 24 + ...y_view_display.comment.comment.default.yml | 27 + ...tity_view_display.node.article.default.yml | 63 + ...e.entity_view_display.node.article.rss.yml | 28 + ...ntity_view_display.node.article.teaser.yml | 55 + ....entity_view_display.node.page.default.yml | 28 + ...e.entity_view_display.node.page.teaser.yml | 30 + ....entity_view_display.user.user.compact.yml | 29 + ....entity_view_display.user.user.default.yml | 30 + ...re.entity_view_mode.block_content.full.yml | 12 + .../core.entity_view_mode.comment.full.yml | 12 + .../sync/core.entity_view_mode.node.full.yml | 12 + .../sync/core.entity_view_mode.node.rss.yml | 12 + ...ore.entity_view_mode.node.search_index.yml | 12 + ...re.entity_view_mode.node.search_result.yml | 12 + .../core.entity_view_mode.node.teaser.yml | 12 + ...re.entity_view_mode.taxonomy_term.full.yml | 12 + .../core.entity_view_mode.user.compact.yml | 12 + .../sync/core.entity_view_mode.user.full.yml | 12 + example/drupal/config/sync/core.extension.yml | 55 + .../core.menu.static_menu_link_overrides.yml | 9 + example/drupal/config/sync/dblog.settings.yml | 3 + .../config/sync/editor.editor.basic_html.yml | 55 + .../config/sync/editor.editor.full_html.yml | 63 + .../field.field.block_content.basic.body.yml | 25 + ...eld.field.comment.comment.comment_body.yml | 23 + .../sync/field.field.node.article.body.yml | 25 + .../sync/field.field.node.article.comment.yml | 35 + .../field.field.node.article.field_image.yml | 40 + .../field.field.node.article.field_tags.yml | 29 + .../sync/field.field.node.page.body.yml | 25 + .../field.field.user.user.user_picture.yml | 40 + example/drupal/config/sync/field.settings.yml | 3 + .../sync/field.storage.block_content.body.yml | 21 + .../field.storage.comment.comment_body.yml | 21 + .../config/sync/field.storage.node.body.yml | 21 + .../sync/field.storage.node.comment.yml | 22 + .../sync/field.storage.node.field_image.yml | 34 + .../sync/field.storage.node.field_tags.yml | 22 + .../sync/field.storage.user.user_picture.yml | 34 + .../drupal/config/sync/field_ui.settings.yml | 3 + example/drupal/config/sync/file.settings.yml | 8 + .../config/sync/filter.format.basic_html.yml | 45 + .../config/sync/filter.format.full_html.yml | 36 + .../config/sync/filter.format.plain_text.yml | 29 + .../sync/filter.format.restricted_html.yml | 32 + .../drupal/config/sync/filter.settings.yml | 4 + example/drupal/config/sync/image.settings.yml | 5 + .../drupal/config/sync/image.style.large.yml | 17 + .../drupal/config/sync/image.style.medium.yml | 17 + .../config/sync/image.style.thumbnail.yml | 17 + .../drupal/config/sync/image.style.wide.yml | 17 + .../drupal/config/sync/menu_ui.settings.yml | 3 + example/drupal/config/sync/node.settings.yml | 3 + .../drupal/config/sync/node.type.article.yml | 13 + example/drupal/config/sync/node.type.page.yml | 13 + .../sync/rdf.mapping.comment.comment.yml | 36 + .../config/sync/rdf.mapping.node.article.yml | 52 + .../config/sync/rdf.mapping.node.page.yml | 43 + .../sync/rdf.mapping.taxonomy_term.tags.yml | 22 + .../config/sync/rdf.mapping.user.user.yml | 17 + .../config/sync/search.page.node_search.yml | 15 + .../config/sync/search.page.user_search.yml | 14 + .../drupal/config/sync/search.settings.yml | 22 + example/drupal/config/sync/seven.settings.yml | 3 + .../config/sync/shortcut.set.default.yml | 8 + .../system.action.comment_delete_action.yml | 13 + .../system.action.comment_publish_action.yml | 13 + .../system.action.comment_save_action.yml | 13 + ...system.action.comment_unpublish_action.yml | 13 + .../sync/system.action.node_delete_action.yml | 13 + .../system.action.node_make_sticky_action.yml | 13 + ...ystem.action.node_make_unsticky_action.yml | 13 + .../system.action.node_promote_action.yml | 13 + .../system.action.node_publish_action.yml | 13 + .../sync/system.action.node_save_action.yml | 13 + .../system.action.node_unpromote_action.yml | 13 + .../system.action.node_unpublish_action.yml | 13 + ...em.action.taxonomy_term_publish_action.yml | 13 + ....action.taxonomy_term_unpublish_action.yml | 13 + ...ion.user_add_role_action.administrator.yml | 14 + ...on.user_add_role_action.content_editor.yml | 14 + .../system.action.user_block_user_action.yml | 13 + .../system.action.user_cancel_user_action.yml | 13 + ....user_remove_role_action.administrator.yml | 14 + ...user_remove_role_action.content_editor.yml | 14 + ...system.action.user_unblock_user_action.yml | 13 + .../drupal/config/sync/system.advisories.yml | 4 + example/drupal/config/sync/system.cron.yml | 6 + example/drupal/config/sync/system.date.yml | 11 + example/drupal/config/sync/system.diff.yml | 5 + example/drupal/config/sync/system.file.yml | 5 + .../drupal/config/sync/system.image.gd.yml | 3 + example/drupal/config/sync/system.image.yml | 3 + example/drupal/config/sync/system.logging.yml | 3 + example/drupal/config/sync/system.mail.yml | 4 + .../drupal/config/sync/system.maintenance.yml | 4 + .../config/sync/system.menu.account.yml | 10 + .../drupal/config/sync/system.menu.admin.yml | 10 + .../drupal/config/sync/system.menu.footer.yml | 10 + .../drupal/config/sync/system.menu.main.yml | 10 + .../drupal/config/sync/system.menu.tools.yml | 10 + .../drupal/config/sync/system.performance.yml | 17 + example/drupal/config/sync/system.rss.yml | 4 + example/drupal/config/sync/system.site.yml | 14 + .../config/sync/system.theme.global.yml | 16 + example/drupal/config/sync/system.theme.yml | 4 + .../drupal/config/sync/taxonomy.settings.yml | 5 + .../config/sync/taxonomy.vocabulary.tags.yml | 10 + example/drupal/config/sync/text.settings.yml | 3 + .../config/sync/tour.tour.block-layout.yml | 48 + .../drupal/config/sync/tour.tour.views-ui.yml | 88 + .../drupal/config/sync/update.settings.yml | 13 + example/drupal/config/sync/user.flood.yml | 7 + example/drupal/config/sync/user.mail.yml | 116 ++ .../config/sync/user.role.administrator.yml | 11 + .../config/sync/user.role.anonymous.yml | 24 + .../config/sync/user.role.authenticated.yml | 28 + .../config/sync/user.role.content_editor.yml | 48 + example/drupal/config/sync/user.settings.yml | 18 + example/drupal/config/sync/views.settings.yml | 48 + .../drupal/config/sync/views.view.archive.yml | 247 +++ .../config/sync/views.view.block_content.yml | 543 ++++++ .../drupal/config/sync/views.view.comment.yml | 1598 +++++++++++++++++ .../sync/views.view.comments_recent.yml | 270 +++ .../drupal/config/sync/views.view.content.yml | 617 +++++++ .../config/sync/views.view.content_recent.yml | 323 ++++ .../drupal/config/sync/views.view.files.yml | 1129 ++++++++++++ .../config/sync/views.view.frontpage.yml | 312 ++++ .../config/sync/views.view.glossary.yml | 473 +++++ .../config/sync/views.view.taxonomy_term.yml | 319 ++++ .../sync/views.view.user_admin_people.yml | 927 ++++++++++ .../config/sync/views.view.watchdog.yml | 712 ++++++++ .../config/sync/views.view.who_s_new.yml | 197 ++ .../config/sync/views.view.who_s_online.yml | 226 +++ example/drupal/content/.htaccess | 24 + example/drupal/content/meta/index.json | 6 + ....92a7e031-80ca-4399-a0f1-39090682ffe8.json | 41 + ....ea4269d9-ad27-4aa2-936c-47ebaf1c999a.json | 41 + ....ebfa7bc7-06a4-4954-994c-6c0a60fd7e7d.json | 68 + ....f9e9be4c-b28b-4998-b711-e7f80e0467aa.json | 58 + example/drupal/web/.csslintrc | 40 + example/drupal/web/.eslintignore | 8 + example/drupal/web/.eslintrc.json | 3 + example/drupal/web/.ht.router.php | 65 + example/drupal/web/.htaccess | 182 ++ example/drupal/web/INSTALL.txt | 3 + example/drupal/web/README.md | 75 + example/drupal/web/autoload.php | 16 + example/drupal/web/example.gitignore | 42 + example/drupal/web/index.php | 22 + example/drupal/web/modules/README.txt | 42 + example/drupal/web/profiles/README.txt | 28 + example/drupal/web/sites/README.txt | 10 + .../web/sites/default/default.services.yml | 191 ++ .../web/sites/default/default.settings.php | 771 ++++++++ example/drupal/web/sites/default/settings.php | 780 ++++++++ .../drupal/web/sites/development.services.yml | 9 + .../web/sites/example.settings.local.php | 155 ++ example/drupal/web/sites/example.sites.php | 57 + example/drupal/web/themes/README.txt | 31 + example/drupal/web/update.php | 30 + example/drupal/web/web.config | 91 + 211 files changed, 14239 insertions(+) create mode 100644 example/drupal/config/sync/.htaccess create mode 100644 example/drupal/config/sync/automated_cron.settings.yml create mode 100644 example/drupal/config/sync/block.block.bartik_account_menu.yml create mode 100644 example/drupal/config/sync/block.block.bartik_branding.yml create mode 100644 example/drupal/config/sync/block.block.bartik_breadcrumbs.yml create mode 100644 example/drupal/config/sync/block.block.bartik_content.yml create mode 100644 example/drupal/config/sync/block.block.bartik_footer.yml create mode 100644 example/drupal/config/sync/block.block.bartik_help.yml create mode 100644 example/drupal/config/sync/block.block.bartik_local_actions.yml create mode 100644 example/drupal/config/sync/block.block.bartik_local_tasks.yml create mode 100644 example/drupal/config/sync/block.block.bartik_main_menu.yml create mode 100644 example/drupal/config/sync/block.block.bartik_messages.yml create mode 100644 example/drupal/config/sync/block.block.bartik_page_title.yml create mode 100644 example/drupal/config/sync/block.block.bartik_powered.yml create mode 100644 example/drupal/config/sync/block.block.bartik_search.yml create mode 100644 example/drupal/config/sync/block.block.bartik_tools.yml create mode 100644 example/drupal/config/sync/block.block.seven_breadcrumbs.yml create mode 100644 example/drupal/config/sync/block.block.seven_content.yml create mode 100644 example/drupal/config/sync/block.block.seven_help.yml create mode 100644 example/drupal/config/sync/block.block.seven_local_actions.yml create mode 100644 example/drupal/config/sync/block.block.seven_messages.yml create mode 100644 example/drupal/config/sync/block.block.seven_page_title.yml create mode 100644 example/drupal/config/sync/block.block.seven_primary_local_tasks.yml create mode 100644 example/drupal/config/sync/block.block.seven_secondary_local_tasks.yml create mode 100644 example/drupal/config/sync/block_content.type.basic.yml create mode 100644 example/drupal/config/sync/comment.settings.yml create mode 100644 example/drupal/config/sync/comment.type.comment.yml create mode 100644 example/drupal/config/sync/contact.form.feedback.yml create mode 100644 example/drupal/config/sync/contact.form.personal.yml create mode 100644 example/drupal/config/sync/contact.settings.yml create mode 100644 example/drupal/config/sync/core.base_field_override.node.page.promote.yml create mode 100644 example/drupal/config/sync/core.date_format.fallback.yml create mode 100644 example/drupal/config/sync/core.date_format.html_date.yml create mode 100644 example/drupal/config/sync/core.date_format.html_datetime.yml create mode 100644 example/drupal/config/sync/core.date_format.html_month.yml create mode 100644 example/drupal/config/sync/core.date_format.html_time.yml create mode 100644 example/drupal/config/sync/core.date_format.html_week.yml create mode 100644 example/drupal/config/sync/core.date_format.html_year.yml create mode 100644 example/drupal/config/sync/core.date_format.html_yearless_date.yml create mode 100644 example/drupal/config/sync/core.date_format.long.yml create mode 100644 example/drupal/config/sync/core.date_format.medium.yml create mode 100644 example/drupal/config/sync/core.date_format.short.yml create mode 100644 example/drupal/config/sync/core.entity_form_display.block_content.basic.default.yml create mode 100644 example/drupal/config/sync/core.entity_form_display.comment.comment.default.yml create mode 100644 example/drupal/config/sync/core.entity_form_display.node.article.default.yml create mode 100644 example/drupal/config/sync/core.entity_form_display.node.page.default.yml create mode 100644 example/drupal/config/sync/core.entity_form_display.user.user.default.yml create mode 100644 example/drupal/config/sync/core.entity_form_mode.user.register.yml create mode 100644 example/drupal/config/sync/core.entity_view_display.block_content.basic.default.yml create mode 100644 example/drupal/config/sync/core.entity_view_display.comment.comment.default.yml create mode 100644 example/drupal/config/sync/core.entity_view_display.node.article.default.yml create mode 100644 example/drupal/config/sync/core.entity_view_display.node.article.rss.yml create mode 100644 example/drupal/config/sync/core.entity_view_display.node.article.teaser.yml create mode 100644 example/drupal/config/sync/core.entity_view_display.node.page.default.yml create mode 100644 example/drupal/config/sync/core.entity_view_display.node.page.teaser.yml create mode 100644 example/drupal/config/sync/core.entity_view_display.user.user.compact.yml create mode 100644 example/drupal/config/sync/core.entity_view_display.user.user.default.yml create mode 100644 example/drupal/config/sync/core.entity_view_mode.block_content.full.yml create mode 100644 example/drupal/config/sync/core.entity_view_mode.comment.full.yml create mode 100644 example/drupal/config/sync/core.entity_view_mode.node.full.yml create mode 100644 example/drupal/config/sync/core.entity_view_mode.node.rss.yml create mode 100644 example/drupal/config/sync/core.entity_view_mode.node.search_index.yml create mode 100644 example/drupal/config/sync/core.entity_view_mode.node.search_result.yml create mode 100644 example/drupal/config/sync/core.entity_view_mode.node.teaser.yml create mode 100644 example/drupal/config/sync/core.entity_view_mode.taxonomy_term.full.yml create mode 100644 example/drupal/config/sync/core.entity_view_mode.user.compact.yml create mode 100644 example/drupal/config/sync/core.entity_view_mode.user.full.yml create mode 100644 example/drupal/config/sync/core.extension.yml create mode 100644 example/drupal/config/sync/core.menu.static_menu_link_overrides.yml create mode 100644 example/drupal/config/sync/dblog.settings.yml create mode 100644 example/drupal/config/sync/editor.editor.basic_html.yml create mode 100644 example/drupal/config/sync/editor.editor.full_html.yml create mode 100644 example/drupal/config/sync/field.field.block_content.basic.body.yml create mode 100644 example/drupal/config/sync/field.field.comment.comment.comment_body.yml create mode 100644 example/drupal/config/sync/field.field.node.article.body.yml create mode 100644 example/drupal/config/sync/field.field.node.article.comment.yml create mode 100644 example/drupal/config/sync/field.field.node.article.field_image.yml create mode 100644 example/drupal/config/sync/field.field.node.article.field_tags.yml create mode 100644 example/drupal/config/sync/field.field.node.page.body.yml create mode 100644 example/drupal/config/sync/field.field.user.user.user_picture.yml create mode 100644 example/drupal/config/sync/field.settings.yml create mode 100644 example/drupal/config/sync/field.storage.block_content.body.yml create mode 100644 example/drupal/config/sync/field.storage.comment.comment_body.yml create mode 100644 example/drupal/config/sync/field.storage.node.body.yml create mode 100644 example/drupal/config/sync/field.storage.node.comment.yml create mode 100644 example/drupal/config/sync/field.storage.node.field_image.yml create mode 100644 example/drupal/config/sync/field.storage.node.field_tags.yml create mode 100644 example/drupal/config/sync/field.storage.user.user_picture.yml create mode 100644 example/drupal/config/sync/field_ui.settings.yml create mode 100644 example/drupal/config/sync/file.settings.yml create mode 100644 example/drupal/config/sync/filter.format.basic_html.yml create mode 100644 example/drupal/config/sync/filter.format.full_html.yml create mode 100644 example/drupal/config/sync/filter.format.plain_text.yml create mode 100644 example/drupal/config/sync/filter.format.restricted_html.yml create mode 100644 example/drupal/config/sync/filter.settings.yml create mode 100644 example/drupal/config/sync/image.settings.yml create mode 100644 example/drupal/config/sync/image.style.large.yml create mode 100644 example/drupal/config/sync/image.style.medium.yml create mode 100644 example/drupal/config/sync/image.style.thumbnail.yml create mode 100644 example/drupal/config/sync/image.style.wide.yml create mode 100644 example/drupal/config/sync/menu_ui.settings.yml create mode 100644 example/drupal/config/sync/node.settings.yml create mode 100644 example/drupal/config/sync/node.type.article.yml create mode 100644 example/drupal/config/sync/node.type.page.yml create mode 100644 example/drupal/config/sync/rdf.mapping.comment.comment.yml create mode 100644 example/drupal/config/sync/rdf.mapping.node.article.yml create mode 100644 example/drupal/config/sync/rdf.mapping.node.page.yml create mode 100644 example/drupal/config/sync/rdf.mapping.taxonomy_term.tags.yml create mode 100644 example/drupal/config/sync/rdf.mapping.user.user.yml create mode 100644 example/drupal/config/sync/search.page.node_search.yml create mode 100644 example/drupal/config/sync/search.page.user_search.yml create mode 100644 example/drupal/config/sync/search.settings.yml create mode 100644 example/drupal/config/sync/seven.settings.yml create mode 100644 example/drupal/config/sync/shortcut.set.default.yml create mode 100644 example/drupal/config/sync/system.action.comment_delete_action.yml create mode 100644 example/drupal/config/sync/system.action.comment_publish_action.yml create mode 100644 example/drupal/config/sync/system.action.comment_save_action.yml create mode 100644 example/drupal/config/sync/system.action.comment_unpublish_action.yml create mode 100644 example/drupal/config/sync/system.action.node_delete_action.yml create mode 100644 example/drupal/config/sync/system.action.node_make_sticky_action.yml create mode 100644 example/drupal/config/sync/system.action.node_make_unsticky_action.yml create mode 100644 example/drupal/config/sync/system.action.node_promote_action.yml create mode 100644 example/drupal/config/sync/system.action.node_publish_action.yml create mode 100644 example/drupal/config/sync/system.action.node_save_action.yml create mode 100644 example/drupal/config/sync/system.action.node_unpromote_action.yml create mode 100644 example/drupal/config/sync/system.action.node_unpublish_action.yml create mode 100644 example/drupal/config/sync/system.action.taxonomy_term_publish_action.yml create mode 100644 example/drupal/config/sync/system.action.taxonomy_term_unpublish_action.yml create mode 100644 example/drupal/config/sync/system.action.user_add_role_action.administrator.yml create mode 100644 example/drupal/config/sync/system.action.user_add_role_action.content_editor.yml create mode 100644 example/drupal/config/sync/system.action.user_block_user_action.yml create mode 100644 example/drupal/config/sync/system.action.user_cancel_user_action.yml create mode 100644 example/drupal/config/sync/system.action.user_remove_role_action.administrator.yml create mode 100644 example/drupal/config/sync/system.action.user_remove_role_action.content_editor.yml create mode 100644 example/drupal/config/sync/system.action.user_unblock_user_action.yml create mode 100644 example/drupal/config/sync/system.advisories.yml create mode 100644 example/drupal/config/sync/system.cron.yml create mode 100644 example/drupal/config/sync/system.date.yml create mode 100644 example/drupal/config/sync/system.diff.yml create mode 100644 example/drupal/config/sync/system.file.yml create mode 100644 example/drupal/config/sync/system.image.gd.yml create mode 100644 example/drupal/config/sync/system.image.yml create mode 100644 example/drupal/config/sync/system.logging.yml create mode 100644 example/drupal/config/sync/system.mail.yml create mode 100644 example/drupal/config/sync/system.maintenance.yml create mode 100644 example/drupal/config/sync/system.menu.account.yml create mode 100644 example/drupal/config/sync/system.menu.admin.yml create mode 100644 example/drupal/config/sync/system.menu.footer.yml create mode 100644 example/drupal/config/sync/system.menu.main.yml create mode 100644 example/drupal/config/sync/system.menu.tools.yml create mode 100644 example/drupal/config/sync/system.performance.yml create mode 100644 example/drupal/config/sync/system.rss.yml create mode 100644 example/drupal/config/sync/system.site.yml create mode 100644 example/drupal/config/sync/system.theme.global.yml create mode 100644 example/drupal/config/sync/system.theme.yml create mode 100644 example/drupal/config/sync/taxonomy.settings.yml create mode 100644 example/drupal/config/sync/taxonomy.vocabulary.tags.yml create mode 100644 example/drupal/config/sync/text.settings.yml create mode 100644 example/drupal/config/sync/tour.tour.block-layout.yml create mode 100644 example/drupal/config/sync/tour.tour.views-ui.yml create mode 100644 example/drupal/config/sync/update.settings.yml create mode 100644 example/drupal/config/sync/user.flood.yml create mode 100644 example/drupal/config/sync/user.mail.yml create mode 100644 example/drupal/config/sync/user.role.administrator.yml create mode 100644 example/drupal/config/sync/user.role.anonymous.yml create mode 100644 example/drupal/config/sync/user.role.authenticated.yml create mode 100644 example/drupal/config/sync/user.role.content_editor.yml create mode 100644 example/drupal/config/sync/user.settings.yml create mode 100644 example/drupal/config/sync/views.settings.yml create mode 100644 example/drupal/config/sync/views.view.archive.yml create mode 100644 example/drupal/config/sync/views.view.block_content.yml create mode 100644 example/drupal/config/sync/views.view.comment.yml create mode 100644 example/drupal/config/sync/views.view.comments_recent.yml create mode 100644 example/drupal/config/sync/views.view.content.yml create mode 100644 example/drupal/config/sync/views.view.content_recent.yml create mode 100644 example/drupal/config/sync/views.view.files.yml create mode 100644 example/drupal/config/sync/views.view.frontpage.yml create mode 100644 example/drupal/config/sync/views.view.glossary.yml create mode 100644 example/drupal/config/sync/views.view.taxonomy_term.yml create mode 100644 example/drupal/config/sync/views.view.user_admin_people.yml create mode 100644 example/drupal/config/sync/views.view.watchdog.yml create mode 100644 example/drupal/config/sync/views.view.who_s_new.yml create mode 100644 example/drupal/config/sync/views.view.who_s_online.yml create mode 100644 example/drupal/content/.htaccess create mode 100644 example/drupal/content/meta/index.json create mode 100644 example/drupal/content/shortcut.92a7e031-80ca-4399-a0f1-39090682ffe8.json create mode 100644 example/drupal/content/shortcut.ea4269d9-ad27-4aa2-936c-47ebaf1c999a.json create mode 100644 example/drupal/content/user.ebfa7bc7-06a4-4954-994c-6c0a60fd7e7d.json create mode 100644 example/drupal/content/user.f9e9be4c-b28b-4998-b711-e7f80e0467aa.json create mode 100644 example/drupal/web/.csslintrc create mode 100644 example/drupal/web/.eslintignore create mode 100644 example/drupal/web/.eslintrc.json create mode 100644 example/drupal/web/.ht.router.php create mode 100644 example/drupal/web/.htaccess create mode 100644 example/drupal/web/INSTALL.txt create mode 100644 example/drupal/web/README.md create mode 100644 example/drupal/web/autoload.php create mode 100644 example/drupal/web/example.gitignore create mode 100644 example/drupal/web/index.php create mode 100644 example/drupal/web/modules/README.txt create mode 100644 example/drupal/web/profiles/README.txt create mode 100644 example/drupal/web/sites/README.txt create mode 100644 example/drupal/web/sites/default/default.services.yml create mode 100644 example/drupal/web/sites/default/default.settings.php create mode 100755 example/drupal/web/sites/default/settings.php create mode 100644 example/drupal/web/sites/development.services.yml create mode 100644 example/drupal/web/sites/example.settings.local.php create mode 100644 example/drupal/web/sites/example.sites.php create mode 100644 example/drupal/web/themes/README.txt create mode 100644 example/drupal/web/update.php create mode 100644 example/drupal/web/web.config diff --git a/example/drupal/config/sync/.htaccess b/example/drupal/config/sync/.htaccess new file mode 100644 index 0000000..25776a3 --- /dev/null +++ b/example/drupal/config/sync/.htaccess @@ -0,0 +1,24 @@ +# Deny all requests from Apache 2.4+. + + Require all denied + + +# Deny all requests from Apache 2.0-2.2. + + Deny from all + + +# Turn off all options we don't need. +Options -Indexes -ExecCGI -Includes -MultiViews + +# Set the catch-all handler to prevent scripts from being executed. +SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006 + + # Override the handler again if we're run later in the evaluation list. + SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003 + + +# If we know how to do it safely, disable the PHP engine entirely. + + php_flag engine off + \ No newline at end of file diff --git a/example/drupal/config/sync/automated_cron.settings.yml b/example/drupal/config/sync/automated_cron.settings.yml new file mode 100644 index 0000000..3fc5821 --- /dev/null +++ b/example/drupal/config/sync/automated_cron.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: fUksROt4FfkAU9BV4hV2XvhTBSS2nTNrZS4U7S-tKrs +interval: 10800 diff --git a/example/drupal/config/sync/block.block.bartik_account_menu.yml b/example/drupal/config/sync/block.block.bartik_account_menu.yml new file mode 100644 index 0000000..472111b --- /dev/null +++ b/example/drupal/config/sync/block.block.bartik_account_menu.yml @@ -0,0 +1,27 @@ +uuid: 0cdf0af8-853d-4c04-9d26-9d44c95a0e07 +langcode: en +status: true +dependencies: + config: + - system.menu.account + module: + - system + theme: + - bartik +_core: + default_config_hash: jzu74Q7R0QWgw8IniA9HZRSb_a8RPak1M0q5J-VGkZI +id: bartik_account_menu +theme: bartik +region: secondary_menu +weight: 0 +provider: null +plugin: 'system_menu_block:account' +settings: + id: 'system_menu_block:account' + label: 'User account menu' + label_display: '0' + provider: system + level: 1 + depth: 1 + expand_all_items: false +visibility: { } diff --git a/example/drupal/config/sync/block.block.bartik_branding.yml b/example/drupal/config/sync/block.block.bartik_branding.yml new file mode 100644 index 0000000..4aa36eb --- /dev/null +++ b/example/drupal/config/sync/block.block.bartik_branding.yml @@ -0,0 +1,25 @@ +uuid: 3d46aad9-9e9f-4134-9320-4e3afeb7d156 +langcode: en +status: true +dependencies: + module: + - system + theme: + - bartik +_core: + default_config_hash: d-0emr1mEq7sFKDu5RHUJckvNk62hvIZdRwPEfnJyGg +id: bartik_branding +theme: bartik +region: header +weight: 0 +provider: null +plugin: system_branding_block +settings: + id: system_branding_block + label: 'Site branding' + label_display: '0' + provider: system + use_site_logo: true + use_site_name: true + use_site_slogan: true +visibility: { } diff --git a/example/drupal/config/sync/block.block.bartik_breadcrumbs.yml b/example/drupal/config/sync/block.block.bartik_breadcrumbs.yml new file mode 100644 index 0000000..77ddcdb --- /dev/null +++ b/example/drupal/config/sync/block.block.bartik_breadcrumbs.yml @@ -0,0 +1,22 @@ +uuid: c609eda1-5739-4e72-bb27-3d9d4678028b +langcode: en +status: true +dependencies: + module: + - system + theme: + - bartik +_core: + default_config_hash: y0bXRvKYQQKkf_RVxA3aOPGpIfKKsDOzzrWYCgjxJ9Y +id: bartik_breadcrumbs +theme: bartik +region: breadcrumb +weight: 0 +provider: null +plugin: system_breadcrumb_block +settings: + id: system_breadcrumb_block + label: Breadcrumbs + label_display: '0' + provider: system +visibility: { } diff --git a/example/drupal/config/sync/block.block.bartik_content.yml b/example/drupal/config/sync/block.block.bartik_content.yml new file mode 100644 index 0000000..9b695e7 --- /dev/null +++ b/example/drupal/config/sync/block.block.bartik_content.yml @@ -0,0 +1,22 @@ +uuid: 382cfdd8-1936-4ef4-9416-629e5c4d4842 +langcode: en +status: true +dependencies: + module: + - system + theme: + - bartik +_core: + default_config_hash: kigu8pTxXt1qGR2NJ5HHdC4G2G1wsDrIjLPKBT5wUBc +id: bartik_content +theme: bartik +region: content +weight: 0 +provider: null +plugin: system_main_block +settings: + id: system_main_block + label: 'Main page content' + label_display: '0' + provider: system +visibility: { } diff --git a/example/drupal/config/sync/block.block.bartik_footer.yml b/example/drupal/config/sync/block.block.bartik_footer.yml new file mode 100644 index 0000000..b50b822 --- /dev/null +++ b/example/drupal/config/sync/block.block.bartik_footer.yml @@ -0,0 +1,27 @@ +uuid: bb705939-021b-476b-9bc6-b52e5f08906e +langcode: en +status: true +dependencies: + config: + - system.menu.footer + module: + - system + theme: + - bartik +_core: + default_config_hash: pnCK21YFjH7iB4XDeokSq3N3XSr6qX8BsqMs9nmip6E +id: bartik_footer +theme: bartik +region: footer_fifth +weight: 0 +provider: null +plugin: 'system_menu_block:footer' +settings: + id: 'system_menu_block:footer' + label: 'Footer menu' + label_display: '0' + provider: system + level: 1 + depth: 0 + expand_all_items: false +visibility: { } diff --git a/example/drupal/config/sync/block.block.bartik_help.yml b/example/drupal/config/sync/block.block.bartik_help.yml new file mode 100644 index 0000000..502187b --- /dev/null +++ b/example/drupal/config/sync/block.block.bartik_help.yml @@ -0,0 +1,22 @@ +uuid: 045beda0-033a-41e2-9111-aa66ac575f87 +langcode: en +status: true +dependencies: + module: + - help + theme: + - bartik +_core: + default_config_hash: '-laWx8WA-ikiIEH3NJQ0hVbjqk3iEuBms91LB0B4IQU' +id: bartik_help +theme: bartik +region: content +weight: -30 +provider: null +plugin: help_block +settings: + id: help_block + label: Help + label_display: '0' + provider: help +visibility: { } diff --git a/example/drupal/config/sync/block.block.bartik_local_actions.yml b/example/drupal/config/sync/block.block.bartik_local_actions.yml new file mode 100644 index 0000000..9d07967 --- /dev/null +++ b/example/drupal/config/sync/block.block.bartik_local_actions.yml @@ -0,0 +1,20 @@ +uuid: dd8ac186-c398-4dd2-898d-08d9c49182c6 +langcode: en +status: true +dependencies: + theme: + - bartik +_core: + default_config_hash: XRdb8LpbArVA6CpuuEZxzi50JIdjsJaCCZ5o3fH0Blk +id: bartik_local_actions +theme: bartik +region: content +weight: -20 +provider: null +plugin: local_actions_block +settings: + id: local_actions_block + label: 'Primary admin actions' + label_display: '0' + provider: core +visibility: { } diff --git a/example/drupal/config/sync/block.block.bartik_local_tasks.yml b/example/drupal/config/sync/block.block.bartik_local_tasks.yml new file mode 100644 index 0000000..b9698d6 --- /dev/null +++ b/example/drupal/config/sync/block.block.bartik_local_tasks.yml @@ -0,0 +1,22 @@ +uuid: c0b25b9a-5600-4d88-aecb-c9c1bdebfe4c +langcode: en +status: true +dependencies: + theme: + - bartik +_core: + default_config_hash: Qf2BoIzd9py5AYXZj8fJzCYDyVk1-AWXcu-AqQeDZKA +id: bartik_local_tasks +theme: bartik +region: content +weight: -40 +provider: null +plugin: local_tasks_block +settings: + id: local_tasks_block + label: Tabs + label_display: '0' + provider: core + primary: true + secondary: true +visibility: { } diff --git a/example/drupal/config/sync/block.block.bartik_main_menu.yml b/example/drupal/config/sync/block.block.bartik_main_menu.yml new file mode 100644 index 0000000..b417c45 --- /dev/null +++ b/example/drupal/config/sync/block.block.bartik_main_menu.yml @@ -0,0 +1,27 @@ +uuid: 4ff45cd4-2584-43d1-809b-6fb13abc87f2 +langcode: en +status: true +dependencies: + config: + - system.menu.main + module: + - system + theme: + - bartik +_core: + default_config_hash: _G1IfGESk7WqvVCi7B3VJxhSY0YICgv1OmuVPJqO8bE +id: bartik_main_menu +theme: bartik +region: primary_menu +weight: 0 +provider: null +plugin: 'system_menu_block:main' +settings: + id: 'system_menu_block:main' + label: 'Main navigation' + label_display: '0' + provider: system + level: 1 + depth: 1 + expand_all_items: false +visibility: { } diff --git a/example/drupal/config/sync/block.block.bartik_messages.yml b/example/drupal/config/sync/block.block.bartik_messages.yml new file mode 100644 index 0000000..b7333dd --- /dev/null +++ b/example/drupal/config/sync/block.block.bartik_messages.yml @@ -0,0 +1,22 @@ +uuid: 3e413c1d-ae92-4c90-a6e3-be29b89a8617 +langcode: en +status: true +dependencies: + module: + - system + theme: + - bartik +_core: + default_config_hash: KC12e0aosUnBBs5bd374JVcQjJaFNOSIHzu0dUGf22o +id: bartik_messages +theme: bartik +region: highlighted +weight: 0 +provider: null +plugin: system_messages_block +settings: + id: system_messages_block + label: 'Status messages' + label_display: '0' + provider: system +visibility: { } diff --git a/example/drupal/config/sync/block.block.bartik_page_title.yml b/example/drupal/config/sync/block.block.bartik_page_title.yml new file mode 100644 index 0000000..57f9cff --- /dev/null +++ b/example/drupal/config/sync/block.block.bartik_page_title.yml @@ -0,0 +1,20 @@ +uuid: a443fc98-d7ce-4cbb-91a9-97797ee0dcfa +langcode: en +status: true +dependencies: + theme: + - bartik +_core: + default_config_hash: ItFhhiUOoeR7oIq73ZaCV7PAYrOwXZ-9fazMzF5DJXM +id: bartik_page_title +theme: bartik +region: content +weight: -50 +provider: null +plugin: page_title_block +settings: + id: page_title_block + label: 'Page title' + label_display: '0' + provider: core +visibility: { } diff --git a/example/drupal/config/sync/block.block.bartik_powered.yml b/example/drupal/config/sync/block.block.bartik_powered.yml new file mode 100644 index 0000000..be77413 --- /dev/null +++ b/example/drupal/config/sync/block.block.bartik_powered.yml @@ -0,0 +1,22 @@ +uuid: a9072fac-7da0-4c23-b22b-c56e1b1a0e9d +langcode: en +status: true +dependencies: + module: + - system + theme: + - bartik +_core: + default_config_hash: I6Esh8cDlPdl2POZg4MOSRUrQNYA1UNCJCxL2yqT_wc +id: bartik_powered +theme: bartik +region: footer_fifth +weight: 10 +provider: null +plugin: system_powered_by_block +settings: + id: system_powered_by_block + label: 'Powered by Drupal' + label_display: '0' + provider: system +visibility: { } diff --git a/example/drupal/config/sync/block.block.bartik_search.yml b/example/drupal/config/sync/block.block.bartik_search.yml new file mode 100644 index 0000000..2b017dd --- /dev/null +++ b/example/drupal/config/sync/block.block.bartik_search.yml @@ -0,0 +1,23 @@ +uuid: d2846a82-479f-4e89-bc37-31b8ec7eb3bb +langcode: en +status: true +dependencies: + module: + - search + theme: + - bartik +_core: + default_config_hash: jQ-C8l3dJPqYCGST1e-kSjR14PDP4wq-iFbp8dMFcRo +id: bartik_search +theme: bartik +region: sidebar_first +weight: -1 +provider: null +plugin: search_form_block +settings: + id: search_form_block + label: Search + label_display: visible + provider: search + page_id: node_search +visibility: { } diff --git a/example/drupal/config/sync/block.block.bartik_tools.yml b/example/drupal/config/sync/block.block.bartik_tools.yml new file mode 100644 index 0000000..a0dc3e8 --- /dev/null +++ b/example/drupal/config/sync/block.block.bartik_tools.yml @@ -0,0 +1,27 @@ +uuid: bd75f86f-b3c1-4fd5-88b0-699ef1a2fc19 +langcode: en +status: true +dependencies: + config: + - system.menu.tools + module: + - system + theme: + - bartik +_core: + default_config_hash: TszJ7dH_11Qjmo_OpMzqznaED4Bvy1XfVnBzTC9LZXE +id: bartik_tools +theme: bartik +region: sidebar_first +weight: 0 +provider: null +plugin: 'system_menu_block:tools' +settings: + id: 'system_menu_block:tools' + label: Tools + label_display: visible + provider: system + level: 1 + depth: 0 + expand_all_items: false +visibility: { } diff --git a/example/drupal/config/sync/block.block.seven_breadcrumbs.yml b/example/drupal/config/sync/block.block.seven_breadcrumbs.yml new file mode 100644 index 0000000..87b9905 --- /dev/null +++ b/example/drupal/config/sync/block.block.seven_breadcrumbs.yml @@ -0,0 +1,22 @@ +uuid: c2ad9d78-1717-411b-bf33-eed677a49c39 +langcode: en +status: true +dependencies: + module: + - system + theme: + - seven +_core: + default_config_hash: 2rIN97Rd7-rjv3P4h0-xrZnAgPJHyXFEwrB--sS2_qE +id: seven_breadcrumbs +theme: seven +region: breadcrumb +weight: 0 +provider: null +plugin: system_breadcrumb_block +settings: + id: system_breadcrumb_block + label: Breadcrumbs + label_display: '0' + provider: system +visibility: { } diff --git a/example/drupal/config/sync/block.block.seven_content.yml b/example/drupal/config/sync/block.block.seven_content.yml new file mode 100644 index 0000000..73e6f71 --- /dev/null +++ b/example/drupal/config/sync/block.block.seven_content.yml @@ -0,0 +1,22 @@ +uuid: dc6e74a8-283c-4fa1-a48e-ccfe5947387b +langcode: en +status: true +dependencies: + module: + - system + theme: + - seven +_core: + default_config_hash: 6_eJxtyfANKFE_nfriHKgrARRIPHH88sI6jvQ4EHbBc +id: seven_content +theme: seven +region: content +weight: 0 +provider: null +plugin: system_main_block +settings: + id: system_main_block + label: 'Main page content' + label_display: '0' + provider: system +visibility: { } diff --git a/example/drupal/config/sync/block.block.seven_help.yml b/example/drupal/config/sync/block.block.seven_help.yml new file mode 100644 index 0000000..95757c9 --- /dev/null +++ b/example/drupal/config/sync/block.block.seven_help.yml @@ -0,0 +1,22 @@ +uuid: 46cea158-99b6-4773-999a-89b624d0ec51 +langcode: en +status: true +dependencies: + module: + - help + theme: + - seven +_core: + default_config_hash: bYvyEzJ7UcmjXZAYLxb4Qb_J77K9bPbk4ealdap31FY +id: seven_help +theme: seven +region: help +weight: 0 +provider: null +plugin: help_block +settings: + id: help_block + label: Help + label_display: '0' + provider: help +visibility: { } diff --git a/example/drupal/config/sync/block.block.seven_local_actions.yml b/example/drupal/config/sync/block.block.seven_local_actions.yml new file mode 100644 index 0000000..dcb326a --- /dev/null +++ b/example/drupal/config/sync/block.block.seven_local_actions.yml @@ -0,0 +1,20 @@ +uuid: 484d44ea-82e9-4a08-a277-2cb1df4382c0 +langcode: en +status: true +dependencies: + theme: + - seven +_core: + default_config_hash: gv5JXTvQXjlMY6PXrfxzcLMjMg4074WiEQCy7ZSMvK4 +id: seven_local_actions +theme: seven +region: content +weight: -10 +provider: null +plugin: local_actions_block +settings: + id: local_actions_block + label: 'Primary admin actions' + label_display: '0' + provider: core +visibility: { } diff --git a/example/drupal/config/sync/block.block.seven_messages.yml b/example/drupal/config/sync/block.block.seven_messages.yml new file mode 100644 index 0000000..6a5abcc --- /dev/null +++ b/example/drupal/config/sync/block.block.seven_messages.yml @@ -0,0 +1,22 @@ +uuid: f2ce36f7-5213-432e-b734-183dc0b555f1 +langcode: en +status: true +dependencies: + module: + - system + theme: + - seven +_core: + default_config_hash: bZvFlENVti4PpqT6kqoC86B5_lXp6aE-d4nrvLMU4CY +id: seven_messages +theme: seven +region: highlighted +weight: 0 +provider: null +plugin: system_messages_block +settings: + id: system_messages_block + label: 'Status messages' + label_display: '0' + provider: system +visibility: { } diff --git a/example/drupal/config/sync/block.block.seven_page_title.yml b/example/drupal/config/sync/block.block.seven_page_title.yml new file mode 100644 index 0000000..1db3457 --- /dev/null +++ b/example/drupal/config/sync/block.block.seven_page_title.yml @@ -0,0 +1,20 @@ +uuid: 9043f691-8135-4da9-a2cd-cc2717e6f1f7 +langcode: en +status: true +dependencies: + theme: + - seven +_core: + default_config_hash: P-2PK2v3yJQRI4Mg1RqKQ0Ki0wP_UUErIvahd_MtMVc +id: seven_page_title +theme: seven +region: header +weight: -30 +provider: null +plugin: page_title_block +settings: + id: page_title_block + label: 'Page title' + label_display: '0' + provider: core +visibility: { } diff --git a/example/drupal/config/sync/block.block.seven_primary_local_tasks.yml b/example/drupal/config/sync/block.block.seven_primary_local_tasks.yml new file mode 100644 index 0000000..822584f --- /dev/null +++ b/example/drupal/config/sync/block.block.seven_primary_local_tasks.yml @@ -0,0 +1,22 @@ +uuid: 849876f2-578e-4cc5-a265-3e865e36076b +langcode: en +status: true +dependencies: + theme: + - seven +_core: + default_config_hash: ouwsNHI1V3bwV1G1vl0EcbWy8AB9V62vgLOSjTpoCSI +id: seven_primary_local_tasks +theme: seven +region: header +weight: 0 +provider: null +plugin: local_tasks_block +settings: + id: local_tasks_block + label: 'Primary tabs' + label_display: '0' + provider: core + primary: true + secondary: false +visibility: { } diff --git a/example/drupal/config/sync/block.block.seven_secondary_local_tasks.yml b/example/drupal/config/sync/block.block.seven_secondary_local_tasks.yml new file mode 100644 index 0000000..e8d07e1 --- /dev/null +++ b/example/drupal/config/sync/block.block.seven_secondary_local_tasks.yml @@ -0,0 +1,22 @@ +uuid: a2936a6c-03e3-4fd0-bb26-92e5be5c0fbb +langcode: en +status: true +dependencies: + theme: + - seven +_core: + default_config_hash: W8ripr8GQI0o3eaaD7lcd4687nUrcHoYdu4yIjzVN3o +id: seven_secondary_local_tasks +theme: seven +region: pre_content +weight: 0 +provider: null +plugin: local_tasks_block +settings: + id: local_tasks_block + label: 'Secondary tabs' + label_display: '0' + provider: core + primary: false + secondary: true +visibility: { } diff --git a/example/drupal/config/sync/block_content.type.basic.yml b/example/drupal/config/sync/block_content.type.basic.yml new file mode 100644 index 0000000..e28e89f --- /dev/null +++ b/example/drupal/config/sync/block_content.type.basic.yml @@ -0,0 +1,10 @@ +uuid: 95121165-8544-4757-9d23-2951bcb00d7f +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: zglzjmYxi0G0ag9MZ02y0LSJOdpWRwJxyP_OvFojFyo +id: basic +label: 'Basic block' +revision: 0 +description: 'A basic block contains a title and a body.' diff --git a/example/drupal/config/sync/comment.settings.yml b/example/drupal/config/sync/comment.settings.yml new file mode 100644 index 0000000..5b7ad98 --- /dev/null +++ b/example/drupal/config/sync/comment.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: YNUW2Ij5uE7a4oaXp3i_2lvaFdYM1zNKPPfnEjB0jEc +log_ip_addresses: false diff --git a/example/drupal/config/sync/comment.type.comment.yml b/example/drupal/config/sync/comment.type.comment.yml new file mode 100644 index 0000000..00b5ad6 --- /dev/null +++ b/example/drupal/config/sync/comment.type.comment.yml @@ -0,0 +1,10 @@ +uuid: d8a9fe66-9941-4c6c-a21e-7ba0b75cbe56 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: bqZsN31T2n0UjcbyCpOPi9D2iO0sAOHR7FnEs9qMvaA +id: comment +label: 'Default comments' +target_entity_type_id: node +description: 'Allows commenting on content' diff --git a/example/drupal/config/sync/contact.form.feedback.yml b/example/drupal/config/sync/contact.form.feedback.yml new file mode 100644 index 0000000..34419f1 --- /dev/null +++ b/example/drupal/config/sync/contact.form.feedback.yml @@ -0,0 +1,14 @@ +uuid: 8b451fec-3ea4-435c-8eaa-8404304db820 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: vymHlgJy26BuI5GGj9-IXjwR3dRC5C0tij4BpWJnoqw +id: feedback +label: 'Website feedback' +recipients: + - admin@example.com +reply: '' +weight: 0 +message: 'Your message has been sent.' +redirect: '' diff --git a/example/drupal/config/sync/contact.form.personal.yml b/example/drupal/config/sync/contact.form.personal.yml new file mode 100644 index 0000000..164a354 --- /dev/null +++ b/example/drupal/config/sync/contact.form.personal.yml @@ -0,0 +1,13 @@ +uuid: 3133c24d-f4a1-4c12-ad47-a4da9be5dec2 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: jonvgt3CkUM2eMLTFwWfHileWWDC4YtXCuIlCahTk_I +id: personal +label: 'Personal contact form' +recipients: { } +reply: '' +weight: 0 +message: 'Your message has been sent.' +redirect: '' diff --git a/example/drupal/config/sync/contact.settings.yml b/example/drupal/config/sync/contact.settings.yml new file mode 100644 index 0000000..1c949a6 --- /dev/null +++ b/example/drupal/config/sync/contact.settings.yml @@ -0,0 +1,7 @@ +_core: + default_config_hash: U69DBeuvXuNVOC15rVNaBjDPK2fWFbo9v4takdYSSO8 +default_form: feedback +flood: + limit: 5 + interval: 3600 +user_default_enabled: true diff --git a/example/drupal/config/sync/core.base_field_override.node.page.promote.yml b/example/drupal/config/sync/core.base_field_override.node.page.promote.yml new file mode 100644 index 0000000..283d198 --- /dev/null +++ b/example/drupal/config/sync/core.base_field_override.node.page.promote.yml @@ -0,0 +1,24 @@ +uuid: 1a527ff0-ca93-4642-b379-9c6c1bb45d94 +langcode: en +status: true +dependencies: + config: + - node.type.page +_core: + default_config_hash: fPUEnm4T5zfZRr3ttDUqq7yCDd2uW3clWD-pvos4tlQ +id: node.page.promote +field_name: promote +entity_type: node +bundle: page +label: 'Promoted to front page' +description: '' +required: false +translatable: false +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/example/drupal/config/sync/core.date_format.fallback.yml b/example/drupal/config/sync/core.date_format.fallback.yml new file mode 100644 index 0000000..76c3651 --- /dev/null +++ b/example/drupal/config/sync/core.date_format.fallback.yml @@ -0,0 +1,10 @@ +uuid: 6290c41f-a2dc-42de-a180-a8ac3edb2abd +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 7klS5IWXrwzVaPpYZFAs6wcx8U2FF1X73OfrtTsvuvE +id: fallback +label: 'Fallback date format' +locked: true +pattern: 'D, m/d/Y - H:i' diff --git a/example/drupal/config/sync/core.date_format.html_date.yml b/example/drupal/config/sync/core.date_format.html_date.yml new file mode 100644 index 0000000..4cb2e68 --- /dev/null +++ b/example/drupal/config/sync/core.date_format.html_date.yml @@ -0,0 +1,10 @@ +uuid: d084affd-f1a5-4d0c-906a-da3f068a5ab0 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: EOQltUQPmgc6UQ2rcJ4Xi_leCEJj5ui0TR-12duS-Tk +id: html_date +label: 'HTML Date' +locked: true +pattern: Y-m-d diff --git a/example/drupal/config/sync/core.date_format.html_datetime.yml b/example/drupal/config/sync/core.date_format.html_datetime.yml new file mode 100644 index 0000000..fbe929e --- /dev/null +++ b/example/drupal/config/sync/core.date_format.html_datetime.yml @@ -0,0 +1,10 @@ +uuid: ff5026ea-e2ab-4de7-9e95-9793e8289eca +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: jxfClwZIRXIdcvMrE--WkcZxDGUVoOIE3Sm2NRZlFuE +id: html_datetime +label: 'HTML Datetime' +locked: true +pattern: 'Y-m-d\TH:i:sO' diff --git a/example/drupal/config/sync/core.date_format.html_month.yml b/example/drupal/config/sync/core.date_format.html_month.yml new file mode 100644 index 0000000..e1f7328 --- /dev/null +++ b/example/drupal/config/sync/core.date_format.html_month.yml @@ -0,0 +1,10 @@ +uuid: d06a66c3-815a-4af6-9aeb-c55f97dc1959 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: Z7KuCUwM_WdTNvLcoltuX3_8d-s-8FZkTN6KgNwF0eM +id: html_month +label: 'HTML Month' +locked: true +pattern: Y-m diff --git a/example/drupal/config/sync/core.date_format.html_time.yml b/example/drupal/config/sync/core.date_format.html_time.yml new file mode 100644 index 0000000..2a59c87 --- /dev/null +++ b/example/drupal/config/sync/core.date_format.html_time.yml @@ -0,0 +1,10 @@ +uuid: f097061d-bafb-4fa9-9509-d7909d005990 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: M7yqicYkU36hRy5p9drAaGBBihhUD1OyujFrAaQ93ZE +id: html_time +label: 'HTML Time' +locked: true +pattern: 'H:i:s' diff --git a/example/drupal/config/sync/core.date_format.html_week.yml b/example/drupal/config/sync/core.date_format.html_week.yml new file mode 100644 index 0000000..d3b6210 --- /dev/null +++ b/example/drupal/config/sync/core.date_format.html_week.yml @@ -0,0 +1,10 @@ +uuid: 438ddcdd-cc83-4ff8-b45e-4c2f3bcabfd6 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: wKD4WsoV_wFgv2vgI4mcAAFSIzrye17ykzdwrnApkfY +id: html_week +label: 'HTML Week' +locked: true +pattern: Y-\WW diff --git a/example/drupal/config/sync/core.date_format.html_year.yml b/example/drupal/config/sync/core.date_format.html_year.yml new file mode 100644 index 0000000..89bb344 --- /dev/null +++ b/example/drupal/config/sync/core.date_format.html_year.yml @@ -0,0 +1,10 @@ +uuid: d70af53d-a136-4bca-9ee6-54dbf4920dfa +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: OjekiQuX9RbVQ2_8jOHBL94RgYLePqX7wpfNGgcQzrk +id: html_year +label: 'HTML Year' +locked: true +pattern: 'Y' diff --git a/example/drupal/config/sync/core.date_format.html_yearless_date.yml b/example/drupal/config/sync/core.date_format.html_yearless_date.yml new file mode 100644 index 0000000..7329e5e --- /dev/null +++ b/example/drupal/config/sync/core.date_format.html_yearless_date.yml @@ -0,0 +1,10 @@ +uuid: 2f03181d-aaac-4751-a234-d882bedc93c1 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 5VpawMrKPEPCkoO4YpPa0TDFO2dgiIHfTziJtwlmUxc +id: html_yearless_date +label: 'HTML Yearless date' +locked: true +pattern: m-d diff --git a/example/drupal/config/sync/core.date_format.long.yml b/example/drupal/config/sync/core.date_format.long.yml new file mode 100644 index 0000000..e98fe05 --- /dev/null +++ b/example/drupal/config/sync/core.date_format.long.yml @@ -0,0 +1,10 @@ +uuid: 4b85ca9a-5c7c-49b2-9352-51cdbab37096 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: og8sWXhBuHbLMw3CoiBEZjgqSyhFBFmcbUW_wLcfNbo +id: long +label: 'Default long date' +locked: false +pattern: 'l, F j, Y - H:i' diff --git a/example/drupal/config/sync/core.date_format.medium.yml b/example/drupal/config/sync/core.date_format.medium.yml new file mode 100644 index 0000000..634245f --- /dev/null +++ b/example/drupal/config/sync/core.date_format.medium.yml @@ -0,0 +1,10 @@ +uuid: 0cdd0639-0cac-41f6-983d-7ef79df80be6 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: nzL5d024NjXIX_8TlT6uFAu973lmfkmHklJC-2i9rAE +id: medium +label: 'Default medium date' +locked: false +pattern: 'D, m/d/Y - H:i' diff --git a/example/drupal/config/sync/core.date_format.short.yml b/example/drupal/config/sync/core.date_format.short.yml new file mode 100644 index 0000000..c5740d3 --- /dev/null +++ b/example/drupal/config/sync/core.date_format.short.yml @@ -0,0 +1,10 @@ +uuid: c5039084-f7d6-4559-b166-ebf2dba4cac2 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: AlzeyytA8InBgxIG9H2UDJYs3CG98Zj6yRsDKmlbZwA +id: short +label: 'Default short date' +locked: false +pattern: 'm/d/Y - H:i' diff --git a/example/drupal/config/sync/core.entity_form_display.block_content.basic.default.yml b/example/drupal/config/sync/core.entity_form_display.block_content.basic.default.yml new file mode 100644 index 0000000..0ab2174 --- /dev/null +++ b/example/drupal/config/sync/core.entity_form_display.block_content.basic.default.yml @@ -0,0 +1,35 @@ +uuid: 7703044b-d0c7-474d-89d3-073c93b37ddb +langcode: en +status: true +dependencies: + config: + - block_content.type.basic + - field.field.block_content.basic.body + module: + - text +_core: + default_config_hash: jAps3FCxvKecABS_tgExbhCZrBLQB3bNPWw18WjE3ss +id: block_content.basic.default +targetEntityType: block_content +bundle: basic +mode: default +content: + body: + type: text_textarea_with_summary + weight: -4 + region: content + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + show_summary: false + third_party_settings: { } + info: + type: string_textfield + weight: -5 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } +hidden: { } diff --git a/example/drupal/config/sync/core.entity_form_display.comment.comment.default.yml b/example/drupal/config/sync/core.entity_form_display.comment.comment.default.yml new file mode 100644 index 0000000..d672ad7 --- /dev/null +++ b/example/drupal/config/sync/core.entity_form_display.comment.comment.default.yml @@ -0,0 +1,36 @@ +uuid: f3fa7917-43a7-4a25-8c37-08332dca9506 +langcode: en +status: true +dependencies: + config: + - comment.type.comment + - field.field.comment.comment.comment_body + module: + - text +_core: + default_config_hash: I0Pa0aQvT_jawlPo9oz4FE3h_ickc55dYKTPl6gILes +id: comment.comment.default +targetEntityType: comment +bundle: comment +mode: default +content: + author: + weight: -2 + region: content + comment_body: + type: text_textarea + weight: 11 + region: content + settings: + rows: 5 + placeholder: '' + third_party_settings: { } + subject: + type: string_textfield + weight: 10 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } +hidden: { } diff --git a/example/drupal/config/sync/core.entity_form_display.node.article.default.yml b/example/drupal/config/sync/core.entity_form_display.node.article.default.yml new file mode 100644 index 0000000..5b345c5 --- /dev/null +++ b/example/drupal/config/sync/core.entity_form_display.node.article.default.yml @@ -0,0 +1,109 @@ +uuid: 3718fdf5-0910-4315-ba74-bc4b2542ed31 +langcode: en +status: true +dependencies: + config: + - field.field.node.article.body + - field.field.node.article.comment + - field.field.node.article.field_image + - field.field.node.article.field_tags + - image.style.thumbnail + - node.type.article + module: + - comment + - image + - path + - text +_core: + default_config_hash: Pzq9mzrsfoPf775qgEU_SUbHSro9pv1ga-Euh1Ykd_k +id: node.article.default +targetEntityType: node +bundle: article +mode: default +content: + body: + type: text_textarea_with_summary + weight: 1 + region: content + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + show_summary: false + third_party_settings: { } + comment: + type: comment_default + weight: 20 + region: content + settings: { } + third_party_settings: { } + created: + type: datetime_timestamp + weight: 10 + region: content + settings: { } + third_party_settings: { } + field_image: + type: image_image + weight: 4 + region: content + settings: + progress_indicator: throbber + preview_image_style: thumbnail + third_party_settings: { } + field_tags: + type: entity_reference_autocomplete_tags + weight: 3 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } + path: + type: path + weight: 30 + region: content + settings: { } + third_party_settings: { } + promote: + type: boolean_checkbox + weight: 15 + region: content + settings: + display_label: true + third_party_settings: { } + status: + type: boolean_checkbox + weight: 120 + region: content + settings: + display_label: true + third_party_settings: { } + sticky: + type: boolean_checkbox + weight: 16 + region: content + settings: + display_label: true + third_party_settings: { } + title: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 5 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } +hidden: { } diff --git a/example/drupal/config/sync/core.entity_form_display.node.page.default.yml b/example/drupal/config/sync/core.entity_form_display.node.page.default.yml new file mode 100644 index 0000000..01b6c67 --- /dev/null +++ b/example/drupal/config/sync/core.entity_form_display.node.page.default.yml @@ -0,0 +1,79 @@ +uuid: 95eba23e-59e7-475d-a41f-550b378ed387 +langcode: en +status: true +dependencies: + config: + - field.field.node.page.body + - node.type.page + module: + - path + - text +_core: + default_config_hash: SfpLhPExzvR0MgFp0Wp7CrmgEnhcqQ-fXIWFhbf4ue0 +id: node.page.default +targetEntityType: node +bundle: page +mode: default +content: + body: + type: text_textarea_with_summary + weight: 31 + region: content + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + show_summary: false + third_party_settings: { } + created: + type: datetime_timestamp + weight: 10 + region: content + settings: { } + third_party_settings: { } + path: + type: path + weight: 30 + region: content + settings: { } + third_party_settings: { } + promote: + type: boolean_checkbox + weight: 15 + region: content + settings: + display_label: true + third_party_settings: { } + status: + type: boolean_checkbox + weight: 120 + region: content + settings: + display_label: true + third_party_settings: { } + sticky: + type: boolean_checkbox + weight: 16 + region: content + settings: + display_label: true + third_party_settings: { } + title: + type: string_textfield + weight: -5 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 5 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } +hidden: { } diff --git a/example/drupal/config/sync/core.entity_form_display.user.user.default.yml b/example/drupal/config/sync/core.entity_form_display.user.user.default.yml new file mode 100644 index 0000000..ba62058 --- /dev/null +++ b/example/drupal/config/sync/core.entity_form_display.user.user.default.yml @@ -0,0 +1,38 @@ +uuid: 8d027283-c383-4cbc-bf25-d8dcf2231966 +langcode: en +status: true +dependencies: + config: + - field.field.user.user.user_picture + - image.style.thumbnail + module: + - image + - user +_core: + default_config_hash: FaQ9Ptcpxpg30AtiqRDtl_8zbJArHP1LPfug_s59TOA +id: user.user.default +targetEntityType: user +bundle: user +mode: default +content: + account: + weight: -10 + region: content + contact: + weight: 5 + region: content + language: + weight: 0 + region: content + timezone: + weight: 6 + region: content + user_picture: + type: image_image + weight: -1 + region: content + settings: + progress_indicator: throbber + preview_image_style: thumbnail + third_party_settings: { } +hidden: { } diff --git a/example/drupal/config/sync/core.entity_form_mode.user.register.yml b/example/drupal/config/sync/core.entity_form_mode.user.register.yml new file mode 100644 index 0000000..8ee6d8d --- /dev/null +++ b/example/drupal/config/sync/core.entity_form_mode.user.register.yml @@ -0,0 +1,12 @@ +uuid: 43e75166-00dc-4a42-a42a-d595dbab8a07 +langcode: en +status: true +dependencies: + module: + - user +_core: + default_config_hash: flXhTcp55yLcyy7ZLOhPGKGZobZQJdkAFVWV3LseiuI +id: user.register +label: Register +targetEntityType: user +cache: true diff --git a/example/drupal/config/sync/core.entity_view_display.block_content.basic.default.yml b/example/drupal/config/sync/core.entity_view_display.block_content.basic.default.yml new file mode 100644 index 0000000..396b5f2 --- /dev/null +++ b/example/drupal/config/sync/core.entity_view_display.block_content.basic.default.yml @@ -0,0 +1,24 @@ +uuid: 6b705a61-f979-452f-80fa-596a9d419fb4 +langcode: en +status: true +dependencies: + config: + - block_content.type.basic + - field.field.block_content.basic.body + module: + - text +_core: + default_config_hash: hBNNDTFwakREOTa6GGMqN899Iyrii0hInwSJtQ7Kj30 +id: block_content.basic.default +targetEntityType: block_content +bundle: basic +mode: default +content: + body: + type: text_default + label: hidden + settings: { } + third_party_settings: { } + weight: 0 + region: content +hidden: { } diff --git a/example/drupal/config/sync/core.entity_view_display.comment.comment.default.yml b/example/drupal/config/sync/core.entity_view_display.comment.comment.default.yml new file mode 100644 index 0000000..30e72b1 --- /dev/null +++ b/example/drupal/config/sync/core.entity_view_display.comment.comment.default.yml @@ -0,0 +1,27 @@ +uuid: dff97a21-6eff-4ffc-aa34-320dab6e668a +langcode: en +status: true +dependencies: + config: + - comment.type.comment + - field.field.comment.comment.comment_body + module: + - text +_core: + default_config_hash: aBQUGsQ46M4048fIlFuTXwl2zV0j2cJX89CTUobh9hA +id: comment.comment.default +targetEntityType: comment +bundle: comment +mode: default +content: + comment_body: + type: text_default + label: hidden + settings: { } + third_party_settings: { } + weight: 0 + region: content + links: + weight: 100 + region: content +hidden: { } diff --git a/example/drupal/config/sync/core.entity_view_display.node.article.default.yml b/example/drupal/config/sync/core.entity_view_display.node.article.default.yml new file mode 100644 index 0000000..d58f290 --- /dev/null +++ b/example/drupal/config/sync/core.entity_view_display.node.article.default.yml @@ -0,0 +1,63 @@ +uuid: e78cc92e-a0be-4a20-a01f-6bb116c436d1 +langcode: en +status: true +dependencies: + config: + - core.entity_view_display.comment.comment.default + - field.field.node.article.body + - field.field.node.article.comment + - field.field.node.article.field_image + - field.field.node.article.field_tags + - image.style.large + - node.type.article + module: + - comment + - image + - text + - user +_core: + default_config_hash: b4RQ-Nfz-gOoG_jjftd_qDIz4lf_-OzlxoLHkRXjfrE +id: node.article.default +targetEntityType: node +bundle: article +mode: default +content: + body: + type: text_default + label: hidden + settings: { } + third_party_settings: { } + weight: 0 + region: content + comment: + type: comment_default + label: above + settings: + view_mode: default + pager_id: 0 + third_party_settings: { } + weight: 110 + region: content + field_image: + type: image + label: hidden + settings: + image_link: '' + image_style: large + third_party_settings: { } + weight: -1 + region: content + field_tags: + type: entity_reference_label + label: above + settings: + link: true + third_party_settings: { } + weight: 10 + region: content + links: + settings: { } + third_party_settings: { } + weight: 100 + region: content +hidden: { } diff --git a/example/drupal/config/sync/core.entity_view_display.node.article.rss.yml b/example/drupal/config/sync/core.entity_view_display.node.article.rss.yml new file mode 100644 index 0000000..4fab7cf --- /dev/null +++ b/example/drupal/config/sync/core.entity_view_display.node.article.rss.yml @@ -0,0 +1,28 @@ +uuid: efb8eb05-5ae0-4f78-b708-9d2302730b18 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.rss + - field.field.node.article.body + - field.field.node.article.comment + - field.field.node.article.field_image + - field.field.node.article.field_tags + - node.type.article + module: + - user +_core: + default_config_hash: 2rIr6K5Q0UQ9khg0zE_CK-PtJH76UL-BDDZcZnZzwCc +id: node.article.rss +targetEntityType: node +bundle: article +mode: rss +content: + links: + weight: 100 + region: content +hidden: + body: true + comment: true + field_image: true + field_tags: true diff --git a/example/drupal/config/sync/core.entity_view_display.node.article.teaser.yml b/example/drupal/config/sync/core.entity_view_display.node.article.teaser.yml new file mode 100644 index 0000000..b5219a4 --- /dev/null +++ b/example/drupal/config/sync/core.entity_view_display.node.article.teaser.yml @@ -0,0 +1,55 @@ +uuid: 21a64c5e-182a-43bc-9246-0c77f3c1f744 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.teaser + - field.field.node.article.body + - field.field.node.article.comment + - field.field.node.article.field_image + - field.field.node.article.field_tags + - image.style.medium + - node.type.article + module: + - image + - text + - user +_core: + default_config_hash: 0ur5-yZyR8pJ3lugC_Micbr6V_tpMWz-yHFhtuLcZo8 +id: node.article.teaser +targetEntityType: node +bundle: article +mode: teaser +content: + body: + type: text_summary_or_trimmed + label: hidden + settings: + trim_length: 600 + third_party_settings: { } + weight: 0 + region: content + field_image: + type: image + label: hidden + settings: + image_link: content + image_style: medium + third_party_settings: { } + weight: -1 + region: content + field_tags: + type: entity_reference_label + label: above + settings: + link: true + third_party_settings: { } + weight: 10 + region: content + links: + weight: 100 + region: content +hidden: + comment: true + field_image: true + field_tags: true diff --git a/example/drupal/config/sync/core.entity_view_display.node.page.default.yml b/example/drupal/config/sync/core.entity_view_display.node.page.default.yml new file mode 100644 index 0000000..71cb2c6 --- /dev/null +++ b/example/drupal/config/sync/core.entity_view_display.node.page.default.yml @@ -0,0 +1,28 @@ +uuid: 77af42fe-99aa-46a2-8e0a-60212be31065 +langcode: en +status: true +dependencies: + config: + - field.field.node.page.body + - node.type.page + module: + - text + - user +_core: + default_config_hash: M_Y8L5tfmhx7DR143E05YyZSpvgil6VFvqcfBWykalg +id: node.page.default +targetEntityType: node +bundle: page +mode: default +content: + body: + type: text_default + label: hidden + settings: { } + third_party_settings: { } + weight: 100 + region: content + links: + weight: 101 + region: content +hidden: { } diff --git a/example/drupal/config/sync/core.entity_view_display.node.page.teaser.yml b/example/drupal/config/sync/core.entity_view_display.node.page.teaser.yml new file mode 100644 index 0000000..8ee4cc6 --- /dev/null +++ b/example/drupal/config/sync/core.entity_view_display.node.page.teaser.yml @@ -0,0 +1,30 @@ +uuid: b59a0aa5-1615-4e8a-b15e-4870dcbb8e2e +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.teaser + - field.field.node.page.body + - node.type.page + module: + - text + - user +_core: + default_config_hash: 8BgdRtLbtQ0F__o0FHSH0Mx5fvXOra9tfT1GmNKbRYw +id: node.page.teaser +targetEntityType: node +bundle: page +mode: teaser +content: + body: + type: text_summary_or_trimmed + label: hidden + settings: + trim_length: 600 + third_party_settings: { } + weight: 100 + region: content + links: + weight: 101 + region: content +hidden: { } diff --git a/example/drupal/config/sync/core.entity_view_display.user.user.compact.yml b/example/drupal/config/sync/core.entity_view_display.user.user.compact.yml new file mode 100644 index 0000000..fd87199 --- /dev/null +++ b/example/drupal/config/sync/core.entity_view_display.user.user.compact.yml @@ -0,0 +1,29 @@ +uuid: d8d43e49-3900-4c28-bc77-483e2f47e7ab +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.user.compact + - field.field.user.user.user_picture + - image.style.thumbnail + module: + - image + - user +_core: + default_config_hash: kD2TjItfNDKFw2CFJQfuv4Ys6qg3uYa4hCJYN2jreec +id: user.user.compact +targetEntityType: user +bundle: user +mode: compact +content: + user_picture: + type: image + label: hidden + settings: + image_link: content + image_style: thumbnail + third_party_settings: { } + weight: 0 + region: content +hidden: + member_for: true diff --git a/example/drupal/config/sync/core.entity_view_display.user.user.default.yml b/example/drupal/config/sync/core.entity_view_display.user.user.default.yml new file mode 100644 index 0000000..aa5fe56 --- /dev/null +++ b/example/drupal/config/sync/core.entity_view_display.user.user.default.yml @@ -0,0 +1,30 @@ +uuid: fde03a05-c267-47df-8f4f-a80c7e05b3ca +langcode: en +status: true +dependencies: + config: + - field.field.user.user.user_picture + - image.style.thumbnail + module: + - image + - user +_core: + default_config_hash: E1qmUI2SlozLlJ308jfMMFKT67l1p6PywE2LTRbeYS4 +id: user.user.default +targetEntityType: user +bundle: user +mode: default +content: + member_for: + weight: 5 + region: content + user_picture: + type: image + label: hidden + settings: + image_link: content + image_style: thumbnail + third_party_settings: { } + weight: 0 + region: content +hidden: { } diff --git a/example/drupal/config/sync/core.entity_view_mode.block_content.full.yml b/example/drupal/config/sync/core.entity_view_mode.block_content.full.yml new file mode 100644 index 0000000..74194fb --- /dev/null +++ b/example/drupal/config/sync/core.entity_view_mode.block_content.full.yml @@ -0,0 +1,12 @@ +uuid: b24bdce4-85b3-4768-ac74-904b297b3a54 +langcode: en +status: false +dependencies: + module: + - block_content +_core: + default_config_hash: 4tedlMuvQjDOdvHdw86_e-2Rt78aR7TGFMfOK8Ejppg +id: block_content.full +label: Full +targetEntityType: block_content +cache: true diff --git a/example/drupal/config/sync/core.entity_view_mode.comment.full.yml b/example/drupal/config/sync/core.entity_view_mode.comment.full.yml new file mode 100644 index 0000000..1d903fd --- /dev/null +++ b/example/drupal/config/sync/core.entity_view_mode.comment.full.yml @@ -0,0 +1,12 @@ +uuid: 345782ef-fbcf-4a9e-937c-3d743c6aa731 +langcode: en +status: false +dependencies: + module: + - comment +_core: + default_config_hash: K7eNlfU7NEUajz01wItywZklr2oaPgL6s1_97fmDXLA +id: comment.full +label: 'Full comment' +targetEntityType: comment +cache: true diff --git a/example/drupal/config/sync/core.entity_view_mode.node.full.yml b/example/drupal/config/sync/core.entity_view_mode.node.full.yml new file mode 100644 index 0000000..0ea9d88 --- /dev/null +++ b/example/drupal/config/sync/core.entity_view_mode.node.full.yml @@ -0,0 +1,12 @@ +uuid: b199ebc7-b223-42e5-9bb2-b9f6e63a4566 +langcode: en +status: false +dependencies: + module: + - node +_core: + default_config_hash: ElrtInxGjZd7GaapJ5O9n-ugi2hG2IxFivtgn0tHOsk +id: node.full +label: 'Full content' +targetEntityType: node +cache: true diff --git a/example/drupal/config/sync/core.entity_view_mode.node.rss.yml b/example/drupal/config/sync/core.entity_view_mode.node.rss.yml new file mode 100644 index 0000000..c4693bf --- /dev/null +++ b/example/drupal/config/sync/core.entity_view_mode.node.rss.yml @@ -0,0 +1,12 @@ +uuid: d75e80e8-0884-4e7a-a1ec-216f1c6339c9 +langcode: en +status: false +dependencies: + module: + - node +_core: + default_config_hash: vlYzr-rp2f9NMp-Qlr4sFjlqRq-90mco5-afLNGwCrU +id: node.rss +label: RSS +targetEntityType: node +cache: true diff --git a/example/drupal/config/sync/core.entity_view_mode.node.search_index.yml b/example/drupal/config/sync/core.entity_view_mode.node.search_index.yml new file mode 100644 index 0000000..6d00277 --- /dev/null +++ b/example/drupal/config/sync/core.entity_view_mode.node.search_index.yml @@ -0,0 +1,12 @@ +uuid: 5c668dae-1920-4749-95f4-d547b0e59939 +langcode: en +status: false +dependencies: + module: + - node +_core: + default_config_hash: fVFfJv_GzBRE-wpRHbfD5a3VjnhbEOXG6lvRd3uaccY +id: node.search_index +label: 'Search index' +targetEntityType: node +cache: true diff --git a/example/drupal/config/sync/core.entity_view_mode.node.search_result.yml b/example/drupal/config/sync/core.entity_view_mode.node.search_result.yml new file mode 100644 index 0000000..4889817 --- /dev/null +++ b/example/drupal/config/sync/core.entity_view_mode.node.search_result.yml @@ -0,0 +1,12 @@ +uuid: ca345a4a-9487-4755-8da6-125f3f38155d +langcode: en +status: false +dependencies: + module: + - node +_core: + default_config_hash: 6GCOQ-jP2RbdbHA5YWQ6bT8CfGbqrBYKOSC_XY4E3ZM +id: node.search_result +label: 'Search result highlighting input' +targetEntityType: node +cache: true diff --git a/example/drupal/config/sync/core.entity_view_mode.node.teaser.yml b/example/drupal/config/sync/core.entity_view_mode.node.teaser.yml new file mode 100644 index 0000000..0fa1b64 --- /dev/null +++ b/example/drupal/config/sync/core.entity_view_mode.node.teaser.yml @@ -0,0 +1,12 @@ +uuid: 9084eaee-4abc-42b9-9b85-2fdca4ef3f86 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: Mz9qWr1kUYK0mjRAGDsr5XS6PvtZ24en_7ndt-pyWe4 +id: node.teaser +label: Teaser +targetEntityType: node +cache: true diff --git a/example/drupal/config/sync/core.entity_view_mode.taxonomy_term.full.yml b/example/drupal/config/sync/core.entity_view_mode.taxonomy_term.full.yml new file mode 100644 index 0000000..5daf9f7 --- /dev/null +++ b/example/drupal/config/sync/core.entity_view_mode.taxonomy_term.full.yml @@ -0,0 +1,12 @@ +uuid: 3f7f88de-403a-4c03-a5d7-2461d9e8dbe9 +langcode: en +status: true +dependencies: + module: + - taxonomy +_core: + default_config_hash: '-PPKjsNQPvoIDjOuUAvlLocYD976MNjb9Zpgyz5_BWE' +id: taxonomy_term.full +label: 'Taxonomy term page' +targetEntityType: taxonomy_term +cache: true diff --git a/example/drupal/config/sync/core.entity_view_mode.user.compact.yml b/example/drupal/config/sync/core.entity_view_mode.user.compact.yml new file mode 100644 index 0000000..76c9c47 --- /dev/null +++ b/example/drupal/config/sync/core.entity_view_mode.user.compact.yml @@ -0,0 +1,12 @@ +uuid: 2d054058-16cd-4423-bb1c-8045d5e9306e +langcode: en +status: true +dependencies: + module: + - user +_core: + default_config_hash: 71CSAr_LNPcgu6D6jI4INl1KATkahmeyUFBETAWya8g +id: user.compact +label: Compact +targetEntityType: user +cache: true diff --git a/example/drupal/config/sync/core.entity_view_mode.user.full.yml b/example/drupal/config/sync/core.entity_view_mode.user.full.yml new file mode 100644 index 0000000..1b8adfa --- /dev/null +++ b/example/drupal/config/sync/core.entity_view_mode.user.full.yml @@ -0,0 +1,12 @@ +uuid: a5e351e3-b690-4a56-bd11-eab3d3bedba9 +langcode: en +status: false +dependencies: + module: + - user +_core: + default_config_hash: mQIF_foYjmnVSr9MpcD4CTaJE_FpO1AyDd_DskztGhM +id: user.full +label: 'User account' +targetEntityType: user +cache: true diff --git a/example/drupal/config/sync/core.extension.yml b/example/drupal/config/sync/core.extension.yml new file mode 100644 index 0000000..d932e78 --- /dev/null +++ b/example/drupal/config/sync/core.extension.yml @@ -0,0 +1,55 @@ +_core: + default_config_hash: R4IF-ClDHXxblLcG0L7MgsLvfBIMAvi_skumNFQwkDc +module: + automated_cron: 0 + big_pipe: 0 + block: 0 + block_content: 0 + breakpoint: 0 + ckeditor: 0 + color: 0 + comment: 0 + config: 0 + contact: 0 + contextual: 0 + datetime: 0 + dblog: 0 + dynamic_page_cache: 0 + editor: 0 + field: 0 + field_ui: 0 + file: 0 + filter: 0 + help: 0 + history: 0 + image: 0 + link: 0 + menu_link_content: 0 + menu_ui: 0 + node: 0 + options: 0 + page_cache: 0 + path: 0 + path_alias: 0 + rdf: 0 + search: 0 + serialization: 0 + shortcut: 0 + system: 0 + taxonomy: 0 + text: 0 + tome: 0 + tome_base: 0 + tome_static: 0 + tome_sync: 0 + toolbar: 0 + tour: 0 + update: 0 + user: 0 + views_ui: 0 + views: 10 + standard: 1000 +theme: + bartik: 0 + seven: 0 +profile: standard diff --git a/example/drupal/config/sync/core.menu.static_menu_link_overrides.yml b/example/drupal/config/sync/core.menu.static_menu_link_overrides.yml new file mode 100644 index 0000000..eb6e35e --- /dev/null +++ b/example/drupal/config/sync/core.menu.static_menu_link_overrides.yml @@ -0,0 +1,9 @@ +_core: + default_config_hash: CXhei_vpaZk-3f_Mj2cH0YmpK-ZpKHoSzVA3yZrDq0g +definitions: + contact__site_page: + menu_name: footer + parent: '' + weight: 0 + expanded: false + enabled: true diff --git a/example/drupal/config/sync/dblog.settings.yml b/example/drupal/config/sync/dblog.settings.yml new file mode 100644 index 0000000..fbd17ea --- /dev/null +++ b/example/drupal/config/sync/dblog.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: e883aGsrt1wFrsydlYU584PZONCSfRy0DtkZ9KzHb58 +row_limit: 1000 diff --git a/example/drupal/config/sync/editor.editor.basic_html.yml b/example/drupal/config/sync/editor.editor.basic_html.yml new file mode 100644 index 0000000..42d3d7a --- /dev/null +++ b/example/drupal/config/sync/editor.editor.basic_html.yml @@ -0,0 +1,55 @@ +uuid: df7c3742-0345-4ddf-9c09-7eed33a09870 +langcode: en +status: true +dependencies: + config: + - filter.format.basic_html + module: + - ckeditor +_core: + default_config_hash: AqlPmO16LvJI4D0Ih6u4GFQIzqr5OnLgAUSjcUGWk2g +format: basic_html +editor: ckeditor +settings: + toolbar: + rows: + - + - + name: Formatting + items: + - Bold + - Italic + - + name: Linking + items: + - DrupalLink + - DrupalUnlink + - + name: Lists + items: + - BulletedList + - NumberedList + - + name: Media + items: + - Blockquote + - DrupalImage + - + name: 'Block Formatting' + items: + - Format + - + name: Tools + items: + - Source + plugins: + stylescombo: + styles: '' +image_upload: + status: true + scheme: public + directory: inline-images + max_size: '' + max_dimensions: + width: 0 + height: 0 diff --git a/example/drupal/config/sync/editor.editor.full_html.yml b/example/drupal/config/sync/editor.editor.full_html.yml new file mode 100644 index 0000000..745f049 --- /dev/null +++ b/example/drupal/config/sync/editor.editor.full_html.yml @@ -0,0 +1,63 @@ +uuid: 2d6336e0-63f0-4158-b269-ce239fc55ec3 +langcode: en +status: true +dependencies: + config: + - filter.format.full_html + module: + - ckeditor +_core: + default_config_hash: 967ijj7p6i7rwrYl7r08WQFeCY_c23YAh0h8u-w_CXM +format: full_html +editor: ckeditor +settings: + toolbar: + rows: + - + - + name: Formatting + items: + - Bold + - Italic + - Strike + - Superscript + - Subscript + - '-' + - RemoveFormat + - + name: Linking + items: + - DrupalLink + - DrupalUnlink + - + name: Lists + items: + - BulletedList + - NumberedList + - + name: Media + items: + - Blockquote + - DrupalImage + - Table + - HorizontalRule + - + name: 'Block Formatting' + items: + - Format + - + name: Tools + items: + - ShowBlocks + - Source + plugins: + stylescombo: + styles: '' +image_upload: + status: true + scheme: public + directory: inline-images + max_size: '' + max_dimensions: + width: 0 + height: 0 diff --git a/example/drupal/config/sync/field.field.block_content.basic.body.yml b/example/drupal/config/sync/field.field.block_content.basic.body.yml new file mode 100644 index 0000000..7c4d348 --- /dev/null +++ b/example/drupal/config/sync/field.field.block_content.basic.body.yml @@ -0,0 +1,25 @@ +uuid: 944b448f-3347-4345-9cc5-201159346dda +langcode: en +status: true +dependencies: + config: + - block_content.type.basic + - field.storage.block_content.body + module: + - text +_core: + default_config_hash: foetbaMhlB6uLc2bn-PESvaPkbuDWj0MEjpQVwQiP-o +id: block_content.basic.body +field_name: body +entity_type: block_content +bundle: basic +label: Body +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + display_summary: false + required_summary: false +field_type: text_with_summary diff --git a/example/drupal/config/sync/field.field.comment.comment.comment_body.yml b/example/drupal/config/sync/field.field.comment.comment.comment_body.yml new file mode 100644 index 0000000..d3af8d0 --- /dev/null +++ b/example/drupal/config/sync/field.field.comment.comment.comment_body.yml @@ -0,0 +1,23 @@ +uuid: 44ae0ccd-2bc4-4a8c-bb76-84ff5afc5ffd +langcode: en +status: true +dependencies: + config: + - comment.type.comment + - field.storage.comment.comment_body + module: + - text +_core: + default_config_hash: TmAKjNrJ7RR60YpqvJq_QqEewYe_S8Kd23n8VRCqiWs +id: comment.comment.comment_body +field_name: comment_body +entity_type: comment +bundle: comment +label: Comment +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: text_long diff --git a/example/drupal/config/sync/field.field.node.article.body.yml b/example/drupal/config/sync/field.field.node.article.body.yml new file mode 100644 index 0000000..70d855b --- /dev/null +++ b/example/drupal/config/sync/field.field.node.article.body.yml @@ -0,0 +1,25 @@ +uuid: 695400b3-2149-478a-9732-21767495e101 +langcode: en +status: true +dependencies: + config: + - field.storage.node.body + - node.type.article + module: + - text +_core: + default_config_hash: IjZnOLWk1Pjq3WRg2pLSA1ERh7Po7izCq_p6UztZr2c +id: node.article.body +field_name: body +entity_type: node +bundle: article +label: Body +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + display_summary: true + required_summary: false +field_type: text_with_summary diff --git a/example/drupal/config/sync/field.field.node.article.comment.yml b/example/drupal/config/sync/field.field.node.article.comment.yml new file mode 100644 index 0000000..6934308 --- /dev/null +++ b/example/drupal/config/sync/field.field.node.article.comment.yml @@ -0,0 +1,35 @@ +uuid: 3ac1dd44-68ae-4130-aaeb-9c8e891fd488 +langcode: en +status: true +dependencies: + config: + - field.storage.node.comment + - node.type.article + module: + - comment +_core: + default_config_hash: UqXlkKC4v2-bDfWx4zcXQrD5YIi3d5byENEmWv-G_Uc +id: node.article.comment +field_name: comment +entity_type: node +bundle: article +label: Comments +description: '' +required: false +translatable: true +default_value: + - + status: 2 + cid: 0 + last_comment_timestamp: 0 + last_comment_name: null + last_comment_uid: 0 + comment_count: 0 +default_value_callback: '' +settings: + default_mode: 1 + per_page: 50 + anonymous: 0 + form_location: true + preview: 1 +field_type: comment diff --git a/example/drupal/config/sync/field.field.node.article.field_image.yml b/example/drupal/config/sync/field.field.node.article.field_image.yml new file mode 100644 index 0000000..70c3396 --- /dev/null +++ b/example/drupal/config/sync/field.field.node.article.field_image.yml @@ -0,0 +1,40 @@ +uuid: 3b5c4deb-0861-4665-8ee7-9d907d1c3212 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_image + - node.type.article + module: + - image +_core: + default_config_hash: PmVL51L3A9QGbPLoeLHw5epAPszeZRasCeC3imeeDRQ +id: node.article.field_image +field_name: field_image +entity_type: node +bundle: article +label: Image +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'default:file' + handler_settings: { } + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'png gif jpg jpeg' + max_filesize: '' + max_resolution: '' + min_resolution: '' + alt_field: true + alt_field_required: true + title_field: false + title_field_required: false + default_image: + uuid: null + alt: '' + title: '' + width: null + height: null +field_type: image diff --git a/example/drupal/config/sync/field.field.node.article.field_tags.yml b/example/drupal/config/sync/field.field.node.article.field_tags.yml new file mode 100644 index 0000000..6870d40 --- /dev/null +++ b/example/drupal/config/sync/field.field.node.article.field_tags.yml @@ -0,0 +1,29 @@ +uuid: fcba4f9d-ad19-4da4-977b-3ad742528441 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_tags + - node.type.article + - taxonomy.vocabulary.tags +_core: + default_config_hash: QdUgf_beeoaPiyKorFv0q1fcJpWH_uZTqe_xoVJacrw +id: node.article.field_tags +field_name: field_tags +entity_type: node +bundle: article +label: Tags +description: 'Enter a comma-separated list. For example: Amsterdam, Mexico City, "Cleveland, Ohio"' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + tags: tags + sort: + field: _none + auto_create: true +field_type: entity_reference diff --git a/example/drupal/config/sync/field.field.node.page.body.yml b/example/drupal/config/sync/field.field.node.page.body.yml new file mode 100644 index 0000000..b8a168e --- /dev/null +++ b/example/drupal/config/sync/field.field.node.page.body.yml @@ -0,0 +1,25 @@ +uuid: e2d861ba-9c46-4616-b82e-aef6d1cdb0de +langcode: en +status: true +dependencies: + config: + - field.storage.node.body + - node.type.page + module: + - text +_core: + default_config_hash: KgVkxLl_K3E3lvN6CEoWQIDT0V8J4Mv-fVYrAIc7-FE +id: node.page.body +field_name: body +entity_type: node +bundle: page +label: Body +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + display_summary: true + required_summary: false +field_type: text_with_summary diff --git a/example/drupal/config/sync/field.field.user.user.user_picture.yml b/example/drupal/config/sync/field.field.user.user.user_picture.yml new file mode 100644 index 0000000..2e075ef --- /dev/null +++ b/example/drupal/config/sync/field.field.user.user.user_picture.yml @@ -0,0 +1,40 @@ +uuid: 5ee954c4-f68c-4e69-8419-fc7320eaf2cc +langcode: en +status: true +dependencies: + config: + - field.storage.user.user_picture + module: + - image + - user +_core: + default_config_hash: twhm-ZOwSVkUjuLI_pQsaPo_pVLcqFfDmY-ojfqw0yk +id: user.user.user_picture +field_name: user_picture +entity_type: user +bundle: user +label: Picture +description: 'Your virtual face or picture.' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'default:file' + handler_settings: { } + file_directory: 'pictures/[date:custom:Y]-[date:custom:m]' + file_extensions: 'png gif jpg jpeg' + max_filesize: '' + max_resolution: '' + min_resolution: '' + alt_field: false + alt_field_required: false + title_field: false + title_field_required: false + default_image: + uuid: null + alt: '' + title: '' + width: null + height: null +field_type: image diff --git a/example/drupal/config/sync/field.settings.yml b/example/drupal/config/sync/field.settings.yml new file mode 100644 index 0000000..2225b8f --- /dev/null +++ b/example/drupal/config/sync/field.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: nJk0TAQBzlNo52ehiHI7bIEPLGi0BYqZvPdEn7Chfu0 +purge_batch_size: 50 diff --git a/example/drupal/config/sync/field.storage.block_content.body.yml b/example/drupal/config/sync/field.storage.block_content.body.yml new file mode 100644 index 0000000..b9885d7 --- /dev/null +++ b/example/drupal/config/sync/field.storage.block_content.body.yml @@ -0,0 +1,21 @@ +uuid: 97481da7-bacb-40f8-a67f-156f159d5766 +langcode: en +status: true +dependencies: + module: + - block_content + - text +_core: + default_config_hash: eS0snV_L3dx9shtWRTzm5eblwOJ7qKWC9IE-4GMTDFc +id: block_content.body +field_name: body +entity_type: block_content +type: text_with_summary +settings: { } +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: true +custom_storage: false diff --git a/example/drupal/config/sync/field.storage.comment.comment_body.yml b/example/drupal/config/sync/field.storage.comment.comment_body.yml new file mode 100644 index 0000000..db1ce47 --- /dev/null +++ b/example/drupal/config/sync/field.storage.comment.comment_body.yml @@ -0,0 +1,21 @@ +uuid: f641de2b-a1de-4c32-9549-ae31acfc8d1a +langcode: en +status: true +dependencies: + module: + - comment + - text +_core: + default_config_hash: swYoCch_hY8QO5uwr4FURplfnUCUlpPB4idF8WGVCpw +id: comment.comment_body +field_name: comment_body +entity_type: comment +type: text_long +settings: { } +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: true +custom_storage: false diff --git a/example/drupal/config/sync/field.storage.node.body.yml b/example/drupal/config/sync/field.storage.node.body.yml new file mode 100644 index 0000000..a552454 --- /dev/null +++ b/example/drupal/config/sync/field.storage.node.body.yml @@ -0,0 +1,21 @@ +uuid: 4ca065e4-3e3a-4921-8a5c-b8812cf46185 +langcode: en +status: true +dependencies: + module: + - node + - text +_core: + default_config_hash: EBUo7qOWqaiZaQ_RC9sLY5IoDKphS34v77VIHSACmVY +id: node.body +field_name: body +entity_type: node +type: text_with_summary +settings: { } +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: true +custom_storage: false diff --git a/example/drupal/config/sync/field.storage.node.comment.yml b/example/drupal/config/sync/field.storage.node.comment.yml new file mode 100644 index 0000000..cab44be --- /dev/null +++ b/example/drupal/config/sync/field.storage.node.comment.yml @@ -0,0 +1,22 @@ +uuid: 6210ede5-370d-4081-9cce-e7a4ba693943 +langcode: en +status: true +dependencies: + module: + - comment + - node +_core: + default_config_hash: ktCna9xmWvYZIUfOCUyDQvedn5RtnS4CRmEIwNmvYjc +id: node.comment +field_name: comment +entity_type: node +type: comment +settings: + comment_type: comment +module: comment +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/example/drupal/config/sync/field.storage.node.field_image.yml b/example/drupal/config/sync/field.storage.node.field_image.yml new file mode 100644 index 0000000..0cf0c27 --- /dev/null +++ b/example/drupal/config/sync/field.storage.node.field_image.yml @@ -0,0 +1,34 @@ +uuid: fc870464-9659-41be-af5b-c9d2fadc48bc +langcode: en +status: true +dependencies: + module: + - file + - image + - node +_core: + default_config_hash: EymokncRIZ7SgQT2IdOQhQJicX4nNc0K89ik-LxmOHE +id: node.field_image +field_name: field_image +entity_type: node +type: image +settings: + target_type: file + display_field: false + display_default: false + uri_scheme: public + default_image: + uuid: null + alt: '' + title: '' + width: null + height: null +module: image +locked: false +cardinality: 1 +translatable: true +indexes: + target_id: + - target_id +persist_with_no_fields: false +custom_storage: false diff --git a/example/drupal/config/sync/field.storage.node.field_tags.yml b/example/drupal/config/sync/field.storage.node.field_tags.yml new file mode 100644 index 0000000..2b95d18 --- /dev/null +++ b/example/drupal/config/sync/field.storage.node.field_tags.yml @@ -0,0 +1,22 @@ +uuid: 319cfa4b-2466-4ce1-8116-45ec7d8252e8 +langcode: en +status: true +dependencies: + module: + - node + - taxonomy +_core: + default_config_hash: WpOE_bs8Bs_HY2ns7n2r__de-xno0-Bxkqep5-MsHAs +id: node.field_tags +field_name: field_tags +entity_type: node +type: entity_reference +settings: + target_type: taxonomy_term +module: core +locked: false +cardinality: -1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/example/drupal/config/sync/field.storage.user.user_picture.yml b/example/drupal/config/sync/field.storage.user.user_picture.yml new file mode 100644 index 0000000..c48574d --- /dev/null +++ b/example/drupal/config/sync/field.storage.user.user_picture.yml @@ -0,0 +1,34 @@ +uuid: fc495963-30e9-4ed3-a5dc-96dd17d97433 +langcode: en +status: true +dependencies: + module: + - file + - image + - user +_core: + default_config_hash: 0q8-mw8y-Ls5I578sIPQFLp4ljpH7WvVYpzY-I9O-8E +id: user.user_picture +field_name: user_picture +entity_type: user +type: image +settings: + target_type: file + display_field: false + display_default: false + uri_scheme: public + default_image: + uuid: null + alt: '' + title: '' + width: null + height: null +module: image +locked: false +cardinality: 1 +translatable: true +indexes: + target_id: + - target_id +persist_with_no_fields: false +custom_storage: false diff --git a/example/drupal/config/sync/field_ui.settings.yml b/example/drupal/config/sync/field_ui.settings.yml new file mode 100644 index 0000000..365450f --- /dev/null +++ b/example/drupal/config/sync/field_ui.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: Q1nMi90W6YQxKzZAgJQw7Ag9U4JrsEUwkomF0lhvbIM +field_prefix: field_ diff --git a/example/drupal/config/sync/file.settings.yml b/example/drupal/config/sync/file.settings.yml new file mode 100644 index 0000000..1ca5bd9 --- /dev/null +++ b/example/drupal/config/sync/file.settings.yml @@ -0,0 +1,8 @@ +_core: + default_config_hash: 0aMkoXYnax5_tHI9C9zHs-K48KJ6K75PHtD9x-0nbgM +description: + type: textfield + length: 128 +icon: + directory: core/modules/file/icons +make_unused_managed_files_temporary: false diff --git a/example/drupal/config/sync/filter.format.basic_html.yml b/example/drupal/config/sync/filter.format.basic_html.yml new file mode 100644 index 0000000..dc525b1 --- /dev/null +++ b/example/drupal/config/sync/filter.format.basic_html.yml @@ -0,0 +1,45 @@ +uuid: e895ab43-2681-4eb9-a8a3-151fe76e5b8e +langcode: en +status: true +dependencies: + module: + - editor +_core: + default_config_hash: P8ddpAIKtawJDi5SzOwCzVnnNYqONewSTJ6Xn0dW_aQ +name: 'Basic HTML' +format: basic_html +weight: 0 +filters: + filter_html: + id: filter_html + provider: filter + status: true + weight: -10 + settings: + allowed_html: '