mirror of
https://github.com/tag1consulting/d7_to_d10_migration.git
synced 2024-11-12 19:33:27 +00:00
Initial commit
This commit is contained in:
commit
1664d5cfe6
2772 changed files with 600692 additions and 0 deletions
207
D7_SITE_AUDIT.md
Normal file
207
D7_SITE_AUDIT.md
Normal file
|
@ -0,0 +1,207 @@
|
|||
# Drupal 7 site audit
|
||||
|
||||
## Modules and themes
|
||||
|
||||
```
|
||||
ddev drush pm:list --fields=package,project,name,type,status,version --format=csv | sort > d7_projects.csv
|
||||
```
|
||||
|
||||
## Content types
|
||||
|
||||
```sql
|
||||
SELECT
|
||||
nt.module AS provider_module,
|
||||
nt.type AS machine_name,
|
||||
nt.name,
|
||||
nt.description,
|
||||
COUNT(n.nid) AS node_count,
|
||||
COUNT(CASE WHEN n.status = 0 THEN 1 ELSE NULL END) AS unpublished_count
|
||||
FROM node_type AS nt
|
||||
LEFT JOIN node AS n ON n.type = nt.type
|
||||
GROUP BY nt.type
|
||||
ORDER BY node_count DESC;
|
||||
```
|
||||
|
||||
## Taxonomy terms
|
||||
|
||||
```sql
|
||||
SELECT
|
||||
tv.module,
|
||||
tv.vid,
|
||||
tv.machine_name,
|
||||
tv.name,
|
||||
tv.description,
|
||||
COUNT(td.tid) AS term_count
|
||||
FROM taxonomy_vocabulary AS tv
|
||||
LEFT JOIN taxonomy_term_data AS td ON td.vid = tv.vid
|
||||
GROUP BY tv.vid
|
||||
ORDER BY term_count DESC;
|
||||
```
|
||||
|
||||
## Field instances
|
||||
|
||||
```sql
|
||||
SELECT
|
||||
fci.entity_type,
|
||||
fci.bundle,
|
||||
fci.field_name,
|
||||
fc.type,
|
||||
fc.module
|
||||
FROM field_config_instance AS fci
|
||||
INNER JOIN field_config AS fc ON fc.id = fci.field_id
|
||||
ORDER BY
|
||||
entity_type ASC,
|
||||
bundle ASC,
|
||||
field_name ASC;
|
||||
```
|
||||
|
||||
## Views
|
||||
|
||||
One record per view
|
||||
|
||||
```sql
|
||||
SELECT
|
||||
vv.base_table,
|
||||
vv.name AS machine_name,
|
||||
vv.human_name AS label,
|
||||
vv.description
|
||||
FROM views_view AS vv
|
||||
ORDER BY
|
||||
base_table ASC,
|
||||
machine_name ASC;
|
||||
```
|
||||
|
||||
One record per view display
|
||||
|
||||
```sql
|
||||
SELECT
|
||||
vv.base_table,
|
||||
vv.name AS machine_name,
|
||||
vv.human_name AS label,
|
||||
vv.description,
|
||||
vd.display_plugin,
|
||||
vd.display_title,
|
||||
vd.position AS display_position
|
||||
FROM views_view AS vv
|
||||
INNER JOIN views_display AS vd ON vd.vid = vv.vid
|
||||
ORDER BY
|
||||
vv.base_table ASC,
|
||||
vv.name ASC,
|
||||
vd.position ASC;
|
||||
```
|
||||
|
||||
## Field collections
|
||||
|
||||
```sql
|
||||
SELECT DISTINCT
|
||||
field_name AS field_collection
|
||||
FROM field_collection_item
|
||||
ORDER BY field_name ASC;
|
||||
```
|
||||
|
||||
## Webform submissions
|
||||
|
||||
```sql
|
||||
SELECT
|
||||
n.title AS node_title,
|
||||
n.nid AS node_id,
|
||||
COUNT(ws.nid) AS submission_count,
|
||||
n.status AS node_status,
|
||||
w.status AS webform_status
|
||||
FROM webform AS w
|
||||
INNER JOIN node AS n ON n.nid = w.nid
|
||||
LEFT JOIN webform_submissions AS ws ON ws.nid = w.nid
|
||||
GROUP BY n.nid, n.title, n.status, w.status
|
||||
ORDER BY submission_count DESC;
|
||||
```
|
||||
|
||||
## Menus
|
||||
|
||||
```sql
|
||||
SELECT
|
||||
COUNT(mc.menu_name) AS link_count,
|
||||
mc.menu_name AS machine_name,
|
||||
mc.title AS name,
|
||||
mc.description
|
||||
FROM menu_custom AS mc
|
||||
LEFT JOIN menu_links AS ml ON ml.menu_name = mc.menu_name
|
||||
GROUP BY mc.menu_name
|
||||
ORDER BY link_count DESC;
|
||||
```
|
||||
|
||||
## Roles
|
||||
|
||||
```sql
|
||||
SELECT
|
||||
rid AS role_id,
|
||||
name
|
||||
FROM role
|
||||
ORDER BY rid ASC;
|
||||
```
|
||||
|
||||
## Files
|
||||
|
||||
Filemimes
|
||||
|
||||
```sql
|
||||
SELECT
|
||||
COUNT(*) AS mime_count,
|
||||
filemime
|
||||
FROM file_managed
|
||||
GROUP BY filemime
|
||||
ORDER BY mime_count DESC;
|
||||
```
|
||||
|
||||
File schemas
|
||||
|
||||
```sql
|
||||
SELECT DISTINCT
|
||||
SUBSTRING_INDEX(uri,'://', 1) AS _schema
|
||||
FROM file_managed;
|
||||
```
|
||||
|
||||
File types when using the [File Entity](https://www.drupal.org/project/file_entity) module
|
||||
|
||||
```sql
|
||||
SELECT DISTINCT
|
||||
type
|
||||
FROM file_managed;
|
||||
```
|
||||
|
||||
## Text formats
|
||||
|
||||
Filter formats
|
||||
|
||||
```sql
|
||||
SELECT
|
||||
format,
|
||||
name
|
||||
FROM filter_format;
|
||||
```
|
||||
|
||||
Filters
|
||||
|
||||
```sql
|
||||
SELECT DISTINCT
|
||||
module,
|
||||
name AS filter_name
|
||||
FROM filter
|
||||
ORDER BY
|
||||
module ASC,
|
||||
name ASC;
|
||||
```
|
||||
|
||||
## Image styles
|
||||
|
||||
```sql
|
||||
SELECT
|
||||
ims.label AS style_label,
|
||||
ims.name AS style_name,
|
||||
ime.name AS effect_name,
|
||||
ime.weight AS effect_weight
|
||||
FROM image_styles AS ims
|
||||
INNER JOIN image_effects AS ime ON ime.isid = ims.isid
|
||||
ORDER BY
|
||||
style_label ASC,
|
||||
effect_weight ASC;
|
||||
```
|
33
README.md
Normal file
33
README.md
Normal file
|
@ -0,0 +1,33 @@
|
|||
# Requirements
|
||||
|
||||
[DDEV](https://ddev.com) is required to run this example project. See the [installation guide](https://ddev.readthedocs.io/en/stable/users/install/ddev-installation/) for instructions for your operating system. You can get support via:
|
||||
|
||||
* [Discord](https://discord.gg/kDvSFBSZfs)
|
||||
* The #ddev channel in [Drupal Slack](https://drupal.org/slack)
|
||||
|
||||
# Drupal 7 setup
|
||||
|
||||
Execute these commands to get a fully populated Drupal 7 site. It will be available at https://migration-drupal7.ddev.site/
|
||||
|
||||
```
|
||||
cd drupal7
|
||||
ddev start
|
||||
ddev import-db --file ../assets/drupal7_db.sql.gz
|
||||
ddev import-files --source ../assets/drupal7_files.tar.gz
|
||||
ddev restart
|
||||
ddev launch
|
||||
ddev drush uli
|
||||
```
|
||||
|
||||
# Drupal 10 setup
|
||||
|
||||
Execute these commands to get a Drupal 10 site. It will be available at https://migration-drupal10.ddev.site/
|
||||
|
||||
```
|
||||
cd drupal10
|
||||
ddev start
|
||||
ddev composer install
|
||||
ddev composer si
|
||||
ddev launch
|
||||
ddev drush uli
|
||||
```
|
BIN
assets/drupal7_db.sql.gz
Normal file
BIN
assets/drupal7_db.sql.gz
Normal file
Binary file not shown.
BIN
assets/drupal7_files.tar.gz
Normal file
BIN
assets/drupal7_files.tar.gz
Normal file
Binary file not shown.
285
drupal10/.ddev/config.yaml
Normal file
285
drupal10/.ddev/config.yaml
Normal file
|
@ -0,0 +1,285 @@
|
|||
name: migration-drupal10
|
||||
type: drupal
|
||||
docroot: web
|
||||
php_version: "8.3"
|
||||
webserver_type: nginx-fpm
|
||||
xdebug_enabled: false
|
||||
additional_hostnames: []
|
||||
additional_fqdns: []
|
||||
database:
|
||||
type: mariadb
|
||||
version: "10.6"
|
||||
use_dns_when_possible: true
|
||||
composer_version: "2"
|
||||
web_environment: []
|
||||
corepack_enable: false
|
||||
|
||||
# Key features of DDEV's config.yaml:
|
||||
|
||||
# name: <projectname> # Name of the project, automatically provides
|
||||
# http://projectname.ddev.site and https://projectname.ddev.site
|
||||
|
||||
# type: <projecttype> # backdrop, craftcms, django4, drupal, drupal6, drupal7, laravel, magento, magento2, php, python, shopware6, silverstripe, typo3, wordpress
|
||||
# See https://ddev.readthedocs.io/en/stable/users/quickstart/ for more
|
||||
# information on the different project types
|
||||
# "drupal" covers recent Drupal 8+
|
||||
|
||||
# docroot: <relative_path> # Relative path to the directory containing index.php.
|
||||
|
||||
# php_version: "8.2" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"
|
||||
|
||||
# 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: <docker_image> # nginx/php docker image.
|
||||
|
||||
# database:
|
||||
# type: <dbtype> # mysql, mariadb, postgres
|
||||
# version: <version> # database version, like "10.11" or "8.0"
|
||||
# MariaDB versions can be 5.5-10.8, 10.11, and 11.4.
|
||||
# MySQL versions can be 5.5-8.0.
|
||||
# PostgreSQL versions can be 9-16.
|
||||
|
||||
# router_http_port: <port> # Port to be used for http (defaults to global configuration, usually 80)
|
||||
# router_https_port: <port> # Port for https (defaults to global configuration, usually 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, apache-fpm, or nginx-gunicorn
|
||||
|
||||
# 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>
|
||||
# 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"
|
||||
# You can set it to "" or "2" (default) for Composer v2 or "1" for Composer v1
|
||||
# to use the latest major version available at the time your container is built.
|
||||
# It is also possible to use each other Composer version channel. This includes:
|
||||
# - 2.2 (latest Composer LTS version)
|
||||
# - stable
|
||||
# - preview
|
||||
# - snapshot
|
||||
# Alternatively, an explicit Composer version may be specified, for example "2.2.18".
|
||||
# To reinstall Composer after the image was built, run "ddev debug refresh".
|
||||
|
||||
# nodejs_version: "20"
|
||||
# change from the default system Node.js version to any other version.
|
||||
# Numeric version numbers can be complete (i.e. 18.15.0) or
|
||||
# incomplete (18, 17.2, 16). 'lts' and 'latest' can be used as well along with
|
||||
# other named releases.
|
||||
# see https://www.npmjs.com/package/n#specifying-nodejs-versions
|
||||
# Note that you can continue using 'ddev nvm' or nvm inside the web container
|
||||
# to change the project's installed node version if you need to.
|
||||
|
||||
# corepack_enable: false
|
||||
# Change to 'true' to 'corepack enable' and gain access to latest versions of yarn/pnpm
|
||||
|
||||
# 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_dirs: "custom/upload/dir"
|
||||
#
|
||||
# upload_dirs:
|
||||
# - custom/upload/dir
|
||||
# - ../private
|
||||
#
|
||||
# would set the destination paths for ddev import-files to <docroot>/custom/upload/dir
|
||||
# When Mutagen is enabled this path is bind-mounted so that all the files
|
||||
# in the upload_dirs don't have to be synced into Mutagen.
|
||||
|
||||
# disable_upload_dirs_warning: false
|
||||
# If true, turns off the normal warning that says
|
||||
# "You have Mutagen enabled and your 'php' project type doesn't have upload_dirs set"
|
||||
|
||||
# ddev_version_constraint: ""
|
||||
# Example:
|
||||
# ddev_version_constraint: ">= 1.22.4"
|
||||
# This will enforce that the running ddev version is within this constraint.
|
||||
# See https://github.com/Masterminds/semver#checking-version-constraints for
|
||||
# supported constraint formats
|
||||
|
||||
# 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, 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.
|
||||
|
||||
# performance_mode: "global"
|
||||
# DDEV offers performance optimization strategies to improve the filesystem
|
||||
# performance depending on your host system. Should be configured globally.
|
||||
#
|
||||
# If set, will override the global config. Possible values are:
|
||||
# - "global": uses the value from the global config.
|
||||
# - "none": disables performance optimization for this project.
|
||||
# - "mutagen": enables Mutagen for this project.
|
||||
# - "nfs": enables NFS for this project.
|
||||
#
|
||||
# See https://ddev.readthedocs.io/en/stable/users/install/performance/#nfs
|
||||
# See https://ddev.readthedocs.io/en/stable/users/install/performance/#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.
|
||||
|
||||
# mailpit_http_port: "8025"
|
||||
# mailpit_https_port: "8026"
|
||||
# The Mailpit ports can be changed from the default 8025 and 8026
|
||||
|
||||
# host_mailpit_port: "8025"
|
||||
# The mailpit 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: --basic-auth username:pass1234
|
||||
# Provide extra flags to the "ngrok http" command, see
|
||||
# https://ngrok.com/docs/ngrok-agent/config 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 additional.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 the localhost interface only. This means that ports
|
||||
# will be available on the local network if the host firewall
|
||||
# allows it.
|
||||
|
||||
# default_container_timeout: 120
|
||||
# The default time that DDEV waits for all containers to become ready can be increased from
|
||||
# the default 120. This helps in importing huge databases, for example.
|
||||
|
||||
#web_extra_exposed_ports:
|
||||
#- name: nodejs
|
||||
# container_port: 3000
|
||||
# http_port: 2999
|
||||
# https_port: 3000
|
||||
#- name: something
|
||||
# container_port: 4000
|
||||
# https_port: 4000
|
||||
# http_port: 3999
|
||||
# Allows a set of extra ports to be exposed via ddev-router
|
||||
# Fill in all three fields even if you don’t intend to use the https_port!
|
||||
# If you don’t add https_port, then it defaults to 0 and ddev-router will fail to start.
|
||||
#
|
||||
# The port behavior on the ddev-webserver must be arranged separately, for example
|
||||
# using web_extra_daemons.
|
||||
# For example, with a web app on port 3000 inside the container, this config would
|
||||
# expose that web app on https://<project>.ddev.site:9999 and http://<project>.ddev.site:9998
|
||||
# web_extra_exposed_ports:
|
||||
# - name: myapp
|
||||
# container_port: 3000
|
||||
# http_port: 9998
|
||||
# https_port: 9999
|
||||
|
||||
#web_extra_daemons:
|
||||
#- name: "http-1"
|
||||
# command: "/var/www/html/node_modules/.bin/http-server -p 3000"
|
||||
# directory: /var/www/html
|
||||
#- name: "http-2"
|
||||
# command: "/var/www/html/node_modules/.bin/http-server /var/www/html/sub -p 3000"
|
||||
# directory: /var/www/html
|
||||
|
||||
# override_config: false
|
||||
# By default, config.*.yaml files are *merged* into the configuration
|
||||
# But this means that some things can't be overridden
|
||||
# For example, if you have 'use_dns_when_possible: true'' you can't override it with a merge
|
||||
# and you can't erase existing hooks or all environment variables.
|
||||
# However, with "override_config: true" in a particular config.*.yaml file,
|
||||
# 'use_dns_when_possible: false' can override the existing values, and
|
||||
# hooks:
|
||||
# post-start: []
|
||||
# or
|
||||
# web_environment: []
|
||||
# or
|
||||
# additional_hostnames: []
|
||||
# can have their intended affect. 'override_config' affects only behavior of the
|
||||
# config.*.yaml file it exists in.
|
||||
|
||||
# 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/extend/custom-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 sql:sanitize
|
||||
# - exec: drush updatedb
|
||||
# - exec: drush cache:rebuild
|
17
drupal10/.editorconfig
Normal file
17
drupal10/.editorconfig
Normal file
|
@ -0,0 +1,17 @@
|
|||
# Drupal editor configuration normalization
|
||||
# @see http://editorconfig.org/
|
||||
|
||||
# This is the top-most .editorconfig file; do not search in parent directories.
|
||||
root = true
|
||||
|
||||
# All files.
|
||||
[*]
|
||||
end_of_line = LF
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
||||
|
||||
[composer.{json,lock}]
|
||||
indent_size = 4
|
64
drupal10/.gitattributes
vendored
Normal file
64
drupal10/.gitattributes
vendored
Normal file
|
@ -0,0 +1,64 @@
|
|||
# Drupal git normalization
|
||||
# @see https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
|
||||
# @see https://www.drupal.org/node/1542048
|
||||
|
||||
# Normally these settings would be done with macro attributes for improved
|
||||
# readability and easier maintenance. However macros can only be defined at the
|
||||
# repository root directory. Drupal avoids making any assumptions about where it
|
||||
# is installed.
|
||||
|
||||
# Define text file attributes.
|
||||
# - Treat them as text.
|
||||
# - Ensure no CRLF line-endings, neither on checkout nor on checkin.
|
||||
# - Detect whitespace errors.
|
||||
# - Exposed by default in `git diff --color` on the CLI.
|
||||
# - Validate with `git diff --check`.
|
||||
# - Deny applying with `git apply --whitespace=error-all`.
|
||||
# - Fix automatically with `git apply --whitespace=fix`.
|
||||
|
||||
*.config text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
|
||||
*.css text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
|
||||
*.dist text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
|
||||
*.engine text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=php
|
||||
*.html text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=html
|
||||
*.inc text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=php
|
||||
*.install text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=php
|
||||
*.js text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
|
||||
*.json text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
|
||||
*.lock text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
|
||||
*.map text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
|
||||
*.md text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
|
||||
*.module text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=php
|
||||
*.php text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=php
|
||||
*.po text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
|
||||
*.profile text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=php
|
||||
*.script text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
|
||||
*.sh text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=php
|
||||
*.sql text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
|
||||
*.svg text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
|
||||
*.theme text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=php
|
||||
*.twig text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
|
||||
*.txt text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
|
||||
*.xml text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
|
||||
*.yml text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
|
||||
|
||||
# PHPStan's baseline uses tabs instead of spaces.
|
||||
core/.phpstan-baseline.php text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tabwidth=2 diff=php linguist-language=php
|
||||
|
||||
# Define binary file attributes.
|
||||
# - Do not treat them as text.
|
||||
# - Include binary diff in patches instead of "binary files differ."
|
||||
*.eot -text diff
|
||||
*.exe -text diff
|
||||
*.gif -text diff
|
||||
*.gz -text diff
|
||||
*.ico -text diff
|
||||
*.jpeg -text diff
|
||||
*.jpg -text diff
|
||||
*.otf -text diff
|
||||
*.phar -text diff
|
||||
*.png -text diff
|
||||
*.svgz -text diff
|
||||
*.ttf -text diff
|
||||
*.woff -text diff
|
||||
*.woff2 -text diff
|
25
drupal10/.gitignore
vendored
Normal file
25
drupal10/.gitignore
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
# Ignore directories generated by Composer
|
||||
/drush/contrib/
|
||||
/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/
|
||||
|
||||
# Ignore SimpleTest multi-site environment
|
||||
/web/sites/simpletest
|
||||
|
||||
# Ignore files generated by common IDEs
|
||||
/.idea/
|
||||
/.vscode/
|
||||
|
||||
# Ignore .env files as they are personal
|
||||
/.env
|
||||
|
87
drupal10/composer.json
Normal file
87
drupal10/composer.json
Normal file
|
@ -0,0 +1,87 @@
|
|||
{
|
||||
"name": "drupal/recommended-project",
|
||||
"description": "Project template for Drupal projects with a relocated document root",
|
||||
"type": "project",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"homepage": "https://www.drupal.org/project/drupal",
|
||||
"support": {
|
||||
"docs": "https://www.drupal.org/docs/user_guide/en/index.html",
|
||||
"chat": "https://www.drupal.org/node/314178"
|
||||
},
|
||||
"repositories": [
|
||||
{
|
||||
"type": "composer",
|
||||
"url": "https://packages.drupal.org/8"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"composer/installers": "^2.0",
|
||||
"drupal/address": "^2.0",
|
||||
"drupal/core-composer-scaffold": "^10.3.0",
|
||||
"drupal/core-recommended": "^10.3.0",
|
||||
"drupal/field_group": "^3.4",
|
||||
"drupal/migrate_plus": "^6.0",
|
||||
"drupal/migrate_skip_fields": "^1.0@alpha",
|
||||
"drupal/migrate_upgrade": "^4.0",
|
||||
"drupal/migrate_url2link": "^1.0",
|
||||
"drupal/paragraphs": "^1.17",
|
||||
"drupal/pathauto": "^1.12",
|
||||
"drupal/social_link_field": "^2.0",
|
||||
"drupal/views_migration": "^1.2",
|
||||
"drush/drush": "^13.0@beta"
|
||||
},
|
||||
"conflict": {
|
||||
"drupal/drupal": "*"
|
||||
},
|
||||
"scripts": {
|
||||
"si": "drush --yes sql:drop && drush --yes -v site:install tag1_profile --existing-config"
|
||||
},
|
||||
"minimum-stability": "stable",
|
||||
"prefer-stable": true,
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
"composer/installers": true,
|
||||
"drupal/core-composer-scaffold": true,
|
||||
"phpstan/extension-installer": true,
|
||||
"dealerdirect/phpcodesniffer-composer-installer": true,
|
||||
"php-http/discovery": true
|
||||
},
|
||||
"sort-packages": 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"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
7382
drupal10/composer.lock
generated
Normal file
7382
drupal10/composer.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
0
drupal10/config/.gitkeep
Normal file
0
drupal10/config/.gitkeep
Normal file
24
drupal10/config/.htaccess
Normal file
24
drupal10/config/.htaccess
Normal file
|
@ -0,0 +1,24 @@
|
|||
# Deny all requests from Apache 2.4+.
|
||||
<IfModule mod_authz_core.c>
|
||||
Require all denied
|
||||
</IfModule>
|
||||
|
||||
# Deny all requests from Apache 2.0-2.2.
|
||||
<IfModule !mod_authz_core.c>
|
||||
Deny from all
|
||||
</IfModule>
|
||||
|
||||
# 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
|
||||
<Files *>
|
||||
# Override the handler again if we're run later in the evaluation list.
|
||||
SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
|
||||
</Files>
|
||||
|
||||
# If we know how to do it safely, disable the PHP engine entirely.
|
||||
<IfModule mod_php.c>
|
||||
php_flag engine off
|
||||
</IfModule>
|
5
drupal10/config/announcements_feed.settings.yml
Normal file
5
drupal10/config/announcements_feed.settings.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
_core:
|
||||
default_config_hash: 0G5pZBcxbg8ONYzNLd1RJIsvuFFewm9htnS4I-ABKJ8
|
||||
max_age: 86400
|
||||
cron_interval: 21600
|
||||
limit: 10
|
3
drupal10/config/automated_cron.settings.yml
Normal file
3
drupal10/config/automated_cron.settings.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
_core:
|
||||
default_config_hash: fUksROt4FfkAU9BV4hV2XvhTBSS2nTNrZS4U7S-tKrs
|
||||
interval: 10800
|
22
drupal10/config/block.block.claro_breadcrumbs.yml
Normal file
22
drupal10/config/block.block.claro_breadcrumbs.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 7df65449-6701-494e-ab1e-8978aa393636
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: NjcxOBrPOiK5-38t56DwFBDVY4yer7YSlbRWXFuHe7A
|
||||
id: claro_breadcrumbs
|
||||
theme: claro
|
||||
region: breadcrumb
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_breadcrumb_block
|
||||
settings:
|
||||
id: system_breadcrumb_block
|
||||
label: Breadcrumbs
|
||||
label_display: '0'
|
||||
provider: system
|
||||
visibility: { }
|
22
drupal10/config/block.block.claro_content.yml
Normal file
22
drupal10/config/block.block.claro_content.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: e0b5023b-0806-45c1-83cb-22e4e241182a
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: a0Yyx1GeyKarZ4T_yXQBR_ZFKnXiFLtxAb6gWLd8nr0
|
||||
id: claro_content
|
||||
theme: claro
|
||||
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: { }
|
22
drupal10/config/block.block.claro_help.yml
Normal file
22
drupal10/config/block.block.claro_help.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 691d1c73-2a96-4e7d-ab50-a51a03f93663
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- help
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: jccFSSVqV0WCDb6NtML1VWAWTtDbZ-zn5YgTRMgMrIM
|
||||
id: claro_help
|
||||
theme: claro
|
||||
region: help
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: help_block
|
||||
settings:
|
||||
id: help_block
|
||||
label: Help
|
||||
label_display: '0'
|
||||
provider: help
|
||||
visibility: { }
|
32
drupal10/config/block.block.claro_help_search.yml
Normal file
32
drupal10/config/block.block.claro_help_search.yml
Normal file
|
@ -0,0 +1,32 @@
|
|||
uuid: 0de0d4cf-e6ce-41bc-8812-8181dca95338
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- search
|
||||
- system
|
||||
theme:
|
||||
- claro
|
||||
enforced:
|
||||
config:
|
||||
- search.page.help_search
|
||||
_core:
|
||||
default_config_hash: 2ToeZLvlHKTeFY74gpgu1PejLoFyCECLO_gw6rAZwqw
|
||||
id: claro_help_search
|
||||
theme: claro
|
||||
region: help
|
||||
weight: -4
|
||||
provider: null
|
||||
plugin: search_form_block
|
||||
settings:
|
||||
id: search_form_block
|
||||
label: 'Search help'
|
||||
label_display: visible
|
||||
provider: search
|
||||
page_id: help_search
|
||||
visibility:
|
||||
request_path:
|
||||
id: request_path
|
||||
negate: false
|
||||
context_mapping: { }
|
||||
pages: /admin/help
|
20
drupal10/config/block.block.claro_local_actions.yml
Normal file
20
drupal10/config/block.block.claro_local_actions.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
uuid: 25d71f89-ee95-410d-bc8c-a00a2e57ab06
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: CdXfDmRgAvms7EQovxxWPdYi0GitxeRbVtScYK16ZH0
|
||||
id: claro_local_actions
|
||||
theme: claro
|
||||
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: { }
|
22
drupal10/config/block.block.claro_messages.yml
Normal file
22
drupal10/config/block.block.claro_messages.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 2677e3c6-64a5-49fa-b32e-aa8145929e43
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: '-Ac3ISpIT0PQ-whzD7_dw0SdKi6dAbRFNWdSjOiVDqg'
|
||||
id: claro_messages
|
||||
theme: claro
|
||||
region: highlighted
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_messages_block
|
||||
settings:
|
||||
id: system_messages_block
|
||||
label: 'Status messages'
|
||||
label_display: '0'
|
||||
provider: system
|
||||
visibility: { }
|
20
drupal10/config/block.block.claro_page_title.yml
Normal file
20
drupal10/config/block.block.claro_page_title.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
uuid: df4dcae2-9233-4494-a649-d2c43a16d0d3
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: fNwDdW063tk_ktzSWzZVeQS9wzvLooVO280BQ9WrsIs
|
||||
id: claro_page_title
|
||||
theme: claro
|
||||
region: header
|
||||
weight: -30
|
||||
provider: null
|
||||
plugin: page_title_block
|
||||
settings:
|
||||
id: page_title_block
|
||||
label: 'Page title'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
visibility: { }
|
22
drupal10/config/block.block.claro_primary_local_tasks.yml
Normal file
22
drupal10/config/block.block.claro_primary_local_tasks.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 5d0269ac-94be-4c95-9132-f2d080a09943
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: ACjBZI5shAMiiUpsz-inLYVXDqNNXRnSzAWV3kV_8Hw
|
||||
id: claro_primary_local_tasks
|
||||
theme: claro
|
||||
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: { }
|
22
drupal10/config/block.block.claro_secondary_local_tasks.yml
Normal file
22
drupal10/config/block.block.claro_secondary_local_tasks.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 723ef8f9-3881-4ed0-bead-9df6472226d9
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: 2L0geP-ixCbCkEpW6BVF6H7vDUZN4ea07_Y9CociQm4
|
||||
id: claro_secondary_local_tasks
|
||||
theme: claro
|
||||
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: { }
|
27
drupal10/config/block.block.olivero_account_menu.yml
Normal file
27
drupal10/config/block.block.olivero_account_menu.yml
Normal file
|
@ -0,0 +1,27 @@
|
|||
uuid: f406a961-81b8-4e2f-a5fc-3a0a75a2fef5
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.account
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- olivero
|
||||
_core:
|
||||
default_config_hash: gmxYWWHmgbe0Pnv8y48ZLSLH5mEHejOjAP6RLxUfdzU
|
||||
id: olivero_account_menu
|
||||
theme: olivero
|
||||
region: secondary_menu
|
||||
weight: -4
|
||||
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: { }
|
22
drupal10/config/block.block.olivero_breadcrumbs.yml
Normal file
22
drupal10/config/block.block.olivero_breadcrumbs.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 76f27f7e-ab15-48cf-a586-8f3f130534d9
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- olivero
|
||||
_core:
|
||||
default_config_hash: VhBzWb7lMRtIOg9G7VSw_0uopi-7zXeHq4vXqqV1HFE
|
||||
id: olivero_breadcrumbs
|
||||
theme: olivero
|
||||
region: breadcrumb
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_breadcrumb_block
|
||||
settings:
|
||||
id: system_breadcrumb_block
|
||||
label: Breadcrumbs
|
||||
label_display: '0'
|
||||
provider: system
|
||||
visibility: { }
|
22
drupal10/config/block.block.olivero_content.yml
Normal file
22
drupal10/config/block.block.olivero_content.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: cd3916be-d592-4b40-b276-03d95e9aded1
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- olivero
|
||||
_core:
|
||||
default_config_hash: erQSEZF2XUjNmgTl0uNRBzmg18ZGXwUcw2FhApoeuHk
|
||||
id: olivero_content
|
||||
theme: olivero
|
||||
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: { }
|
22
drupal10/config/block.block.olivero_help.yml
Normal file
22
drupal10/config/block.block.olivero_help.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: af7e8e41-3c35-47ec-83ea-27d570a7add1
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- help
|
||||
theme:
|
||||
- olivero
|
||||
_core:
|
||||
default_config_hash: VfPFqqxfkomud5CO8DUijw85QIl9GIxh_nIxLOYESxg
|
||||
id: olivero_help
|
||||
theme: olivero
|
||||
region: content_above
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: help_block
|
||||
settings:
|
||||
id: help_block
|
||||
label: Help
|
||||
label_display: '0'
|
||||
provider: help
|
||||
visibility: { }
|
27
drupal10/config/block.block.olivero_main_menu.yml
Normal file
27
drupal10/config/block.block.olivero_main_menu.yml
Normal file
|
@ -0,0 +1,27 @@
|
|||
uuid: b69aee3b-9597-4659-9594-ee43f8a8836f
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.main
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- olivero
|
||||
_core:
|
||||
default_config_hash: KWAiziL39uEzmOJEql_wbUP2RtqGceL3WM2CfxhMelE
|
||||
id: olivero_main_menu
|
||||
theme: olivero
|
||||
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: 2
|
||||
expand_all_items: true
|
||||
visibility: { }
|
22
drupal10/config/block.block.olivero_messages.yml
Normal file
22
drupal10/config/block.block.olivero_messages.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: b566f769-ef8e-4f37-8ddf-ddcb3e66d913
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- olivero
|
||||
_core:
|
||||
default_config_hash: BZ5tpW7H8X4PVGRm3MImTIHd2tN0eF7zOtp4SpRYUA0
|
||||
id: olivero_messages
|
||||
theme: olivero
|
||||
region: highlighted
|
||||
weight: -5
|
||||
provider: null
|
||||
plugin: system_messages_block
|
||||
settings:
|
||||
id: system_messages_block
|
||||
label: 'Status messages'
|
||||
label_display: '0'
|
||||
provider: system
|
||||
visibility: { }
|
20
drupal10/config/block.block.olivero_page_title.yml
Normal file
20
drupal10/config/block.block.olivero_page_title.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
uuid: 2b0799d9-446e-4f4a-ab77-46b368627d31
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- olivero
|
||||
_core:
|
||||
default_config_hash: 6aOgWsNTXjqrDm98TXSAjP6qd2nCijD1xw45MrnbK-Y
|
||||
id: olivero_page_title
|
||||
theme: olivero
|
||||
region: content_above
|
||||
weight: -5
|
||||
provider: null
|
||||
plugin: page_title_block
|
||||
settings:
|
||||
id: page_title_block
|
||||
label: 'Page title'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
visibility: { }
|
22
drupal10/config/block.block.olivero_powered.yml
Normal file
22
drupal10/config/block.block.olivero_powered.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: d40fa2f7-3073-4d52-8c9f-56b86dbb72f5
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- olivero
|
||||
_core:
|
||||
default_config_hash: eYL19CLDyinGTWYQfBD1DswWzglEotE_kHnHx3AxTXM
|
||||
id: olivero_powered
|
||||
theme: olivero
|
||||
region: footer_bottom
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_powered_by_block
|
||||
settings:
|
||||
id: system_powered_by_block
|
||||
label: 'Powered by Drupal'
|
||||
label_display: '0'
|
||||
provider: system
|
||||
visibility: { }
|
|
@ -0,0 +1,20 @@
|
|||
uuid: 02121c29-75ea-40b1-8a90-cbf6c2c4462f
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- olivero
|
||||
_core:
|
||||
default_config_hash: Q9_2whdOj1YIomfvsIfopROW4FT_X5pY0DjdOiOaQ5U
|
||||
id: olivero_primary_admin_actions
|
||||
theme: olivero
|
||||
region: highlighted
|
||||
weight: -5
|
||||
provider: null
|
||||
plugin: local_actions_block
|
||||
settings:
|
||||
id: local_actions_block
|
||||
label: 'Primary admin actions'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
visibility: { }
|
22
drupal10/config/block.block.olivero_primary_local_tasks.yml
Normal file
22
drupal10/config/block.block.olivero_primary_local_tasks.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 7c547979-802d-4514-9468-3031c04df942
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- olivero
|
||||
_core:
|
||||
default_config_hash: nGE3EoPQQaQCuqTUtZgw0-KIzmrqdKDzdNQf2JyPUt4
|
||||
id: olivero_primary_local_tasks
|
||||
theme: olivero
|
||||
region: highlighted
|
||||
weight: -4
|
||||
provider: null
|
||||
plugin: local_tasks_block
|
||||
settings:
|
||||
id: local_tasks_block
|
||||
label: 'Primary tabs'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
primary: true
|
||||
secondary: false
|
||||
visibility: { }
|
23
drupal10/config/block.block.olivero_search_form_narrow.yml
Normal file
23
drupal10/config/block.block.olivero_search_form_narrow.yml
Normal file
|
@ -0,0 +1,23 @@
|
|||
uuid: 8d680e1b-71c1-42a9-9074-8f4236a45067
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- search
|
||||
theme:
|
||||
- olivero
|
||||
_core:
|
||||
default_config_hash: yEBET0cqDbk8dkWzaJw-8CKft0961VBflsISoSR6Lj8
|
||||
id: olivero_search_form_narrow
|
||||
theme: olivero
|
||||
region: primary_menu
|
||||
weight: -4
|
||||
provider: null
|
||||
plugin: search_form_block
|
||||
settings:
|
||||
id: search_form_block
|
||||
label: 'Search form (narrow)'
|
||||
label_display: '0'
|
||||
provider: search
|
||||
page_id: ''
|
||||
visibility: { }
|
23
drupal10/config/block.block.olivero_search_form_wide.yml
Normal file
23
drupal10/config/block.block.olivero_search_form_wide.yml
Normal file
|
@ -0,0 +1,23 @@
|
|||
uuid: 323b8ea4-d808-4d06-93c3-b070e53df21a
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- search
|
||||
theme:
|
||||
- olivero
|
||||
_core:
|
||||
default_config_hash: imMyHD6LYci0gtXq56qr9ZKGHzbEG9uFydrN5EhKtSU
|
||||
id: olivero_search_form_wide
|
||||
theme: olivero
|
||||
region: secondary_menu
|
||||
weight: -5
|
||||
provider: null
|
||||
plugin: search_form_block
|
||||
settings:
|
||||
id: search_form_block
|
||||
label: 'Search form (wide)'
|
||||
label_display: '0'
|
||||
provider: search
|
||||
page_id: ''
|
||||
visibility: { }
|
|
@ -0,0 +1,22 @@
|
|||
uuid: 4d60b6d1-79ff-41c4-9f36-1fe7f46407ba
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- olivero
|
||||
_core:
|
||||
default_config_hash: ydSxdq7R66I8UMC460rOzlfzvlUL4VRbdwc6z9DWaUI
|
||||
id: olivero_secondary_local_tasks
|
||||
theme: olivero
|
||||
region: highlighted
|
||||
weight: -2
|
||||
provider: null
|
||||
plugin: local_tasks_block
|
||||
settings:
|
||||
id: local_tasks_block
|
||||
label: 'Secondary tabs'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
primary: false
|
||||
secondary: true
|
||||
visibility: { }
|
25
drupal10/config/block.block.olivero_site_branding.yml
Normal file
25
drupal10/config/block.block.olivero_site_branding.yml
Normal file
|
@ -0,0 +1,25 @@
|
|||
uuid: f2053ba7-b769-431c-b5b4-eb489658eb75
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- olivero
|
||||
_core:
|
||||
default_config_hash: n_nlgjggHVfQt2H__zvLOKB2YtjPDbQ5tHijF9LE1aM
|
||||
id: olivero_site_branding
|
||||
theme: olivero
|
||||
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: false
|
||||
visibility: { }
|
23
drupal10/config/block.block.olivero_syndicate.yml
Normal file
23
drupal10/config/block.block.olivero_syndicate.yml
Normal file
|
@ -0,0 +1,23 @@
|
|||
uuid: 1caf1d0c-7c6b-430e-bb9c-8787021a9a50
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
theme:
|
||||
- olivero
|
||||
_core:
|
||||
default_config_hash: 0gq3VPg-_UM69FCCWurLFIrrnIjC2HLKhwo9iQNtcUo
|
||||
id: olivero_syndicate
|
||||
theme: olivero
|
||||
region: social
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: node_syndicate_block
|
||||
settings:
|
||||
id: node_syndicate_block
|
||||
label: 'RSS feed'
|
||||
label_display: '0'
|
||||
provider: node
|
||||
block_count: 10
|
||||
visibility: { }
|
8
drupal10/config/block_content.type.basic.yml
Normal file
8
drupal10/config/block_content.type.basic.yml
Normal file
|
@ -0,0 +1,8 @@
|
|||
uuid: 47c172da-e2bb-4e1f-baf5-9db7876702af
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
id: basic
|
||||
label: 'Basic block'
|
||||
revision: false
|
||||
description: 'A basic block contains a title and a body.'
|
3
drupal10/config/claro.settings.yml
Normal file
3
drupal10/config/claro.settings.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
third_party_settings:
|
||||
shortcut:
|
||||
module_link: true
|
13
drupal10/config/contact.form.personal.yml
Normal file
13
drupal10/config/contact.form.personal.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
uuid: d5d66dc9-31f4-4d87-99df-0af63ec0e5d5
|
||||
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: ''
|
7
drupal10/config/contact.settings.yml
Normal file
7
drupal10/config/contact.settings.yml
Normal file
|
@ -0,0 +1,7 @@
|
|||
_core:
|
||||
default_config_hash: U69DBeuvXuNVOC15rVNaBjDPK2fWFbo9v4takdYSSO8
|
||||
default_form: feedback
|
||||
flood:
|
||||
limit: 5
|
||||
interval: 3600
|
||||
user_default_enabled: true
|
10
drupal10/config/core.date_format.fallback.yml
Normal file
10
drupal10/config/core.date_format.fallback.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: 1cdd2f68-493b-4d2d-8e7a-aa1e7aa5961b
|
||||
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'
|
10
drupal10/config/core.date_format.html_date.yml
Normal file
10
drupal10/config/core.date_format.html_date.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: 92308926-bf17-4314-9433-20099dddd800
|
||||
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
|
10
drupal10/config/core.date_format.html_datetime.yml
Normal file
10
drupal10/config/core.date_format.html_datetime.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: f1ab4e0f-8838-40db-b263-e0df6c9c5998
|
||||
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'
|
10
drupal10/config/core.date_format.html_month.yml
Normal file
10
drupal10/config/core.date_format.html_month.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: 61781b84-2d1e-4c03-a9cf-47f714a26861
|
||||
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
|
10
drupal10/config/core.date_format.html_time.yml
Normal file
10
drupal10/config/core.date_format.html_time.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: efc43262-b612-4a5e-8557-13d2f583a0d3
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: M7yqicYkU36hRy5p9drAaGBBihhUD1OyujFrAaQ93ZE
|
||||
id: html_time
|
||||
label: 'HTML Time'
|
||||
locked: true
|
||||
pattern: 'H:i:s'
|
10
drupal10/config/core.date_format.html_week.yml
Normal file
10
drupal10/config/core.date_format.html_week.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: 9043d627-d38c-4d89-8a47-f23450657aef
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: wKD4WsoV_wFgv2vgI4mcAAFSIzrye17ykzdwrnApkfY
|
||||
id: html_week
|
||||
label: 'HTML Week'
|
||||
locked: true
|
||||
pattern: Y-\WW
|
10
drupal10/config/core.date_format.html_year.yml
Normal file
10
drupal10/config/core.date_format.html_year.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: 9af249db-dff3-4b76-a49a-8c4b24e7782d
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: OjekiQuX9RbVQ2_8jOHBL94RgYLePqX7wpfNGgcQzrk
|
||||
id: html_year
|
||||
label: 'HTML Year'
|
||||
locked: true
|
||||
pattern: 'Y'
|
10
drupal10/config/core.date_format.html_yearless_date.yml
Normal file
10
drupal10/config/core.date_format.html_yearless_date.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: b0e559ed-55a1-4fd3-b8bd-58154d397a6c
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: 5VpawMrKPEPCkoO4YpPa0TDFO2dgiIHfTziJtwlmUxc
|
||||
id: html_yearless_date
|
||||
label: 'HTML Yearless date'
|
||||
locked: true
|
||||
pattern: m-d
|
10
drupal10/config/core.date_format.long.yml
Normal file
10
drupal10/config/core.date_format.long.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: af5f318c-a819-458c-b14d-2a31e85176ee
|
||||
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'
|
10
drupal10/config/core.date_format.medium.yml
Normal file
10
drupal10/config/core.date_format.medium.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: c2136cff-869c-4e79-89b0-97fb571dc6a0
|
||||
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'
|
13
drupal10/config/core.date_format.olivero_medium.yml
Normal file
13
drupal10/config/core.date_format.olivero_medium.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
uuid: 3861a8bd-5f00-4f25-92d1-f4310e56b6b7
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
theme:
|
||||
- olivero
|
||||
_core:
|
||||
default_config_hash: Mt6cmxUbDZ9XxD6p25WQ8tj3_JcX8ylfcddwZc8gcAE
|
||||
id: olivero_medium
|
||||
label: 'Olivero Medium'
|
||||
locked: false
|
||||
pattern: 'j F, Y'
|
10
drupal10/config/core.date_format.short.yml
Normal file
10
drupal10/config/core.date_format.short.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: 8ec39912-40f1-4a53-ab9a-3b7de063c75d
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: AlzeyytA8InBgxIG9H2UDJYs3CG98Zj6yRsDKmlbZwA
|
||||
id: short
|
||||
label: 'Default short date'
|
||||
locked: false
|
||||
pattern: 'm/d/Y - H:i'
|
|
@ -0,0 +1,33 @@
|
|||
uuid: 65ae2182-fc82-4349-aa0e-1e871b0ff7b9
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_content.type.basic
|
||||
- field.field.block_content.basic.body
|
||||
module:
|
||||
- text
|
||||
id: block_content.basic.default
|
||||
targetEntityType: block_content
|
||||
bundle: basic
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
type: text_textarea_with_summary
|
||||
weight: 26
|
||||
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: { }
|
|
@ -0,0 +1,16 @@
|
|||
uuid: 17fe9931-7321-4f86-8ee9-0bbfb48c1300
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- media
|
||||
enforced:
|
||||
module:
|
||||
- media_library
|
||||
_core:
|
||||
default_config_hash: 04_dAqpWYP1WmsXZ7IXJ7-yarCvNddD10EUkBDtIFy4
|
||||
id: media.media_library
|
||||
label: 'Media library'
|
||||
description: ''
|
||||
targetEntityType: media
|
||||
cache: true
|
13
drupal10/config/core.entity_form_mode.user.register.yml
Normal file
13
drupal10/config/core.entity_form_mode.user.register.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
uuid: 0ddc0536-7d2e-4993-89e0-fd13b93764a7
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: 5pE_4hurqtIlZN3XDi7eTo5RG13BMG0Rh9HYlRI3h8U
|
||||
id: user.register
|
||||
label: Register
|
||||
description: ''
|
||||
targetEntityType: user
|
||||
cache: true
|
|
@ -0,0 +1,22 @@
|
|||
uuid: ff8da10a-781a-48d4-a2c5-ab528d4dbfad
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_content.type.basic
|
||||
- field.field.block_content.basic.body
|
||||
module:
|
||||
- text
|
||||
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: { }
|
11
drupal10/config/core.entity_view_mode.block.token.yml
Normal file
11
drupal10/config/core.entity_view_mode.block.token.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
uuid: 7c9548d8-e913-4c90-92f4-3b0876411cac
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- block
|
||||
id: block.token
|
||||
label: Token
|
||||
description: ''
|
||||
targetEntityType: block
|
||||
cache: true
|
13
drupal10/config/core.entity_view_mode.block_content.full.yml
Normal file
13
drupal10/config/core.entity_view_mode.block_content.full.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
uuid: a4deb950-03c3-47c0-a230-204a840784c0
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- block_content
|
||||
_core:
|
||||
default_config_hash: Q7yUUYeRLByl-MCGveKKF_KhAtNICLCMJuKWfugCvso
|
||||
id: block_content.full
|
||||
label: Full
|
||||
description: ''
|
||||
targetEntityType: block_content
|
||||
cache: true
|
|
@ -0,0 +1,11 @@
|
|||
uuid: c83e4e0b-8c0b-4a71-a43f-c8318dcefb12
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- block_content
|
||||
id: block_content.token
|
||||
label: Token
|
||||
description: ''
|
||||
targetEntityType: block_content
|
||||
cache: true
|
|
@ -0,0 +1,11 @@
|
|||
uuid: 210118cd-ea82-4d0c-b67b-8419a10ed232
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- contact
|
||||
id: contact_message.token
|
||||
label: Token
|
||||
description: ''
|
||||
targetEntityType: contact_message
|
||||
cache: true
|
11
drupal10/config/core.entity_view_mode.file.token.yml
Normal file
11
drupal10/config/core.entity_view_mode.file.token.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
uuid: 1f4bba13-448b-4eaa-a9d5-f8d7b425903f
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- file
|
||||
id: file.token
|
||||
label: Token
|
||||
description: ''
|
||||
targetEntityType: file
|
||||
cache: true
|
13
drupal10/config/core.entity_view_mode.media.full.yml
Normal file
13
drupal10/config/core.entity_view_mode.media.full.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
uuid: 4063ea91-cb85-44b1-a755-b025906ce392
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- media
|
||||
_core:
|
||||
default_config_hash: dTfAUHooYV0uOVPO3saGpgv-c5PppJXDwxvwRTJOycM
|
||||
id: media.full
|
||||
label: 'Full content'
|
||||
description: ''
|
||||
targetEntityType: media
|
||||
cache: true
|
|
@ -0,0 +1,16 @@
|
|||
uuid: 9b3f1a84-e5d8-43df-b4ad-de80b4488545
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- media
|
||||
enforced:
|
||||
module:
|
||||
- media_library
|
||||
_core:
|
||||
default_config_hash: 04_dAqpWYP1WmsXZ7IXJ7-yarCvNddD10EUkBDtIFy4
|
||||
id: media.media_library
|
||||
label: 'Media library'
|
||||
description: ''
|
||||
targetEntityType: media
|
||||
cache: true
|
11
drupal10/config/core.entity_view_mode.media.token.yml
Normal file
11
drupal10/config/core.entity_view_mode.media.token.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
uuid: 07bded36-2aca-47cf-a7a3-32e04f4dfb8d
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- media
|
||||
id: media.token
|
||||
label: Token
|
||||
description: ''
|
||||
targetEntityType: media
|
||||
cache: true
|
|
@ -0,0 +1,11 @@
|
|||
uuid: 8c3b661b-4668-4e92-bcff-a422e9c94bf7
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- menu_link_content
|
||||
id: menu_link_content.token
|
||||
label: Token
|
||||
description: ''
|
||||
targetEntityType: menu_link_content
|
||||
cache: true
|
13
drupal10/config/core.entity_view_mode.node.full.yml
Normal file
13
drupal10/config/core.entity_view_mode.node.full.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
uuid: e3cfad0a-a499-43dd-84e2-ddfde46cbe73
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: QJ2aZ1xfVf59aq6Pz5X7fyUOa2HxuCoTwQ_RQjoulAU
|
||||
id: node.full
|
||||
label: 'Full content'
|
||||
description: ''
|
||||
targetEntityType: node
|
||||
cache: true
|
13
drupal10/config/core.entity_view_mode.node.rss.yml
Normal file
13
drupal10/config/core.entity_view_mode.node.rss.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
uuid: 0b2c8678-f292-4693-b566-f4c129bed813
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: l8fiAFE3Kng_6bhLlUDnVTkTDzXWxzYFrCWTrngVXEA
|
||||
id: node.rss
|
||||
label: RSS
|
||||
description: ''
|
||||
targetEntityType: node
|
||||
cache: true
|
13
drupal10/config/core.entity_view_mode.node.search_index.yml
Normal file
13
drupal10/config/core.entity_view_mode.node.search_index.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
uuid: 3bf9834a-3a73-4097-9e6c-03af019ca637
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: r_A0T3aTqGDwLyvoH7wLps-0PM--RHlS8UsiJe_Ac64
|
||||
id: node.search_index
|
||||
label: 'Search index'
|
||||
description: ''
|
||||
targetEntityType: node
|
||||
cache: true
|
13
drupal10/config/core.entity_view_mode.node.search_result.yml
Normal file
13
drupal10/config/core.entity_view_mode.node.search_result.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
uuid: b50ecec7-0126-4f6e-9f29-5098b5e84955
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: d8wBEm7XvJ6H3S0IneDD9PfTBklPIH7GMpxElVemPf8
|
||||
id: node.search_result
|
||||
label: 'Search result highlighting input'
|
||||
description: ''
|
||||
targetEntityType: node
|
||||
cache: true
|
13
drupal10/config/core.entity_view_mode.node.teaser.yml
Normal file
13
drupal10/config/core.entity_view_mode.node.teaser.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
uuid: e28743f2-c2c8-4de7-91ee-4d63108b48a7
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: KgGJDZFpMaz_8bTv6fN1bXS3Qi5LWmRJI9R53kEGsNQ
|
||||
id: node.teaser
|
||||
label: Teaser
|
||||
description: ''
|
||||
targetEntityType: node
|
||||
cache: true
|
11
drupal10/config/core.entity_view_mode.node.token.yml
Normal file
11
drupal10/config/core.entity_view_mode.node.token.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
uuid: f2dae8df-fb24-4d3b-8077-74773d6387b9
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
id: node.token
|
||||
label: Token
|
||||
description: ''
|
||||
targetEntityType: node
|
||||
cache: true
|
13
drupal10/config/core.entity_view_mode.paragraph.preview.yml
Normal file
13
drupal10/config/core.entity_view_mode.paragraph.preview.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
uuid: 7ef7911b-55a0-4ce8-927c-2301067cb2a7
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- paragraphs
|
||||
_core:
|
||||
default_config_hash: h3BeHVei4Lnyqbkao3YiF4KqoY-DhRvUNfEgKG8Rgjg
|
||||
id: paragraph.preview
|
||||
label: Preview
|
||||
description: ''
|
||||
targetEntityType: paragraph
|
||||
cache: true
|
11
drupal10/config/core.entity_view_mode.paragraph.token.yml
Normal file
11
drupal10/config/core.entity_view_mode.paragraph.token.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
uuid: 1ad0a586-ca9d-4fda-9a0b-913cc767566b
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- paragraphs
|
||||
id: paragraph.token
|
||||
label: Token
|
||||
description: ''
|
||||
targetEntityType: paragraph
|
||||
cache: true
|
11
drupal10/config/core.entity_view_mode.path_alias.token.yml
Normal file
11
drupal10/config/core.entity_view_mode.path_alias.token.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
uuid: aba5e100-db40-4940-be6a-4603d5b6c5ed
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- path_alias
|
||||
id: path_alias.token
|
||||
label: Token
|
||||
description: ''
|
||||
targetEntityType: path_alias
|
||||
cache: true
|
11
drupal10/config/core.entity_view_mode.shortcut.token.yml
Normal file
11
drupal10/config/core.entity_view_mode.shortcut.token.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
uuid: 2461d81b-21ef-4164-a353-79d4660621d5
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- shortcut
|
||||
id: shortcut.token
|
||||
label: Token
|
||||
description: ''
|
||||
targetEntityType: shortcut
|
||||
cache: true
|
13
drupal10/config/core.entity_view_mode.taxonomy_term.full.yml
Normal file
13
drupal10/config/core.entity_view_mode.taxonomy_term.full.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
uuid: eeba63b1-81ed-4b3c-8def-1125b7cefe51
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- taxonomy
|
||||
_core:
|
||||
default_config_hash: iukUENpf8CFvjZbGGacKX_Ges0-lU9z6zvsd32P6kbo
|
||||
id: taxonomy_term.full
|
||||
label: 'Taxonomy term page'
|
||||
description: ''
|
||||
targetEntityType: taxonomy_term
|
||||
cache: true
|
|
@ -0,0 +1,11 @@
|
|||
uuid: a3e6a04d-653a-43ea-949e-23c430bc0377
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- taxonomy
|
||||
id: taxonomy_term.token
|
||||
label: Token
|
||||
description: ''
|
||||
targetEntityType: taxonomy_term
|
||||
cache: true
|
13
drupal10/config/core.entity_view_mode.user.compact.yml
Normal file
13
drupal10/config/core.entity_view_mode.user.compact.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
uuid: cfffd2eb-01b5-4fea-891d-6fef985769b4
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: TtD7OuGskOsQfoGyxXkrdtllBpR37J19d5BMQDZWJgA
|
||||
id: user.compact
|
||||
label: Compact
|
||||
description: ''
|
||||
targetEntityType: user
|
||||
cache: true
|
13
drupal10/config/core.entity_view_mode.user.full.yml
Normal file
13
drupal10/config/core.entity_view_mode.user.full.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
uuid: af8c3b21-1a95-4c2f-beea-18298c990842
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: ZbXunWS_xAvMZXFfinyvClDAb_RCVLt7gAzE3v16E-Q
|
||||
id: user.full
|
||||
label: 'User account'
|
||||
description: ''
|
||||
targetEntityType: user
|
||||
cache: true
|
11
drupal10/config/core.entity_view_mode.user.token.yml
Normal file
11
drupal10/config/core.entity_view_mode.user.token.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
uuid: 4815393e-fe4d-4c0b-8a05-3f0446db15b6
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- user
|
||||
id: user.token
|
||||
label: Token
|
||||
description: ''
|
||||
targetEntityType: user
|
||||
cache: true
|
68
drupal10/config/core.extension.yml
Normal file
68
drupal10/config/core.extension.yml
Normal file
|
@ -0,0 +1,68 @@
|
|||
_core:
|
||||
default_config_hash: 4GIX5Esnc_umpXUBj4IIocRX7Mt5fPhm4AgXfE3E56E
|
||||
module:
|
||||
address: 0
|
||||
announcements_feed: 0
|
||||
automated_cron: 0
|
||||
big_pipe: 0
|
||||
block: 0
|
||||
block_content: 0
|
||||
breakpoint: 0
|
||||
ckeditor5: 0
|
||||
config: 0
|
||||
contact: 0
|
||||
contextual: 0
|
||||
datetime: 0
|
||||
dblog: 0
|
||||
dynamic_page_cache: 0
|
||||
editor: 0
|
||||
entity_reference_revisions: 0
|
||||
field: 0
|
||||
field_group: 0
|
||||
field_group_migrate: 0
|
||||
field_ui: 0
|
||||
file: 0
|
||||
filter: 0
|
||||
help: 0
|
||||
history: 0
|
||||
image: 0
|
||||
link: 0
|
||||
media: 0
|
||||
media_library: 0
|
||||
menu_link_content: 0
|
||||
menu_ui: 0
|
||||
migrate: 0
|
||||
migrate_drupal: 0
|
||||
migrate_plus: 0
|
||||
migrate_skip_fields: 0
|
||||
migrate_upgrade: 0
|
||||
migrate_url2link: 0
|
||||
mysql: 0
|
||||
node: 0
|
||||
options: 0
|
||||
page_cache: 0
|
||||
path: 0
|
||||
path_alias: 0
|
||||
phpass: 0
|
||||
search: 0
|
||||
shortcut: 0
|
||||
social_link_field: 0
|
||||
system: 0
|
||||
tag1_migration_config: 0
|
||||
taxonomy: 0
|
||||
telephone: 0
|
||||
text: 0
|
||||
token: 0
|
||||
toolbar: 0
|
||||
update: 0
|
||||
user: 0
|
||||
views_ui: 0
|
||||
pathauto: 1
|
||||
views: 10
|
||||
paragraphs: 11
|
||||
tag1_profile: 1000
|
||||
theme:
|
||||
stark: 0
|
||||
olivero: 0
|
||||
claro: 0
|
||||
profile: tag1_profile
|
3
drupal10/config/core.menu.static_menu_link_overrides.yml
Normal file
3
drupal10/config/core.menu.static_menu_link_overrides.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
_core:
|
||||
default_config_hash: jdY7AU0tU-QsjmiOw3W8vwpYMb-By--_MSFgbqKUTYM
|
||||
definitions: { }
|
3
drupal10/config/dblog.settings.yml
Normal file
3
drupal10/config/dblog.settings.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
_core:
|
||||
default_config_hash: e883aGsrt1wFrsydlYU584PZONCSfRy0DtkZ9KzHb58
|
||||
row_limit: 1000
|
24
drupal10/config/field.field.block_content.basic.body.yml
Normal file
24
drupal10/config/field.field.block_content.basic.body.yml
Normal file
|
@ -0,0 +1,24 @@
|
|||
uuid: 086ca743-af62-48ca-838f-7a45a47c087e
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_content.type.basic
|
||||
- field.storage.block_content.body
|
||||
module:
|
||||
- text
|
||||
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
|
||||
allowed_formats: { }
|
||||
field_type: text_with_summary
|
3
drupal10/config/field.settings.yml
Normal file
3
drupal10/config/field.settings.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
_core:
|
||||
default_config_hash: nJk0TAQBzlNo52ehiHI7bIEPLGi0BYqZvPdEn7Chfu0
|
||||
purge_batch_size: 50
|
21
drupal10/config/field.storage.block_content.body.yml
Normal file
21
drupal10/config/field.storage.block_content.body.yml
Normal file
|
@ -0,0 +1,21 @@
|
|||
uuid: 39f3e784-92ac-4e8b-8293-e8682206a08d
|
||||
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
|
21
drupal10/config/field.storage.node.body.yml
Normal file
21
drupal10/config/field.storage.node.body.yml
Normal file
|
@ -0,0 +1,21 @@
|
|||
uuid: b08455f0-c601-4849-b14c-a936a90f2bd7
|
||||
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
|
3
drupal10/config/field_ui.settings.yml
Normal file
3
drupal10/config/field_ui.settings.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
_core:
|
||||
default_config_hash: Q1nMi90W6YQxKzZAgJQw7Ag9U4JrsEUwkomF0lhvbIM
|
||||
field_prefix: field_
|
15
drupal10/config/file.settings.yml
Normal file
15
drupal10/config/file.settings.yml
Normal file
|
@ -0,0 +1,15 @@
|
|||
_core:
|
||||
default_config_hash: 2bwjZB1IjEYbppgZT3g7YW_5h_LDZYNa3DaDEfWX82U
|
||||
description:
|
||||
type: textfield
|
||||
length: 128
|
||||
icon:
|
||||
directory: core/modules/file/icons
|
||||
make_unused_managed_files_temporary: false
|
||||
filename_sanitization:
|
||||
transliterate: false
|
||||
replace_whitespace: false
|
||||
replace_non_alphanumeric: false
|
||||
deduplicate_separators: false
|
||||
lowercase: false
|
||||
replacement_character: '-'
|
29
drupal10/config/filter.format.plain_text.yml
Normal file
29
drupal10/config/filter.format.plain_text.yml
Normal file
|
@ -0,0 +1,29 @@
|
|||
uuid: 09dcc227-982d-4d89-965e-c617ade6697a
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: JLMwODO0epnA_H-jFlH9ezVfa5YBJniRv3MmLqYNl_Q
|
||||
name: 'Plain text'
|
||||
format: plain_text
|
||||
weight: 10
|
||||
filters:
|
||||
filter_autop:
|
||||
id: filter_autop
|
||||
provider: filter
|
||||
status: true
|
||||
weight: 0
|
||||
settings: { }
|
||||
filter_html_escape:
|
||||
id: filter_html_escape
|
||||
provider: filter
|
||||
status: true
|
||||
weight: -10
|
||||
settings: { }
|
||||
filter_url:
|
||||
id: filter_url
|
||||
provider: filter
|
||||
status: true
|
||||
weight: 0
|
||||
settings:
|
||||
filter_url_length: 72
|
4
drupal10/config/filter.settings.yml
Normal file
4
drupal10/config/filter.settings.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
_core:
|
||||
default_config_hash: FiPjM3WdB__ruFA7B6TLwni_UcZbmek5G4b2dxQItxA
|
||||
fallback_format: plain_text
|
||||
always_show_fallback_choice: false
|
5
drupal10/config/image.settings.yml
Normal file
5
drupal10/config/image.settings.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
_core:
|
||||
default_config_hash: k-yDFHbqNfpe-Srg4sdCSqaosCl2D8uwyEY5esF8gEw
|
||||
preview_image: core/modules/image/sample.png
|
||||
allow_insecure_derivatives: false
|
||||
suppress_itok_output: false
|
23
drupal10/config/image.style.large.yml
Normal file
23
drupal10/config/image.style.large.yml
Normal file
|
@ -0,0 +1,23 @@
|
|||
uuid: 0f5346c0-e314-415d-b34b-b3fb976d552b
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: rDR2BOewa2UFH9yG4tVvrGxEVv8U7LQo-RLkJhFpERs
|
||||
name: large
|
||||
label: 'Large (480×480)'
|
||||
effects:
|
||||
ddd73aa7-4bd6-4c85-b600-bdf2b1628d1d:
|
||||
uuid: ddd73aa7-4bd6-4c85-b600-bdf2b1628d1d
|
||||
id: image_scale
|
||||
weight: 0
|
||||
data:
|
||||
width: 480
|
||||
height: 480
|
||||
upscale: false
|
||||
6e8fe467-84c1-4ef0-a73b-7eccf1cc20e8:
|
||||
uuid: 6e8fe467-84c1-4ef0-a73b-7eccf1cc20e8
|
||||
id: image_convert
|
||||
weight: 2
|
||||
data:
|
||||
extension: webp
|
26
drupal10/config/image.style.media_library.yml
Normal file
26
drupal10/config/image.style.media_library.yml
Normal file
|
@ -0,0 +1,26 @@
|
|||
uuid: 382f2379-187f-4426-9162-5961b11a61a3
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- media_library
|
||||
_core:
|
||||
default_config_hash: FxMdscEA4aDH0KPM73HIZtVn3zIAgC1kQ3CkBw26HYs
|
||||
name: media_library
|
||||
label: 'Media Library thumbnail (220×220)'
|
||||
effects:
|
||||
75b076a8-1234-4b42-85db-bf377c4d8d5f:
|
||||
uuid: 75b076a8-1234-4b42-85db-bf377c4d8d5f
|
||||
id: image_scale
|
||||
weight: 0
|
||||
data:
|
||||
width: 220
|
||||
height: 220
|
||||
upscale: false
|
||||
1021da71-fc2a-43d0-be5d-efaf1c79e2ea:
|
||||
uuid: 1021da71-fc2a-43d0-be5d-efaf1c79e2ea
|
||||
id: image_convert
|
||||
weight: 2
|
||||
data:
|
||||
extension: webp
|
23
drupal10/config/image.style.medium.yml
Normal file
23
drupal10/config/image.style.medium.yml
Normal file
|
@ -0,0 +1,23 @@
|
|||
uuid: 40cad417-30d7-4a7b-be59-aa459f9a7c03
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: dlar76VBuGj5iMGTruB_uMZX8VbivXt9_QLemaG2q4E
|
||||
name: medium
|
||||
label: 'Medium (220×220)'
|
||||
effects:
|
||||
bddf0d06-42f9-4c75-a700-a33cafa25ea0:
|
||||
uuid: bddf0d06-42f9-4c75-a700-a33cafa25ea0
|
||||
id: image_scale
|
||||
weight: 0
|
||||
data:
|
||||
width: 220
|
||||
height: 220
|
||||
upscale: false
|
||||
c410ed2f-aa30-4d9c-a224-d2865d9188cd:
|
||||
uuid: c410ed2f-aa30-4d9c-a224-d2865d9188cd
|
||||
id: image_convert
|
||||
weight: 2
|
||||
data:
|
||||
extension: webp
|
23
drupal10/config/image.style.thumbnail.yml
Normal file
23
drupal10/config/image.style.thumbnail.yml
Normal file
|
@ -0,0 +1,23 @@
|
|||
uuid: ce8165d8-c7c0-4542-bb52-421ed13b039f
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: BgeBV-xOFINMsz-y2thm45EGesj6bRM6DTLZ6ce3V9I
|
||||
name: thumbnail
|
||||
label: 'Thumbnail (100×100)'
|
||||
effects:
|
||||
1cfec298-8620-4749-b100-ccb6c4500779:
|
||||
uuid: 1cfec298-8620-4749-b100-ccb6c4500779
|
||||
id: image_scale
|
||||
weight: 0
|
||||
data:
|
||||
width: 100
|
||||
height: 100
|
||||
upscale: false
|
||||
c4eb9942-2c9e-4a81-949f-6161a44b6559:
|
||||
uuid: c4eb9942-2c9e-4a81-949f-6161a44b6559
|
||||
id: image_convert
|
||||
weight: 2
|
||||
data:
|
||||
extension: webp
|
23
drupal10/config/image.style.wide.yml
Normal file
23
drupal10/config/image.style.wide.yml
Normal file
|
@ -0,0 +1,23 @@
|
|||
uuid: 5447caf6-bd53-4867-8636-5920139f9115
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: XHh3ATMH7z4ljwmzdndM47qNMkgLnoYsP98rGxVgCOw
|
||||
name: wide
|
||||
label: 'Wide (1090)'
|
||||
effects:
|
||||
09959c15-59ce-4f6d-90df-e2d7cf32bce5:
|
||||
uuid: 09959c15-59ce-4f6d-90df-e2d7cf32bce5
|
||||
id: image_scale
|
||||
weight: 1
|
||||
data:
|
||||
width: 1090
|
||||
height: null
|
||||
upscale: false
|
||||
294c5f76-42a4-43ce-82c2-81c2f4723da0:
|
||||
uuid: 294c5f76-42a4-43ce-82c2-81c2f4723da0
|
||||
id: image_convert
|
||||
weight: 2
|
||||
data:
|
||||
extension: webp
|
6
drupal10/config/media.settings.yml
Normal file
6
drupal10/config/media.settings.yml
Normal file
|
@ -0,0 +1,6 @@
|
|||
_core:
|
||||
default_config_hash: WCFqLQAxMw1weToDJEhfnW1Z-iOF7cqMdL8X7YTFxBA
|
||||
icon_base_uri: 'public://media-icons/generic'
|
||||
iframe_domain: null
|
||||
oembed_providers_url: 'https://oembed.com/providers.json'
|
||||
standalone_url: false
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue