Compare commits
26 commits
main
...
D9-upgrade
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
82509ba323 | ||
|
|
8fd49b27f7 | ||
|
|
10ea0431f6 | ||
|
|
32f8e7373f | ||
|
|
e350adbafe | ||
|
|
a6caeba30a | ||
|
|
483138ae5e | ||
|
|
5079621e13 | ||
|
|
c219eebb28 | ||
|
|
c3061fede2 | ||
|
|
654f5793b4 | ||
|
|
d632dd7aa3 | ||
|
|
a5087a1d31 | ||
|
|
c99ee499ea | ||
|
|
2a08038d1a | ||
|
|
01a8ffd05d | ||
|
|
f6791135ae | ||
|
|
7df2c30770 | ||
|
|
0459c98cdd | ||
|
|
1ee678f81f | ||
|
|
89ae9979ed | ||
|
|
c900bf8f92 | ||
|
|
f116820568 | ||
|
|
cd7ff4df46 | ||
|
|
b431d07447 | ||
|
|
30b49372f5 |
1537 changed files with 24865 additions and 44034 deletions
31
.ddev/.gitignore
vendored
31
.ddev/.gitignore
vendored
|
|
@ -1,32 +1,27 @@
|
||||||
#ddev-generated: Automatically generated ddev .gitignore.
|
#ddev-generated: Automatically generated ddev .gitignore.
|
||||||
# You can remove the above line if you want to edit and maintain this file yourself.
|
# You can remove the above line if you want to edit and maintain this file yourself.
|
||||||
/.gitignore
|
/.gitignore
|
||||||
|
|
||||||
/**/*.example
|
/**/*.example
|
||||||
/.dbimageBuild
|
/.dbimageBuild
|
||||||
/.ddev-docker-*.yaml
|
/.dbimageExtra
|
||||||
/.*downloads
|
/.ddev-docker-compose-base.yaml
|
||||||
|
/.ddev-docker-compose-full.yaml
|
||||||
|
/.ddevlive-downloads
|
||||||
|
/.global_commands
|
||||||
/.homeadditions
|
/.homeadditions
|
||||||
/.importdb*
|
|
||||||
/.sshimageBuild
|
/.sshimageBuild
|
||||||
/.webimageBuild
|
/.webimageBuild
|
||||||
|
/.webimageExtra
|
||||||
/apache/apache-site.conf
|
/apache/apache-site.conf
|
||||||
/commands/.gitattributes
|
/commands/.gitattributes
|
||||||
/config.local.y*ml
|
/commands/db/mysql
|
||||||
/config.*.local.y*ml
|
/commands/host/launch
|
||||||
|
/commands/web/live
|
||||||
|
/commands/web/xdebug
|
||||||
|
/config.*.y*ml
|
||||||
/db_snapshots
|
/db_snapshots
|
||||||
/mutagen/mutagen.yml
|
/import-db
|
||||||
/mutagen/.start-synced
|
/import.yaml
|
||||||
/nginx_full/nginx-site.conf
|
/nginx_full/nginx-site.conf
|
||||||
/postgres/postgresql.conf
|
|
||||||
/providers/acquia.yaml
|
|
||||||
/providers/lagoon.yaml
|
|
||||||
/providers/pantheon.yaml
|
|
||||||
/providers/platform.yaml
|
|
||||||
/providers/upsun.yaml
|
|
||||||
/sequelpro.spf
|
/sequelpro.spf
|
||||||
/traefik/config/agaric-coop.yaml
|
|
||||||
/traefik/certs/agaric-coop.crt
|
|
||||||
/traefik/certs/agaric-coop.key
|
|
||||||
/xhprof/xhprof_prepend.php
|
|
||||||
/**/README.*
|
/**/README.*
|
||||||
|
|
|
||||||
9
.ddev/commands/db/mysql
Executable file
9
.ddev/commands/db/mysql
Executable file
|
|
@ -0,0 +1,9 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
## #ddev-generated
|
||||||
|
## Description: run mysql client in db container
|
||||||
|
## Usage: mysql [flags] [args]
|
||||||
|
## Example: "ddev mysql" or "ddev mysql -uroot -proot" or "echo 'SHOW TABLES;' | ddev mysql"
|
||||||
|
## `ddev mysql --database=mysql -uroot -proot` gets you to the 'mysql' database with root privileges
|
||||||
|
|
||||||
|
mysql -udb -pdb $@
|
||||||
7
.ddev/commands/web/drush
Executable file
7
.ddev/commands/web/drush
Executable file
|
|
@ -0,0 +1,7 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
## Description: Run drush inside the web container
|
||||||
|
## Usage: drush [flags] [args]
|
||||||
|
## Example: "ddev drush uli" or "ddev drush sql-cli" or "ddev drush --version"
|
||||||
|
|
||||||
|
drush $@
|
||||||
|
|
@ -1,23 +1,30 @@
|
||||||
|
APIVersion: v1.13.1
|
||||||
name: agaric-coop
|
name: agaric-coop
|
||||||
type: drupal10
|
type: drupal8
|
||||||
docroot: web
|
docroot: web
|
||||||
php_version: "8.3"
|
php_version: "7.3"
|
||||||
webserver_type: apache-fpm
|
webserver_type: nginx-fpm
|
||||||
router_http_port: "80"
|
router_http_port: "80"
|
||||||
router_https_port: "443"
|
router_https_port: "443"
|
||||||
xdebug_enabled: false
|
xdebug_enabled: true
|
||||||
additional_hostnames: []
|
additional_hostnames: []
|
||||||
additional_fqdns: []
|
additional_fqdns: []
|
||||||
database:
|
mariadb_version: "10.3"
|
||||||
type: mariadb
|
|
||||||
version: "10.5"
|
|
||||||
nfs_mount_enabled: false
|
nfs_mount_enabled: false
|
||||||
mutagen_enabled: false
|
provider: default
|
||||||
webimage_extra_packages: [rake, sassc]
|
webimage_extra_packages: [rake, sassc]
|
||||||
use_dns_when_possible: true
|
use_dns_when_possible: false
|
||||||
composer_version: "2"
|
php_version: "7.3"
|
||||||
web_environment: []
|
timezone: ""
|
||||||
nodejs_version: "16"
|
|
||||||
|
|
||||||
|
# This config.yaml was created with ddev version v1.13.1
|
||||||
|
# webimage: drud/ddev-webserver:v1.13.1
|
||||||
|
# dbimage: drud/ddev-dbserver-mariadb-10.2:v1.13.0
|
||||||
|
# dbaimage: phpmyadmin/phpmyadmin:5
|
||||||
|
# However we do not recommend explicitly wiring these images into the
|
||||||
|
# config.yaml as they may break future versions of ddev.
|
||||||
|
# You can update this config.yaml using 'ddev config'.
|
||||||
|
|
||||||
# Key features of ddev's config.yaml:
|
# Key features of ddev's config.yaml:
|
||||||
|
|
||||||
|
|
@ -28,34 +35,31 @@ nodejs_version: "16"
|
||||||
|
|
||||||
# docroot: <relative_path> # Relative path to the directory containing index.php.
|
# docroot: <relative_path> # 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"
|
# php_version: "7.3" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4"
|
||||||
|
|
||||||
# You can explicitly specify the webimage but this
|
# You can explicitly specify the webimage, dbimage, dbaimage lines but this
|
||||||
# is not recommended, as the images are often closely tied to ddev's' behavior,
|
# is not recommended, as the images are often closely tied to ddev's' behavior,
|
||||||
# so this can break upgrades.
|
# so this can break upgrades.
|
||||||
|
|
||||||
# webimage: <docker_image> # nginx/php docker image.
|
# webimage: <docker_image> # nginx/php docker image.
|
||||||
|
# dbimage: <docker_image> # mariadb docker image.
|
||||||
|
# dbaimage: <docker_image>
|
||||||
|
|
||||||
# database:
|
# mariadb_version and mysql_version
|
||||||
# type: <dbtype> # mysql, mariadb
|
# ddev can use many versions of mariadb and mysql
|
||||||
# version: <version> # database version, like "10.3" or "8.0"
|
# However these directives are mutually exclusive
|
||||||
# Note that mariadb_version or mysql_version from v1.18 and earlier
|
# mariadb_version: 10.2
|
||||||
# will automatically be converted to this notation with just a "ddev config --auto"
|
# mysql_version: 8.0
|
||||||
|
|
||||||
# router_http_port: <port> # Port to be used for http (defaults to port 80)
|
# router_http_port: <port> # Port to be used for http (defaults to port 80)
|
||||||
# router_https_port: <port> # Port for https (defaults to 443)
|
# router_https_port: <port> # Port for https (defaults to 443)
|
||||||
|
|
||||||
# xdebug_enabled: false # Set to true to enable xdebug and "ddev start" or "ddev restart"
|
# xdebug_enabled: false # Set to true to enable xdebug and "ddev start" or "ddev restart"
|
||||||
# Note that for most people the commands
|
# Note that for most people the commands
|
||||||
# "ddev xdebug" to enable xdebug and "ddev xdebug off" to disable it work better,
|
# "ddev exec enable_xdebug" and "ddev exec disable_xdebug" work better,
|
||||||
# as leaving xdebug enabled all the time is a big performance hit.
|
# 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"
|
# webserver_type: nginx-fpm # Can be set to apache-fpm or apache-cgi as well
|
||||||
# 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
|
# timezone: Europe/Berlin
|
||||||
# This is the timezone used in the containers and by PHP;
|
# This is the timezone used in the containers and by PHP;
|
||||||
|
|
@ -63,26 +67,6 @@ nodejs_version: "16"
|
||||||
# see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
# see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
||||||
# For example Europe/Dublin or MST7MDT
|
# 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 select a minor version for example "2.2" which will
|
|
||||||
# install the latest release of that branch. Alternatively, an explicit Composer
|
|
||||||
# version may be specified, for example "1.0.22". Finally, it is also possible
|
|
||||||
# to use one of the key words "stable", "preview" or "snapshot" see Composer
|
|
||||||
# documentation.
|
|
||||||
# To reinstall Composer after the image was built, run "ddev debug refresh".
|
|
||||||
|
|
||||||
# nodejs_version: "16"
|
|
||||||
# change from the default system Node.js version to another supported version, like 12, 14, 17, 18.
|
|
||||||
# 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:
|
# additional_hostnames:
|
||||||
# - somename
|
# - somename
|
||||||
# - someothername
|
# - someothername
|
||||||
|
|
@ -96,9 +80,7 @@ nodejs_version: "16"
|
||||||
# Please take care with this because it can cause great confusion.
|
# Please take care with this because it can cause great confusion.
|
||||||
|
|
||||||
# upload_dir: custom/upload/dir
|
# upload_dir: custom/upload/dir
|
||||||
# would set the destination path for ddev import-files to <docroot>/custom/upload/dir
|
# would set the destination path for ddev import-files to custom/upload/dir.
|
||||||
# When mutagen is enabled this path is bind-mounted so that all the files
|
|
||||||
# in the upload_dir don't have to be synced into mutagen
|
|
||||||
|
|
||||||
# working_dir:
|
# working_dir:
|
||||||
# web: /var/www/html
|
# web: /var/www/html
|
||||||
|
|
@ -107,24 +89,16 @@ nodejs_version: "16"
|
||||||
# These values specify the destination directory for ddev ssh and the
|
# These values specify the destination directory for ddev ssh and the
|
||||||
# directory in which commands passed into ddev exec are run.
|
# directory in which commands passed into ddev exec are run.
|
||||||
|
|
||||||
# omit_containers: [db, dba, ddev-ssh-agent]
|
# omit_containers: ["dba", "ddev-ssh-agent"]
|
||||||
# Currently only these containers are supported. Some containers can also be
|
# would omit the dba (phpMyAdmin) and ddev-ssh-agent containers. Currently
|
||||||
# omitted globally in the ~/.ddev/global_config.yaml. Note that if you omit
|
# only those two containers can be omitted here.
|
||||||
# the "db" container, several standard features of ddev that access the
|
# Note that these containers can also be omitted globally in the
|
||||||
# database container will be unusable. In the global configuration it is also
|
# ~/.ddev/global_config.yaml or with the "ddev config global" command.
|
||||||
# possible to omit ddev-router, but not here.
|
|
||||||
|
|
||||||
# nfs_mount_enabled: false
|
# nfs_mount_enabled: false
|
||||||
# Great performance improvement but requires host configuration first.
|
# 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
|
# See https://ddev.readthedocs.io/en/stable/users/performance/#using-nfs-to-mount-the-project-into-the-container
|
||||||
|
|
||||||
# mutagen_enabled: false
|
|
||||||
# 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"
|
# host_https_port: "59002"
|
||||||
# The host port binding for https can be explicitly specified. It is
|
# The host port binding for https can be explicitly specified. It is
|
||||||
# dynamic unless otherwise specified.
|
# dynamic unless otherwise specified.
|
||||||
|
|
@ -141,23 +115,13 @@ nodejs_version: "16"
|
||||||
# The host port binding for the ddev-dbserver can be explicitly specified. It is dynamic
|
# The host port binding for the ddev-dbserver can be explicitly specified. It is dynamic
|
||||||
# unless explicitly specified.
|
# unless explicitly specified.
|
||||||
|
|
||||||
# phpmyadmin_port: "8036"
|
# phpmyadmin_port: "1000"
|
||||||
# phpmyadmin_https_port: "8037"
|
# The PHPMyAdmin port can be changed from the default 8036
|
||||||
# The PHPMyAdmin ports can be changed from the default 8036 and 8037
|
|
||||||
|
|
||||||
# host_phpmyadmin_port: "8036"
|
# mailhog_port: "1001"
|
||||||
# The phpmyadmin (dba) port is not normally bound on the host at all, instead being routed
|
# The MailHog port can be changed from the default 8025
|
||||||
# through ddev-router, but it can be specified and bound.
|
|
||||||
|
|
||||||
# mailhog_port: "8025"
|
# webimage_extra_packages: [php-yaml, php7.3-ldap]
|
||||||
# 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
|
# Extra Debian packages that are needed in the webimage can be added here
|
||||||
|
|
||||||
# dbimage_extra_packages: [telnet,netcat]
|
# dbimage_extra_packages: [telnet,netcat]
|
||||||
|
|
@ -175,83 +139,21 @@ nodejs_version: "16"
|
||||||
# If you prefer you can change this to "ddev.local" to preserve
|
# If you prefer you can change this to "ddev.local" to preserve
|
||||||
# pre-v1.9 behavior.
|
# pre-v1.9 behavior.
|
||||||
|
|
||||||
# ngrok_args: --basic-auth username:pass1234
|
# ngrok_args: --subdomain mysite --auth username:pass
|
||||||
# Provide extra flags to the "ngrok http" command, see
|
# Provide extra flags to the "ngrok http" command, see
|
||||||
# https://ngrok.com/docs#http or run "ngrok http -h"
|
# https://ngrok.com/docs#http or run "ngrok http -h"
|
||||||
|
|
||||||
# disable_settings_management: false
|
# disable_settings_management: false
|
||||||
# If true, ddev will not create CMS-specific settings files like
|
# If true, ddev will not create CMS-specific settings files like
|
||||||
# Drupal's settings.php/settings.ddev.php or TYPO3's AdditionalConfiguration.php
|
# Drupal's settings.php/settings.ddev.php or TYPO3's AdditionalSettings.php
|
||||||
# In this case the user must provide all such settings.
|
# In this case the user must provide all such settings.
|
||||||
|
|
||||||
# You can inject environment variables into the web container with:
|
# provider: default # Currently either "default" or "pantheon"
|
||||||
# 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.
|
|
||||||
|
|
||||||
# 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
|
|
||||||
# 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:
|
|
||||||
# - 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 'nfs_mount_enabled: 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,
|
|
||||||
# 'nfs_mount_enabled: 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
|
# Many ddev commands can be extended to run tasks before or after the
|
||||||
# ddev command is executed, for example "post-start", "post-import-db",
|
# ddev command is executed, for example "post-start", "post-import-db",
|
||||||
# "pre-composer", "post-composer"
|
# "pre-composer", "post-composer"
|
||||||
# See https://ddev.readthedocs.io/en/stable/users/extend/custom-commands/ for more
|
# 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
|
# information on the commands that can be extended and the tasks you can define
|
||||||
# for them. Example:
|
# for them. Example:
|
||||||
#hooks:
|
#hooks:
|
||||||
|
|
|
||||||
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -7,7 +7,6 @@ web/modules/contrib
|
||||||
web/profiles
|
web/profiles
|
||||||
web/sites
|
web/sites
|
||||||
web/libraries
|
web/libraries
|
||||||
web/README.md
|
|
||||||
## Temporarily allow deployment of custom modules (by only ignoring contrib here).
|
## Temporarily allow deployment of custom modules (by only ignoring contrib here).
|
||||||
## So far we are using custom modules for migration only, which wouldn't technically
|
## So far we are using custom modules for migration only, which wouldn't technically
|
||||||
## ever be required on the platform.
|
## ever be required on the platform.
|
||||||
|
|
@ -21,7 +20,7 @@ web/themes/custom/*/src
|
||||||
vendor/
|
vendor/
|
||||||
|
|
||||||
## Ignore folder for SQL dumps
|
## Ignore folder for SQL dumps
|
||||||
/backups
|
/data
|
||||||
|
|
||||||
## Ignore other template-built files:
|
## Ignore other template-built files:
|
||||||
drush/sites/local.site.yml
|
drush/sites/local.site.yml
|
||||||
|
|
|
||||||
2
.gitmodules
vendored
2
.gitmodules
vendored
|
|
@ -1,4 +1,4 @@
|
||||||
[submodule "web/themes/custom/agarica/patternlibrary"]
|
[submodule "web/themes/custom/agarica/patternlibrary"]
|
||||||
path = web/themes/custom/agarica/patternlibrary
|
path = web/themes/custom/agarica/patternlibrary
|
||||||
url = git@git.agaric.com:agaric/patternlibrary.git
|
url = git@gitlab.com:agaric/patternlibrary.git
|
||||||
branch = master
|
branch = master
|
||||||
|
|
|
||||||
52
.vscode/launch.json
vendored
52
.vscode/launch.json
vendored
|
|
@ -1,52 +0,0 @@
|
||||||
{
|
|
||||||
// Use IntelliSense to learn about possible attributes.
|
|
||||||
// Hover to view descriptions of existing attributes.
|
|
||||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
||||||
"version": "0.2.0",
|
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"name": "Listen for Xdebug",
|
|
||||||
"type": "php",
|
|
||||||
"request": "launch",
|
|
||||||
"port": 9003,
|
|
||||||
"hostname": "0.0.0.0",
|
|
||||||
"pathMappings": {
|
|
||||||
"/var/www/html": "${workspaceRoot}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Launch currently open script",
|
|
||||||
"type": "php",
|
|
||||||
"request": "launch",
|
|
||||||
"program": "${file}",
|
|
||||||
"cwd": "${fileDirname}",
|
|
||||||
"port": 0,
|
|
||||||
"runtimeArgs": [
|
|
||||||
"-dxdebug.start_with_request=yes"
|
|
||||||
],
|
|
||||||
"env": {
|
|
||||||
"XDEBUG_MODE": "debug,develop",
|
|
||||||
"XDEBUG_CONFIG": "client_port=${port}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Launch Built-in web server",
|
|
||||||
"type": "php",
|
|
||||||
"request": "launch",
|
|
||||||
"runtimeArgs": [
|
|
||||||
"-dxdebug.mode=debug",
|
|
||||||
"-dxdebug.start_with_request=yes",
|
|
||||||
"-S",
|
|
||||||
"localhost:0"
|
|
||||||
],
|
|
||||||
"program": "",
|
|
||||||
"cwd": "${workspaceRoot}",
|
|
||||||
"port": 9003,
|
|
||||||
"serverReadyAction": {
|
|
||||||
"pattern": "Development Server \\(http://localhost:([0-9]+)\\) started",
|
|
||||||
"uriFormat": "http://localhost:%s",
|
|
||||||
"action": "openExternally"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
44
README.md
44
README.md
|
|
@ -26,11 +26,10 @@ git submodule update
|
||||||
To be able to import the configuration, you need to get the initializing database (where we will also be collaborating on content) [from the test site](https://agaric-test.drutopia.org/) pending resolution of [drutopia#216](https://gitlab.com/drutopia/drutopia/issues/216).
|
To be able to import the configuration, you need to get the initializing database (where we will also be collaborating on content) [from the test site](https://agaric-test.drutopia.org/) pending resolution of [drutopia#216](https://gitlab.com/drutopia/drutopia/issues/216).
|
||||||
|
|
||||||
```
|
```
|
||||||
ddev start
|
vagrant ssh
|
||||||
ddev auth ssh
|
composer install
|
||||||
ddev composer install
|
drush -y sql-dump > /tmp/paranoia.sql && drush sql-drop && drush -y sql-sync @live @self && drush -y updb
|
||||||
ddev . drush -y sql-dump > /tmp/paranoia.sql && drush sql-drop && drush -y sql-sync @live @self && drush -y updb
|
drush -y rsync @live:%files @self:%files
|
||||||
ddev . drush -y rsync @live:%files @self:%files
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### Get updates
|
### Get updates
|
||||||
|
|
@ -38,18 +37,16 @@ ddev . drush -y rsync @live:%files @self:%files
|
||||||
```
|
```
|
||||||
git pull
|
git pull
|
||||||
git submodule update --recursive --remote
|
git submodule update --recursive --remote
|
||||||
ddev start
|
vagrant ssh
|
||||||
ddev composer install
|
composer install
|
||||||
ddev . drush -y sql-dump > /tmp/paranoia.sql && drush -y sql-drop && drush -y sql-sync @live @self && drush -y updb
|
drush -y sql-dump > /tmp/paranoia.sql && drush -y sql-drop && drush -y sql-sync @live @self && drush -y updb
|
||||||
ddev . drush -y rsync @live:%files @self:%files
|
drush -y rsync @live:%files @self:%files
|
||||||
ddev . drush cim -y
|
drush cim -y
|
||||||
```
|
```
|
||||||
|
|
||||||
## Theming
|
## Theming
|
||||||
|
|
||||||
See `web/themes/custom/agarica/patternlibrary/README.md` for how to make changes, especially involving Sass to CSS compilation for styles.
|
See `web/themes/custom/agarica/README.md` and `web/themes/custom/agarica/patternlibrary/README.md`
|
||||||
|
|
||||||
After making changes withing the Pattern Library within the custom Agaric theme, commit these changes *first* to the pattern library itself, and second commit the pattern library as a whole to the main project (it will be a single change, "Subproject commit" and the current hash value of the subproject repository.
|
|
||||||
|
|
||||||
## Deployment
|
## Deployment
|
||||||
|
|
||||||
|
|
@ -57,13 +54,12 @@ Agaric is currently using a Platform as a Service version of Drutopia with addit
|
||||||
|
|
||||||
Set up [drutopia_host](https://gitlab.com/drutopia-platform/drutopia_host) and [hosting_private](https://gitlab.com/drutopia-platform/hosting_private), as documented in hosting private.
|
Set up [drutopia_host](https://gitlab.com/drutopia-platform/drutopia_host) and [hosting_private](https://gitlab.com/drutopia-platform/hosting_private), as documented in hosting private.
|
||||||
|
|
||||||
Then use [ahoy](https://github.com/ahoy-cli/ahoy/), from within the hosting_private directory (`cd ~/Projects/drutopia-platform/drutopia_host/hosting_private`).
|
Then use [ahoy](https://github.com/ahoy-cli/ahoy/), from within the hosting_private directory.
|
||||||
|
|
||||||
Ensure all three related repositories are up-to-date with:
|
Ensure all three related repositories are up-to-date with:
|
||||||
|
|
||||||
```
|
```
|
||||||
cd ~/Projects/drutopia-platform/drutopia_host/hosting_private
|
ahoy git-pull-all
|
||||||
just git-pull-all
|
|
||||||
```
|
```
|
||||||
|
|
||||||
If Agaric's Drutopia PaaS base has changed (the composer.lock in this directory), produce and push a new build:
|
If Agaric's Drutopia PaaS base has changed (the composer.lock in this directory), produce and push a new build:
|
||||||
|
|
@ -72,19 +68,21 @@ If Agaric's Drutopia PaaS base has changed (the composer.lock in this directory)
|
||||||
ahoy deploy-build agaric
|
ahoy deploy-build agaric
|
||||||
```
|
```
|
||||||
|
|
||||||
To deploy this build to an instance of the site plus config, templates, styles:
|
To deploy everything else (config, templates, styles):
|
||||||
|
|
||||||
```
|
```
|
||||||
ahoy deploy-site agaric_test
|
ahoy deploy-site agaric_test
|
||||||
```
|
```
|
||||||
|
|
||||||
(And likewise for `agaric_live`.) Use `deploy-site-force` in place of `deploy-site` if you need to override configuration changes made on live and you are certain you have captured all wanted changes.
|
(And likewise for `agaric_live`.)
|
||||||
|
|
||||||
Then record the deployment, logs from both deploy-site and deploy-build:
|
Then record the deployment. This applies to both deploy-site and deploy-build record keeping:
|
||||||
|
Navigate to `/drutopia_host/build_artifacts`
|
||||||
|
Add all new files generated with `git add . `
|
||||||
|
Commit the files with a message on what you deployed with `git commit -m "Add artifacts"`
|
||||||
|
Push the changes to the repo with `git push`
|
||||||
|
|
||||||
```
|
If you need to overwrite live configuration (only after confirming you've committed any parts you want to keep) you can use ahoy for that too with `deploy-site-force`.
|
||||||
ahoy artifacts
|
|
||||||
```
|
|
||||||
|
|
||||||
### Drupal settings file management
|
### Drupal settings file management
|
||||||
|
|
||||||
|
|
@ -94,7 +92,7 @@ The Drupal settings files are also managed by Drutopia. On each deploy, the file
|
||||||
ahoy vault-edit
|
ahoy vault-edit
|
||||||
```
|
```
|
||||||
|
|
||||||
Look for the Yaml section for `agaric_live`, or `agaric_test`, as appropriate, and edit the `php_settings_code` section to add items to that site's setting overrides. For example:
|
Look for the Yaml section for agaric_live, or agaric_test, as appropriate, and edit the php_settings_code section to add items to that site's setting overrides. For example:
|
||||||
|
|
||||||
```
|
```
|
||||||
...
|
...
|
||||||
|
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
{
|
|
||||||
"folders": [
|
|
||||||
{
|
|
||||||
"path": "."
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"settings": {}
|
|
||||||
}
|
|
||||||
297
composer.json
297
composer.json
|
|
@ -1,195 +1,89 @@
|
||||||
{
|
{
|
||||||
"name": "agaric-sites/agaric_coop",
|
"name": "agaric-sites/agaric_coop",
|
||||||
"description": "Agaric site modified from template for composer-based Drupal 8 Drutopia projects.",
|
"description": "Agaric site modified from template for composer-based Drutopia projects.",
|
||||||
"type": "project",
|
"type": "project",
|
||||||
"license": "GPL-2.0-or-later",
|
"license": "GPL-2.0-or-later",
|
||||||
"minimum-stability": "dev",
|
"minimum-stability": "dev",
|
||||||
"prefer-stable": true,
|
"prefer-stable": true,
|
||||||
"homepage": "https://agaric.coop",
|
|
||||||
"support": {
|
|
||||||
"docs": "http://docs.drutopia.org/en/latest",
|
|
||||||
"issues": "https://gitlab.com/drutopia/drutopia/-/issues"
|
|
||||||
},
|
|
||||||
"repositories": {
|
|
||||||
"drupal/search_api_entity_multiselect": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://codeberg.org/agaric/search_api_entity_multiselect.git"
|
|
||||||
},
|
|
||||||
"drupal/google_analytics": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git@git.drupal.org:issue/google_analytics-3357831.git"
|
|
||||||
},
|
|
||||||
"drupal": {
|
|
||||||
"type": "composer",
|
|
||||||
"url": "https://packages.drupal.org/8"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"require": {
|
"require": {
|
||||||
"composer/installers": "^2",
|
"composer/installers": "^1.7",
|
||||||
"cweagans/composer-patches": "^1",
|
"cweagans/composer-patches": "^1.0",
|
||||||
"drupal/admin_toolbar": "^3",
|
"drupal/admin_links_access_filter": "^1.0@alpha",
|
||||||
"drupal/antibot": "^2",
|
"drupal/allowed_formats": "^1.1",
|
||||||
"drupal/asset_injector": "^2",
|
"drupal/antibot": "^1.2",
|
||||||
"drupal/auto_entitylabel": "^3.0@beta",
|
"drupal/block_theme_sync": "1.x-dev",
|
||||||
"drupal/backup_migrate": "^5",
|
"drupal/ckeditor_markdown": "^1.1",
|
||||||
"drupal/block_class": "^4",
|
|
||||||
"drupal/bpmn_io": "^2",
|
|
||||||
"drupal/bsky": "^1",
|
|
||||||
"drupal/cancel_button": "^1",
|
|
||||||
"drupal/ckeditor_markdown": "^1.3",
|
|
||||||
"drupal/ckeditorheight": "^1",
|
|
||||||
"drupal/classitup": "^1",
|
|
||||||
"drupal/coffee": "1.x-dev",
|
"drupal/coffee": "1.x-dev",
|
||||||
"drupal/comment_notify": "^1",
|
"drupal/comment_notify": "dev-1.x",
|
||||||
"drupal/content_lock": "^2",
|
"drupal/core-composer-scaffold": "^9.0.0",
|
||||||
"drupal/context_stack": "^1",
|
"drupal/core-project-message": "^9.0.0",
|
||||||
"drupal/convert_bundles": "^2",
|
"drupal/core-recommended": "^9.0.0",
|
||||||
"drupal/core-composer-scaffold": "^10",
|
"drupal/customerror": "1.x-dev",
|
||||||
"drupal/core-recommended": "^10",
|
"drupal/diff": "^1.0@RC",
|
||||||
"drupal/csp": "^1",
|
"drupal/dropdown_language": "^2.2",
|
||||||
"drupal/customerror": "^1",
|
"drupal/drutopia_core": "dev-update-to-drupal9 as 1.x-dev",
|
||||||
"drupal/dashboards": "^2",
|
"drupal/drutopia_site": "dev-1.x",
|
||||||
"drupal/date_popup": "^2",
|
"drupal/google_analytics": "^2.3",
|
||||||
"drupal/datetimehideseconds": "^1",
|
"drupal/honeypot": "^2.0",
|
||||||
"drupal/diff": "^1",
|
"drupal/hotjar": "^1.2",
|
||||||
"drupal/drd": "^4",
|
"drupal/http_cache_control": "^1.0",
|
||||||
"drupal/drd_agent": "^4",
|
"drupal/http_client_error_status": "^2.0",
|
||||||
"drupal/dropdown_language": "^4",
|
"drupal/indieweb": "1.x-dev",
|
||||||
"drupal/drutopia_collection": "2.0.x-dev@dev",
|
"drupal/mailchimp": "1.x-dev",
|
||||||
"drupal/drutopia_core": "2.0.x-dev@dev",
|
"drupal/mailsystem": "^4.3",
|
||||||
"drupal/drutopia_organization": "2.0.x-dev@dev",
|
"drupal/markdown": "dev-2.x",
|
||||||
"drupal/drutopia_paragraph_title": "^1",
|
"drupal/menu_trail_by_path": "^1.1",
|
||||||
"drupal/drutopia_site": "2.0.x-dev@dev",
|
"drupal/migrate_plus": "^4.0",
|
||||||
"drupal/easy_breadcrumb": "^2",
|
"drupal/migrate_tools": "^4.0",
|
||||||
"drupal/eca": "^2",
|
"drupal/mimemail": "^1.0@alpha",
|
||||||
"drupal/editor_advanced_link": "^2.0",
|
"drupal/minimalhtml": "1.x-dev",
|
||||||
"drupal/editoria11y": "^2",
|
"drupal/multiline_config": "dev-1.x",
|
||||||
"drupal/email_registration": "^1",
|
"drupal/paragraphs_features": "^1.4",
|
||||||
"drupal/entity_notify": "^1",
|
"drupal/preview_link": "^1.1",
|
||||||
"drupal/entity_reference_override": "^2",
|
"drupal/redirect": "^1.2",
|
||||||
"drupal/environment_indicator": "^4",
|
"drupal/regionincontent": "1.x-dev",
|
||||||
"drupal/eva": "^3",
|
"drupal/scheduler": "^1.0",
|
||||||
"drupal/exif_orientation": "^1",
|
"drupal/scn": "^1.1",
|
||||||
"drupal/feeds": "^3",
|
"drupal/search404": "^1.0",
|
||||||
"drupal/feeds_ex": "^1",
|
"drupal/stripe_webform": "1.x-dev",
|
||||||
"drupal/feeds_ical": "^3",
|
"drupal/swiftmailer": "^2.0",
|
||||||
"drupal/fences": "^3.0",
|
"drupal/textarea_widget_for_text": "1.x-dev",
|
||||||
"drupal/field_defaults": "^2",
|
"drupal/twigsuggest": "1.x-dev",
|
||||||
"drupal/field_formatter_class": "^1",
|
"drupal/ui_patterns": "1.x-dev",
|
||||||
"drupal/field_token_value": "^3",
|
"drupal/upgrade_status": "^2.0",
|
||||||
"drupal/filter_perms": "^1",
|
"drupal/viewsreference": "^2.0",
|
||||||
"drupal/fitvids": "^2",
|
|
||||||
"drupal/fixed_block_content": "^1",
|
|
||||||
"drupal/flag": "^4",
|
|
||||||
"drupal/footnotes": "^4",
|
|
||||||
"drupal/fullcalendar_view": "^5",
|
|
||||||
"drupal/geolocation": "^3",
|
|
||||||
"drupal/gin_gutenberg": "^1",
|
|
||||||
"drupal/gin_login": "^2",
|
|
||||||
"drupal/google_analytics": "^4",
|
|
||||||
"drupal/gutenberg": "^2",
|
|
||||||
"drupal/honeypot": "^2",
|
|
||||||
"drupal/http_cache_control": "^2",
|
|
||||||
"drupal/http_client_error_status": "^3",
|
|
||||||
"drupal/ief_complex_open": "^1",
|
|
||||||
"drupal/indieweb": "^1",
|
|
||||||
"drupal/inotherwords": "^3",
|
|
||||||
"drupal/insert": "^3",
|
|
||||||
"drupal/key": "^1.14",
|
|
||||||
"drupal/link_attributes": "^1.9",
|
|
||||||
"drupal/linkit": "^6",
|
|
||||||
"drupal/mail_login": "^2.7",
|
|
||||||
"drupal/markdown": "^3",
|
|
||||||
"drupal/menu_item_extras": "^2.19",
|
|
||||||
"drupal/menu_link_config": "^1.0@alpha",
|
|
||||||
"drupal/menu_trail_by_path": "^2",
|
|
||||||
"drupal/microformats": "^2",
|
|
||||||
"drupal/migrate_plus": "^6",
|
|
||||||
"drupal/migrate_source_csv": "^3",
|
|
||||||
"drupal/migrate_tools": "^6",
|
|
||||||
"drupal/migrate_upgrade": "^4",
|
|
||||||
"drupal/minimalhtml": "^2",
|
|
||||||
"drupal/mposse": "^1",
|
|
||||||
"drupal/multiparagraph_flow": "^1.0@dev",
|
|
||||||
"drupal/node_view_permissions": "^1.4",
|
|
||||||
"drupal/noreferrer": "^1",
|
|
||||||
"drupal/notfoundpassthrough": "1.x-dev",
|
|
||||||
"drupal/octavia": "2.0.x-dev@dev",
|
|
||||||
"drupal/octavia_camouflage": "2.0.x-dev@dev",
|
|
||||||
"drupal/paragraphs_features": "^2",
|
|
||||||
"drupal/password_policy": "^4",
|
|
||||||
"drupal/plausible": "^2.0@beta",
|
|
||||||
"drupal/prepopulate": "^2",
|
|
||||||
"drupal/preview_link": "^2",
|
|
||||||
"drupal/printable": "^3",
|
|
||||||
"drupal/quickedit": "^1.0",
|
|
||||||
"drupal/r4032login": "^2",
|
|
||||||
"drupal/rabbit_hole": "^1.0@beta",
|
|
||||||
"drupal/regionincontent": "^1",
|
|
||||||
"drupal/registration_role": "^2",
|
|
||||||
"drupal/require_on_publish": "^1",
|
|
||||||
"drupal/role_delegation": "^1",
|
|
||||||
"drupal/scheduler": "^1",
|
|
||||||
"drupal/schema_metatag": "^3",
|
|
||||||
"drupal/scn": "^2",
|
|
||||||
"drupal/search404": "^2",
|
|
||||||
"drupal/search_api_autocomplete": "^1.6",
|
|
||||||
"drupal/search_api_entity_multiselect": "1.0.x-dev",
|
|
||||||
"drupal/search_api_saved_searches": "^1",
|
|
||||||
"drupal/seckit": "^2.0",
|
|
||||||
"drupal/select_or_other": "^4.0",
|
|
||||||
"drupal/seven": "^1.0",
|
|
||||||
"drupal/shield": "^1.4",
|
|
||||||
"drupal/smart_date": "^4.0",
|
|
||||||
"drupal/sms": "^2.0",
|
|
||||||
"drupal/social_post_facebook": "3.0.x-dev@dev",
|
|
||||||
"drupal/social_post_mastodon": "3.0.x-dev@dev",
|
|
||||||
"drupal/social_post_twitter": "3.x-dev@dev",
|
|
||||||
"drupal/stringoverrides": "^1.8",
|
|
||||||
"drupal/stripe_webform": "^2",
|
|
||||||
"drupal/subpathauto": "^1.0@RC",
|
|
||||||
"drupal/super_login": "^2.1",
|
|
||||||
"drupal/taxonomy_import": "^2",
|
|
||||||
"drupal/taxonomy_manager": "^2",
|
|
||||||
"drupal/textarea_widget_for_text": "^1.1",
|
|
||||||
"drupal/tomselect": "1.0.x-dev@dev",
|
|
||||||
"drupal/trim": "^2",
|
|
||||||
"drupal/twig_tweak": "^3.2",
|
|
||||||
"drupal/ui_patterns": "^1",
|
|
||||||
"drupal/unique_content_field_validation": "^1.1",
|
|
||||||
"drupal/view_password": "^6",
|
|
||||||
"drupal/view_unpublished": "^1.0",
|
|
||||||
"drupal/views_daterange_filters": "^1.0@alpha",
|
|
||||||
"drupal/views_field_compare": "^1.0@beta",
|
|
||||||
"drupal/viewsreference": "^1",
|
|
||||||
"drupal/webform": "^6.0",
|
"drupal/webform": "^6.0",
|
||||||
"drupal/webform_mailchimp": "^5.4",
|
"drupal/webform_mailchimp": "^5.4",
|
||||||
"drupal/webformautosave": "^2.0",
|
"drupal/wysiwyg_linebreaks": "1.x-dev",
|
||||||
"drupal/weight": "^3.3",
|
"drush/drush": "^10.0",
|
||||||
"drupal/workflow_buttons": "1.x-dev",
|
"drutopia/drutopia": "dev-update-to-drupal9",
|
||||||
"drupal/wysiwyg_linebreaks": "^2",
|
"league/commonmark": "^1.5",
|
||||||
"drush/drush": "*",
|
"wikimedia/composer-merge-plugin": "^1.4",
|
||||||
"drutopia/drutopia": "2.0.x-dev",
|
"zaporylie/composer-drupal-optimizations": "^1.0"
|
||||||
"league/commonmark": "^1.0",
|
|
||||||
"vlucas/phpdotenv": "^5.1",
|
|
||||||
"webflo/drupal-finder": "^1.2"
|
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"behat/behat": "^3.4",
|
"behat/behat": "^3.4",
|
||||||
"behat/mink": "^1.7",
|
"behat/mink": "^1.7",
|
||||||
"drupal/upgrade_status": "^4"
|
"behat/mink-goutte-driver": "^1.2",
|
||||||
|
"phpunit/phpunit": "^7"
|
||||||
|
},
|
||||||
|
"repositories": {
|
||||||
|
"drupal": {
|
||||||
|
"type": "composer",
|
||||||
|
"url": "https://packages.drupal.org/8"
|
||||||
|
},
|
||||||
|
"drutopia": {
|
||||||
|
"type": "vcs",
|
||||||
|
"url": "https://gitlab.com/drutopia/drutopia"
|
||||||
|
},
|
||||||
|
"drutopia_core": {
|
||||||
|
"type": "vcs",
|
||||||
|
"url": "https://gitlab.com/drutopia/drutopia_core"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"sort-packages": true,
|
"sort-packages": true,
|
||||||
"process-timeout": 600,
|
"process-timeout": 600
|
||||||
"allow-plugins": {
|
|
||||||
"composer/installers": true,
|
|
||||||
"cweagans/composer-patches": true,
|
|
||||||
"drupal/core-composer-scaffold": true,
|
|
||||||
"drupal/core-project-message": false,
|
|
||||||
"php-http/discovery": true,
|
|
||||||
"wikimedia/composer-merge-plugin": true
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"conflict": {
|
"conflict": {
|
||||||
"drupal/drupal": "*"
|
"drupal/drupal": "*"
|
||||||
|
|
@ -198,10 +92,7 @@
|
||||||
"drupal-scaffold": {
|
"drupal-scaffold": {
|
||||||
"locations": {
|
"locations": {
|
||||||
"web-root": "web/"
|
"web-root": "web/"
|
||||||
},
|
}
|
||||||
"allowed-packages": [
|
|
||||||
"drupal/ui_patterns"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"installer-paths": {
|
"installer-paths": {
|
||||||
"web/core": ["type:drupal-core"],
|
"web/core": ["type:drupal-core"],
|
||||||
|
|
@ -220,35 +111,47 @@
|
||||||
},
|
},
|
||||||
"enable-patching": true,
|
"enable-patching": true,
|
||||||
"patches": {
|
"patches": {
|
||||||
"drupal/bsky": {
|
"drupal/search404": {
|
||||||
"Implement Social Platform plugin from MPOSSE [#3536172]": "https://git.drupalcode.org/project/bsky/-/merge_requests/3.diff"
|
"Remove search module dependency": "https://www.drupal.org/files/issues/2018-07-09/search404-core-search-dependency-9.patch"
|
||||||
},
|
},
|
||||||
"drupal/coffee": {
|
"drupal/coffee": {
|
||||||
"Allow user to specify keyboard shortcut.": "https://www.drupal.org/files/issues/2018-11-11/1734898-14.coffee-hotkeys-plus-g.patch"
|
"Allow user to specify keyboard shortcut.": "https://www.drupal.org/files/issues/2018-11-11/1734898-14.coffee-hotkeys-plus-g.patch"
|
||||||
},
|
},
|
||||||
"drupal/core": {
|
"drupal/wysiwyg_linebreaks": {
|
||||||
"Adding attributes to views-view-list.html.twig doesn't work if Views List class Style option is empty": "https://www.drupal.org/files/issues/2023-03-16/2845400-24.patch",
|
"Drupal 9 readiness and code standars": "https://www.drupal.org/files/issues/2020-04-21/drupal_9_readiness_and_code_standarts_3129608-7.patch",
|
||||||
"Use form element of type date instead textfield when selecting a date in an exposed filter": "https://www.drupal.org/files/issues/2025-06-24/2648950-293.patch",
|
"Excess line breaks keep getting added": "https://www.drupal.org/files/issues/2018-11-18/excess-line-breaks-keep-getting-added-3013853-5.patch"
|
||||||
"Views Date Filter Datetime Granularity Option": "https://www.drupal.org/files/issues/2021-04-27/2868014-110-after-2648950-247-applied.patch",
|
|
||||||
"Exception thrown by responsive srcset images when the image is not yet in the file system (such as with Stage File Proxy)": "https://www.drupal.org/files/issues/2021-09-03/responsive_image-remove_missing_response_image_width_exception-2827921-22.patch"
|
|
||||||
},
|
},
|
||||||
"drupal/ds": {
|
"drupal/textarea_widget_for_text": {
|
||||||
"Parent theme template inheritance bug": "https://www.drupal.org/files/issues/2021-02-22/2895316-12.patch"
|
"Automated Drupal Rector fixes":"https://www.drupal.org/files/issues/2020-05-23/textarea_widget_for_text.1.1.rector.patch"
|
||||||
|
},
|
||||||
|
"drupal/block_theme_sync": {
|
||||||
|
"Automated Drupal 9 compatibility fixes": "https://www.drupal.org/files/issues/2020-09-07/3146266-3.patch"
|
||||||
|
},
|
||||||
|
"drupal/config_actions_provider": {
|
||||||
|
"Automated Drupal Rector fixes": "https://www.drupal.org/files/issues/2020-05-23/config_actions_provider.1.x-dev.rector.patch"
|
||||||
|
},
|
||||||
|
"drupal/multiline_config": {
|
||||||
|
"Drupal 9 readiness for Multiline Config": "https://www.drupal.org/files/issues/2020-07-22/3109713-Drupal-support-13.patch"
|
||||||
|
},
|
||||||
|
"drupal/mailchimp": {
|
||||||
|
"Drupal 9 compatibility": "https://www.drupal.org/files/issues/2020-07-16/mailchimp-d9-3138909-9.patch"
|
||||||
|
},
|
||||||
|
"drupal/minimalhtml": {
|
||||||
|
"Automated Drupal Rector fixes": "https://www.drupal.org/files/issues/2020-09-09/3141144-4.txt"
|
||||||
|
},
|
||||||
|
"drupal/regionincontent": {
|
||||||
|
"Region In Content Template": "https://www.drupal.org/files/issues/2020-06-06/regionincontent.1.x-dev.rector.patch"
|
||||||
|
},
|
||||||
|
"drupal/stripe_webform": {
|
||||||
|
"Automated Drupal 9 compatibility fixes": "https://www.drupal.org/files/issues/2020-09-09/stripe_webform.1.x-dev.rector.patch"
|
||||||
},
|
},
|
||||||
"drupal/markdown": {
|
"drupal/markdown": {
|
||||||
"Explain Unknown parsers more clearly - also fixes status check 403 [#3529633]": "https://git.drupalcode.org/project/markdown/-/merge_requests/51.diff",
|
"[markdown] Drupal 9 Support": "https://www.drupal.org/files/issues/2020-05-14/3103679-18.patch"
|
||||||
"Fix fatal error with Drush 13 due to MarkdownCommands replacing logger [#3483437]": "https://www.drupal.org/files/issues/2025-09-02/3483437-markdown--fix-drush-13.diff"
|
|
||||||
},
|
|
||||||
"drupal/stripe": {
|
|
||||||
"Don't load Stripe JS on every page": "https://www.drupal.org/files/issues/2021-08-12/dont-load-strip-js-on-every-page-3225280.diff"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"nuke": "scripts/nuke.sh",
|
"nuke": "rm -rf vendor web/core web/modules/contrib web/profiles/contrib drush/contrib",
|
||||||
"pull": "scripts/pull.sh",
|
|
||||||
"pull-files": "drush -y rsync @live:%files @self:%files",
|
|
||||||
"css": "scripts/css.sh",
|
|
||||||
"quick-start": [
|
"quick-start": [
|
||||||
"composer install",
|
"composer install",
|
||||||
"php docroot/core/scripts/drupal quick-start drutopia --no-interaction"
|
"php docroot/core/scripts/drupal quick-start drutopia --no-interaction"
|
||||||
|
|
|
||||||
27585
composer.lock
generated
27585
composer.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -1,5 +0,0 @@
|
||||||
menu_depth: 4
|
|
||||||
hoverintent_behavior:
|
|
||||||
enabled: true
|
|
||||||
timeout: 500
|
|
||||||
enable_toggle_shortcut: false
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
display_menu_item: false
|
|
||||||
enable_keyboard_shortcut: true
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
max_bundle_number: 20
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
_core:
|
|
||||||
default_config_hash: Cu2-s9-0MWqW4_uPQ730ew60COymFfS726t-Rct0MQU
|
|
||||||
status: 1
|
|
||||||
pattern: '[node:field_microblog_default:value]'
|
|
||||||
escape: false
|
|
||||||
preserve_titles: false
|
|
||||||
save: false
|
|
||||||
chunk: 50
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- node.type.microblog
|
|
||||||
|
|
@ -1,31 +0,0 @@
|
||||||
uuid: 90b94a1a-2679-4e0f-bfa9-7c2c47cdd17f
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
content:
|
|
||||||
- 'block_content:slide:82a602d0-5a54-4baf-84a9-8bbf482a96f9'
|
|
||||||
module:
|
|
||||||
- block_content
|
|
||||||
- block_visibility_groups
|
|
||||||
theme:
|
|
||||||
- agarica
|
|
||||||
id: 31daysofmigrationsinterviewontalkingdrupal
|
|
||||||
theme: agarica
|
|
||||||
region: content_bottom
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: 'block_content:82a602d0-5a54-4baf-84a9-8bbf482a96f9'
|
|
||||||
settings:
|
|
||||||
id: 'block_content:82a602d0-5a54-4baf-84a9-8bbf482a96f9'
|
|
||||||
label: '31 Days of Migrations Interview on Talking Drupal'
|
|
||||||
label_display: '0'
|
|
||||||
provider: block_content
|
|
||||||
status: true
|
|
||||||
info: ''
|
|
||||||
view_mode: columnar
|
|
||||||
visibility:
|
|
||||||
condition_group:
|
|
||||||
id: condition_group
|
|
||||||
negate: false
|
|
||||||
context_mapping: { }
|
|
||||||
block_visibility_group: ''
|
|
||||||
|
|
@ -1,31 +0,0 @@
|
||||||
uuid: e069fce5-8225-4f8a-b004-2cb403e2beae
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
content:
|
|
||||||
- 'block_content:slide:d5f97865-8fc0-4240-a0c4-4b302f641345'
|
|
||||||
module:
|
|
||||||
- block_content
|
|
||||||
- block_visibility_groups
|
|
||||||
theme:
|
|
||||||
- agarica
|
|
||||||
id: agaricnewsletter
|
|
||||||
theme: agarica
|
|
||||||
region: content_bottom
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: 'block_content:d5f97865-8fc0-4240-a0c4-4b302f641345'
|
|
||||||
settings:
|
|
||||||
id: 'block_content:d5f97865-8fc0-4240-a0c4-4b302f641345'
|
|
||||||
label: 'Agaric Newsletter'
|
|
||||||
label_display: visible
|
|
||||||
provider: block_content
|
|
||||||
status: true
|
|
||||||
info: ''
|
|
||||||
view_mode: default
|
|
||||||
visibility:
|
|
||||||
condition_group:
|
|
||||||
id: condition_group
|
|
||||||
negate: false
|
|
||||||
context_mapping: { }
|
|
||||||
block_visibility_group: ''
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
||||||
uuid: b5687322-6f65-474a-86aa-6ef9d842c884
|
|
||||||
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: { }
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
||||||
uuid: 256e0ab2-c7af-465b-9d6f-d44a5539326c
|
|
||||||
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: { }
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
||||||
uuid: 188b2c4c-cbb5-4e4d-ae1f-0f90d146ebef
|
|
||||||
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: { }
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
||||||
uuid: fe5f8678-4118-47e9-b0fd-ad68226a0526
|
|
||||||
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: { }
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
||||||
uuid: 45a1a2a2-78f1-489b-b8b1-b356dd599e13
|
|
||||||
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: { }
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
||||||
uuid: 256444a2-89e5-49e1-9ef9-314b004d8edf
|
|
||||||
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: { }
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
||||||
uuid: 40ef5460-0f52-4869-8a62-7a6ab10840ea
|
|
||||||
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: { }
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
||||||
uuid: 950f5415-1d4a-4451-ba91-693c8dcd40e1
|
|
||||||
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: { }
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
||||||
uuid: b4eac400-4235-4fd9-bdaa-11ce7b3203bb
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- system
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
_core:
|
|
||||||
default_config_hash: y9X3xgCsO59pQyzNLzY1D3SDJJxCHILLWkpPnmuTJ2E
|
|
||||||
id: gin_breadcrumbs
|
|
||||||
theme: gin
|
|
||||||
region: breadcrumb
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: system_breadcrumb_block
|
|
||||||
settings:
|
|
||||||
id: system_breadcrumb_block
|
|
||||||
label: Breadcrumbs
|
|
||||||
label_display: '0'
|
|
||||||
provider: system
|
|
||||||
visibility: { }
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
||||||
uuid: 733f5d2e-72af-439d-8193-55d88a49e4e0
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- system
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
_core:
|
|
||||||
default_config_hash: hBHXB7hC05XU7pDYzETt-GUcpFlogK1gkjyAsg0Ym58
|
|
||||||
id: gin_content
|
|
||||||
theme: gin
|
|
||||||
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: { }
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
||||||
uuid: edae7165-daf6-4a00-a353-9bada37cb337
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- help
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
_core:
|
|
||||||
default_config_hash: 8nOAry2oKqJOr0zbrlJ3sZHDFJLIO6j-0vT0K_TYca4
|
|
||||||
id: gin_help
|
|
||||||
theme: gin
|
|
||||||
region: help
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: help_block
|
|
||||||
settings:
|
|
||||||
id: help_block
|
|
||||||
label: Help
|
|
||||||
label_display: '0'
|
|
||||||
provider: help
|
|
||||||
visibility: { }
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
||||||
uuid: c6f3def0-b208-4142-a7df-32fceeaff1b2
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
_core:
|
|
||||||
default_config_hash: OQ9aJ-4qVwK1x00o9EOYK4eFDjQr_HLpbPiJaPSVZiQ
|
|
||||||
id: gin_local_actions
|
|
||||||
theme: gin
|
|
||||||
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: { }
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
||||||
uuid: 86b40799-a6f1-446f-90ae-478a814190ff
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- system
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
_core:
|
|
||||||
default_config_hash: WvPhI8OwllG0gE69-F8qL3ai3nd5SbYD6JpmEuZcyok
|
|
||||||
id: gin_messages
|
|
||||||
theme: gin
|
|
||||||
region: highlighted
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: system_messages_block
|
|
||||||
settings:
|
|
||||||
id: system_messages_block
|
|
||||||
label: 'Status messages'
|
|
||||||
label_display: '0'
|
|
||||||
provider: system
|
|
||||||
visibility: { }
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
||||||
uuid: bb66b6f9-554e-4c3f-9f53-e302d02ffe04
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
_core:
|
|
||||||
default_config_hash: HLQY2xgby8K3vN_98hiOSasOhm9pdCsH234-s0duJ8Q
|
|
||||||
id: gin_page_title
|
|
||||||
theme: gin
|
|
||||||
region: header
|
|
||||||
weight: -30
|
|
||||||
provider: null
|
|
||||||
plugin: page_title_block
|
|
||||||
settings:
|
|
||||||
id: page_title_block
|
|
||||||
label: 'Page title'
|
|
||||||
label_display: '0'
|
|
||||||
provider: core
|
|
||||||
visibility: { }
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
||||||
uuid: d41456fe-6395-43c2-b06a-dde3411b99ff
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
_core:
|
|
||||||
default_config_hash: Hh01DLj9k7UnNdPpOQXHZHW7GHf2OPNDQyCJF7_R9ac
|
|
||||||
id: gin_primary_local_tasks
|
|
||||||
theme: gin
|
|
||||||
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: { }
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
||||||
uuid: 793e0050-ff07-4dc3-8165-369ce766381e
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
_core:
|
|
||||||
default_config_hash: BCWhood0xXFQYqxFgL1spXdb9KeIuXH1YvTdjIEedDg
|
|
||||||
id: gin_secondary_local_tasks
|
|
||||||
theme: gin
|
|
||||||
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: { }
|
|
||||||
|
|
@ -1,31 +0,0 @@
|
||||||
uuid: 33e858a7-5fb0-4061-99d1-85cb9b4d7e8e
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies:
|
|
||||||
content:
|
|
||||||
- 'block_content:content_reference:779630ad-78a7-4a33-9f3b-2b73de77bfa4'
|
|
||||||
module:
|
|
||||||
- block_content
|
|
||||||
- block_visibility_groups
|
|
||||||
theme:
|
|
||||||
- agarica
|
|
||||||
id: upcomingtrainingsfromagaric
|
|
||||||
theme: agarica
|
|
||||||
region: content
|
|
||||||
weight: -8
|
|
||||||
provider: null
|
|
||||||
plugin: 'block_content:779630ad-78a7-4a33-9f3b-2b73de77bfa4'
|
|
||||||
settings:
|
|
||||||
id: 'block_content:779630ad-78a7-4a33-9f3b-2b73de77bfa4'
|
|
||||||
label: 'Upcoming Trainings from Agaric'
|
|
||||||
label_display: visible
|
|
||||||
provider: block_content
|
|
||||||
status: true
|
|
||||||
info: ''
|
|
||||||
view_mode: full
|
|
||||||
visibility:
|
|
||||||
condition_group:
|
|
||||||
id: condition_group
|
|
||||||
negate: false
|
|
||||||
context_mapping: { }
|
|
||||||
block_visibility_group: ''
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
uuid: 21ced413-ae8e-47ec-9e6d-d675e1c85d70
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies: { }
|
|
||||||
id: content_reference
|
|
||||||
label: 'Content reference'
|
|
||||||
revision: false
|
|
||||||
description: ''
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
uuid: 5c3f5dad-c83a-4eba-89d8-ae49b1469b6a
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies: { }
|
|
||||||
formId: comment_form
|
|
||||||
captchaType: riddler/Riddler
|
|
||||||
label: comment_form
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
uuid: 8c3a3bd4-0db4-43e8-b48c-7f82129f2567
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: dXrX0-J-kKv0EAFBOwj3iknBYWbh30k_54lWApW4YUQ
|
|
||||||
formId: contact_message_feedback_form
|
|
||||||
captchaType: default
|
|
||||||
label: contact_message_feedback_form
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
uuid: 36ce83e9-1cde-41c4-a6b5-61b553843af4
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: 7zUmOK1ti1l0bc78ieysHa3_57MOin7IgHpHhwbSugs
|
|
||||||
formId: contact_message_personal_form
|
|
||||||
captchaType: default
|
|
||||||
label: contact_message_personal_form
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
uuid: 82a5cf75-fc93-403f-91bd-0115fbbabcbe
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: node_action_form
|
|
||||||
captchaType: default
|
|
||||||
label: node_action_form
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
uuid: 49977c7a-44b3-4fc9-a9ad-033628c680a2
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: node_article_form
|
|
||||||
captchaType: default
|
|
||||||
label: node_article_form
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
uuid: 55a995de-130f-4134-a792-2332c04818cb
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: node_blog_form
|
|
||||||
captchaType: default
|
|
||||||
label: node_blog_form
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
uuid: 78432405-d9f3-4d70-80fe-cfdf56921d60
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: node_campaign_form
|
|
||||||
captchaType: default
|
|
||||||
label: node_campaign_form
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
uuid: 33598578-ea78-4150-8c4b-5c9643527187
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: node_case_study_form
|
|
||||||
captchaType: default
|
|
||||||
label: node_case_study_form
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
uuid: 2133fb7d-efe9-448c-90de-9573313d1e18
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: node_event_form
|
|
||||||
captchaType: default
|
|
||||||
label: node_event_form
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
uuid: 27831b34-ac65-461d-b08b-c7228b540a22
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: node_landing_page_form
|
|
||||||
captchaType: default
|
|
||||||
label: node_landing_page_form
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
uuid: eedde8fb-8dee-4451-8fac-4fdec3f9ef6b
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: node_page_form
|
|
||||||
captchaType: default
|
|
||||||
label: node_page_form
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
uuid: 04aafb3f-507d-4403-833d-d982cdc3032b
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: node_people_form
|
|
||||||
captchaType: default
|
|
||||||
label: node_people_form
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
uuid: 7135081a-bfad-4ee6-ab99-49e6f505a192
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: node_resource_form
|
|
||||||
captchaType: default
|
|
||||||
label: node_resource_form
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
uuid: 72a8c963-260a-44f4-8aaa-b695c4311db2
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: XbughDuwgOtc_8ztmYxz84gaXBeR760xH3bGSKD9v1Q
|
|
||||||
formId: user_login_form
|
|
||||||
captchaType: default
|
|
||||||
label: user_login_form
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
uuid: 42f5818e-f934-415a-84a3-9b99a65c78e0
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: qZeHI5fZ9WQRKsfl8FMBwzk3puSsWCRtWKEZh04JJUo
|
|
||||||
formId: user_pass
|
|
||||||
captchaType: default
|
|
||||||
label: user_pass
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
uuid: 08ef1218-75c2-4ad9-a840-f8796fd9af97
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: 2iz3cMg7T1eSKXtNIB9WyaRptfg7wosDDPBSBhXFXl0
|
|
||||||
formId: user_register_form
|
|
||||||
captchaType: default
|
|
||||||
label: user_register_form
|
|
||||||
|
|
@ -1,16 +0,0 @@
|
||||||
_core:
|
|
||||||
default_config_hash: hSAUW7BoAd9YUpKcVKyZpW4wY67g4XZAYlt3Vnz6SVA
|
|
||||||
langcode: en
|
|
||||||
enable_globally: 0
|
|
||||||
enable_globally_on_admin_routes: false
|
|
||||||
default_challenge: riddler/Riddler
|
|
||||||
description: 'Please help us focus on people and not spambots by answering this question.'
|
|
||||||
title: CAPTCHA
|
|
||||||
administration_mode: true
|
|
||||||
administration_mode_on_admin_routes: false
|
|
||||||
whitelist_ips: ''
|
|
||||||
wrong_captcha_response_message: 'The answer you entered for the CAPTCHA was not correct. Do we need to make our website more clear about what we do?'
|
|
||||||
default_validation: 1
|
|
||||||
persistence: 3
|
|
||||||
enable_stats: false
|
|
||||||
log_wrong_responses: true
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
third_party_settings:
|
|
||||||
shortcut:
|
|
||||||
module_link: true
|
|
||||||
|
|
@ -1,18 +0,0 @@
|
||||||
uuid: 6c0ebdd8-f31e-467c-af05-1790e8c31d23
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- admin_toolbar_search
|
|
||||||
id: config_sync.module.admin_toolbar_search
|
|
||||||
snapshotSet: config_sync
|
|
||||||
extensionType: module
|
|
||||||
extensionName: admin_toolbar_search
|
|
||||||
items:
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: admin_toolbar_search.settings
|
|
||||||
data:
|
|
||||||
display_menu_item: 0
|
|
||||||
_core:
|
|
||||||
default_config_hash: AAmWcgwzGYbXfR6wfEfMyoi3r5QZwlpxvq5dHbupnJo
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
||||||
uuid: c4f3765b-5d11-4fe2-bf9d-e9ac83d68eed
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- admin_toolbar_tools
|
|
||||||
id: config_sync.module.admin_toolbar_tools
|
|
||||||
snapshotSet: config_sync
|
|
||||||
extensionType: module
|
|
||||||
extensionName: admin_toolbar_tools
|
|
||||||
items:
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: admin_toolbar_tools.settings
|
|
||||||
data:
|
|
||||||
max_bundle_number: 20
|
|
||||||
hoverintent_functionality: true
|
|
||||||
show_local_tasks: false
|
|
||||||
_core:
|
|
||||||
default_config_hash: WgdZsrd_5w9jlmcHV4R9dD2tG9OZEkYo4I_O8h7Gq8Q
|
|
||||||
|
|
@ -1,89 +0,0 @@
|
||||||
uuid: 4e7bcf04-6457-474a-8390-e54f8c0c5da5
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- captcha
|
|
||||||
id: config_sync.module.captcha
|
|
||||||
snapshotSet: config_sync
|
|
||||||
extensionType: module
|
|
||||||
extensionName: captcha
|
|
||||||
items:
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: captcha.captcha_point.contact_message_feedback_form
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: contact_message_feedback_form
|
|
||||||
captchaType: default
|
|
||||||
label: contact_message_feedback_form
|
|
||||||
_core:
|
|
||||||
default_config_hash: dXrX0-J-kKv0EAFBOwj3iknBYWbh30k_54lWApW4YUQ
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: captcha.captcha_point.contact_message_personal_form
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: contact_message_personal_form
|
|
||||||
captchaType: default
|
|
||||||
label: contact_message_personal_form
|
|
||||||
_core:
|
|
||||||
default_config_hash: 7zUmOK1ti1l0bc78ieysHa3_57MOin7IgHpHhwbSugs
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: captcha.captcha_point.user_login_form
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: user_login_form
|
|
||||||
captchaType: default
|
|
||||||
label: user_login_form
|
|
||||||
_core:
|
|
||||||
default_config_hash: XbughDuwgOtc_8ztmYxz84gaXBeR760xH3bGSKD9v1Q
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: captcha.captcha_point.user_pass
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: user_pass
|
|
||||||
captchaType: default
|
|
||||||
label: user_pass
|
|
||||||
_core:
|
|
||||||
default_config_hash: qZeHI5fZ9WQRKsfl8FMBwzk3puSsWCRtWKEZh04JJUo
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: captcha.captcha_point.user_register_form
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies: { }
|
|
||||||
formId: user_register_form
|
|
||||||
captchaType: default
|
|
||||||
label: user_register_form
|
|
||||||
_core:
|
|
||||||
default_config_hash: 2iz3cMg7T1eSKXtNIB9WyaRptfg7wosDDPBSBhXFXl0
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: captcha.settings
|
|
||||||
data:
|
|
||||||
enabled_default: 0
|
|
||||||
default_challenge: captcha/Math
|
|
||||||
description: 'This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.'
|
|
||||||
administration_mode: false
|
|
||||||
allow_on_admin_pages: false
|
|
||||||
whitelist_ips: ''
|
|
||||||
add_captcha_description: true
|
|
||||||
wrong_captcha_response_message: 'The answer you entered for the CAPTCHA was not correct.'
|
|
||||||
default_validation: 1
|
|
||||||
persistence: 1
|
|
||||||
enable_stats: false
|
|
||||||
log_wrong_responses: false
|
|
||||||
_core:
|
|
||||||
default_config_hash: hSAUW7BoAd9YUpKcVKyZpW4wY67g4XZAYlt3Vnz6SVA
|
|
||||||
|
|
@ -1,871 +0,0 @@
|
||||||
uuid: 5f18b58d-90dd-4c37-b2df-2ef68185873a
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- drutopia_microblog
|
|
||||||
id: config_sync.module.drutopia_microblog
|
|
||||||
snapshotSet: config_sync
|
|
||||||
extensionType: module
|
|
||||||
extensionName: drutopia_microblog
|
|
||||||
items:
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: auto_entitylabel.settings.node.microblog
|
|
||||||
data:
|
|
||||||
status: 1
|
|
||||||
pattern: '[node:field_microblog_default:value]'
|
|
||||||
escape: false
|
|
||||||
preserve_titles: false
|
|
||||||
save: false
|
|
||||||
chunk: 50
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- node.type.microblog
|
|
||||||
_core:
|
|
||||||
default_config_hash: Cu2-s9-0MWqW4_uPQ730ew60COymFfS726t-Rct0MQU
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: core.base_field_override.node.microblog.promote
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- node.type.microblog
|
|
||||||
id: node.microblog.promote
|
|
||||||
field_name: promote
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: 'Promoted to front page'
|
|
||||||
description: ''
|
|
||||||
required: false
|
|
||||||
translatable: true
|
|
||||||
default_value:
|
|
||||||
-
|
|
||||||
value: 0
|
|
||||||
default_value_callback: ''
|
|
||||||
settings:
|
|
||||||
on_label: 'On'
|
|
||||||
off_label: 'Off'
|
|
||||||
field_type: boolean
|
|
||||||
_core:
|
|
||||||
default_config_hash: fwQ4RBr0fIoItsZA-4VDPg0ymh0Kdq5rHyS49T5SFqQ
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: core.base_field_override.node.microblog.status
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- node.type.microblog
|
|
||||||
id: node.microblog.status
|
|
||||||
field_name: status
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: Published
|
|
||||||
description: ''
|
|
||||||
required: false
|
|
||||||
translatable: true
|
|
||||||
default_value:
|
|
||||||
-
|
|
||||||
value: 0
|
|
||||||
default_value_callback: ''
|
|
||||||
settings:
|
|
||||||
on_label: 'On'
|
|
||||||
off_label: 'Off'
|
|
||||||
field_type: boolean
|
|
||||||
_core:
|
|
||||||
default_config_hash: w3LPC-lk3KbZKMEcgbc11TFxQSjmz1FbgBqJuv8fjgI
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: core.base_field_override.node.microblog.title
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- node.type.microblog
|
|
||||||
id: node.microblog.title
|
|
||||||
field_name: title
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: 'Internal listings label'
|
|
||||||
description: ''
|
|
||||||
required: true
|
|
||||||
translatable: true
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings: { }
|
|
||||||
field_type: string
|
|
||||||
_core:
|
|
||||||
default_config_hash: lArsATTr14_4WtV3LGkTzAisK-OE9-xNYCZuolmufiU
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: core.entity_form_display.node.microblog.default
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.field.node.microblog.field_microblog_bluesky
|
|
||||||
- field.field.node.microblog.field_microblog_default
|
|
||||||
- field.field.node.microblog.field_microblog_facebook
|
|
||||||
- field.field.node.microblog.field_microblog_note
|
|
||||||
- field.field.node.microblog.field_microblog_referenced_node
|
|
||||||
- field.field.node.microblog.field_microblog_signal
|
|
||||||
- field.field.node.microblog.field_microblog_sms
|
|
||||||
- field.field.node.microblog.field_microblog_twitter
|
|
||||||
- node.type.microblog
|
|
||||||
- field.field.node.microblog.field_mposse_delay
|
|
||||||
- field.field.node.microblog.field_mposse_sent_status
|
|
||||||
module:
|
|
||||||
- path
|
|
||||||
id: node.microblog.default
|
|
||||||
targetEntityType: node
|
|
||||||
bundle: microblog
|
|
||||||
mode: default
|
|
||||||
content:
|
|
||||||
created:
|
|
||||||
type: datetime_timestamp
|
|
||||||
weight: 7
|
|
||||||
region: content
|
|
||||||
settings: { }
|
|
||||||
third_party_settings: { }
|
|
||||||
field_microblog_bluesky:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 4
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings:
|
|
||||||
maxlength:
|
|
||||||
maxlength_js: 250
|
|
||||||
maxlength_js_label: 'Content limited to @limit characters, remaining: <strong>@remaining</strong>'
|
|
||||||
maxlength_js_enforce: false
|
|
||||||
field_microblog_default:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 0
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
field_microblog_facebook:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 3
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
field_microblog_note:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 1
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
field_microblog_signal:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 6
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
field_microblog_sms:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 5
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
field_microblog_twitter:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 2
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
path:
|
|
||||||
type: path
|
|
||||||
weight: 10
|
|
||||||
region: content
|
|
||||||
settings: { }
|
|
||||||
third_party_settings: { }
|
|
||||||
promote:
|
|
||||||
type: boolean_checkbox
|
|
||||||
weight: 8
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
display_label: true
|
|
||||||
third_party_settings: { }
|
|
||||||
status:
|
|
||||||
type: boolean_checkbox
|
|
||||||
weight: 12
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
display_label: true
|
|
||||||
third_party_settings: { }
|
|
||||||
sticky:
|
|
||||||
type: boolean_checkbox
|
|
||||||
weight: 9
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
display_label: true
|
|
||||||
third_party_settings: { }
|
|
||||||
url_redirects:
|
|
||||||
weight: 11
|
|
||||||
region: content
|
|
||||||
settings: { }
|
|
||||||
third_party_settings: { }
|
|
||||||
field_mposse_delay:
|
|
||||||
type: options_select
|
|
||||||
weight: 101
|
|
||||||
region: content
|
|
||||||
settings: { }
|
|
||||||
third_party_settings: { }
|
|
||||||
hidden:
|
|
||||||
field_microblog_referenced_node: true
|
|
||||||
title: true
|
|
||||||
uid: true
|
|
||||||
field_mposse_sent_status: true
|
|
||||||
_core:
|
|
||||||
default_config_hash: 82IcCGO5SfEHG4B4Xv4R5OoyBo8xf85d4hOX-3gwhak
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: core.entity_view_display.node.microblog.default
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.field.node.microblog.field_microblog_bluesky
|
|
||||||
- field.field.node.microblog.field_microblog_default
|
|
||||||
- field.field.node.microblog.field_microblog_facebook
|
|
||||||
- field.field.node.microblog.field_microblog_note
|
|
||||||
- field.field.node.microblog.field_microblog_referenced_node
|
|
||||||
- field.field.node.microblog.field_microblog_signal
|
|
||||||
- field.field.node.microblog.field_microblog_sms
|
|
||||||
- field.field.node.microblog.field_microblog_twitter
|
|
||||||
- node.type.microblog
|
|
||||||
- field.field.node.microblog.field_mposse_delay
|
|
||||||
- field.field.node.microblog.field_mposse_sent_status
|
|
||||||
module:
|
|
||||||
- user
|
|
||||||
- options
|
|
||||||
id: node.microblog.default
|
|
||||||
targetEntityType: node
|
|
||||||
bundle: microblog
|
|
||||||
mode: default
|
|
||||||
content:
|
|
||||||
field_microblog_bluesky:
|
|
||||||
type: string
|
|
||||||
label: above
|
|
||||||
settings:
|
|
||||||
link_to_entity: false
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 4
|
|
||||||
region: content
|
|
||||||
field_microblog_default:
|
|
||||||
type: string
|
|
||||||
label: hidden
|
|
||||||
settings:
|
|
||||||
link_to_entity: false
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 0
|
|
||||||
region: content
|
|
||||||
field_microblog_facebook:
|
|
||||||
type: string
|
|
||||||
label: above
|
|
||||||
settings:
|
|
||||||
link_to_entity: false
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 3
|
|
||||||
region: content
|
|
||||||
field_microblog_note:
|
|
||||||
type: string
|
|
||||||
label: above
|
|
||||||
settings:
|
|
||||||
link_to_entity: false
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 1
|
|
||||||
region: content
|
|
||||||
field_microblog_signal:
|
|
||||||
type: string
|
|
||||||
label: above
|
|
||||||
settings:
|
|
||||||
link_to_entity: false
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 6
|
|
||||||
region: content
|
|
||||||
field_microblog_sms:
|
|
||||||
type: string
|
|
||||||
label: above
|
|
||||||
settings:
|
|
||||||
link_to_entity: false
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 5
|
|
||||||
region: content
|
|
||||||
field_microblog_twitter:
|
|
||||||
type: string
|
|
||||||
label: above
|
|
||||||
settings:
|
|
||||||
link_to_entity: false
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 2
|
|
||||||
region: content
|
|
||||||
indieweb_syndication:
|
|
||||||
settings: { }
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 7
|
|
||||||
region: content
|
|
||||||
hidden:
|
|
||||||
field_microblog_referenced_node: true
|
|
||||||
links: true
|
|
||||||
search_api_excerpt: true
|
|
||||||
field_mposse_sent_status: true
|
|
||||||
field_mposse_delay: true
|
|
||||||
_core:
|
|
||||||
default_config_hash: ElRVYwlWOxVXYuwO12WN3XgEi5PTP5npiK0OZgqEiJQ
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: core.entity_view_display.node.microblog.teaser
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- core.entity_view_mode.node.teaser
|
|
||||||
- field.field.node.microblog.field_microblog_bluesky
|
|
||||||
- field.field.node.microblog.field_microblog_default
|
|
||||||
- field.field.node.microblog.field_microblog_facebook
|
|
||||||
- field.field.node.microblog.field_microblog_note
|
|
||||||
- field.field.node.microblog.field_microblog_referenced_node
|
|
||||||
- field.field.node.microblog.field_microblog_signal
|
|
||||||
- field.field.node.microblog.field_microblog_sms
|
|
||||||
- field.field.node.microblog.field_microblog_twitter
|
|
||||||
- node.type.microblog
|
|
||||||
module:
|
|
||||||
- user
|
|
||||||
id: node.microblog.teaser
|
|
||||||
targetEntityType: node
|
|
||||||
bundle: microblog
|
|
||||||
mode: teaser
|
|
||||||
content:
|
|
||||||
field_microblog_default:
|
|
||||||
type: string
|
|
||||||
label: hidden
|
|
||||||
settings:
|
|
||||||
link_to_entity: false
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 0
|
|
||||||
region: content
|
|
||||||
links:
|
|
||||||
settings: { }
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 1
|
|
||||||
region: content
|
|
||||||
hidden:
|
|
||||||
field_microblog_bluesky: true
|
|
||||||
field_microblog_facebook: true
|
|
||||||
field_microblog_note: true
|
|
||||||
field_microblog_referenced_node: true
|
|
||||||
field_microblog_signal: true
|
|
||||||
field_microblog_sms: true
|
|
||||||
field_microblog_twitter: true
|
|
||||||
indieweb_syndication: true
|
|
||||||
search_api_excerpt: true
|
|
||||||
_core:
|
|
||||||
default_config_hash: xCiDDUIhEC91h3I-LnB1jCxoheoPA1opK_2tu834pVw
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: field.field.node.microblog.field_microblog_bluesky
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.node.field_microblog_bluesky
|
|
||||||
- node.type.microblog
|
|
||||||
id: node.microblog.field_microblog_bluesky
|
|
||||||
field_name: field_microblog_bluesky
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: Bluesky
|
|
||||||
description: ''
|
|
||||||
required: false
|
|
||||||
translatable: false
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings: { }
|
|
||||||
field_type: string
|
|
||||||
_core:
|
|
||||||
default_config_hash: SXUJEgxYTnESokjsXhgI7MAfbF0utmiaS_3qtAl0g9o
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: field.field.node.microblog.field_microblog_default
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.node.field_microblog_default
|
|
||||||
- node.type.microblog
|
|
||||||
id: node.microblog.field_microblog_default
|
|
||||||
field_name: field_microblog_default
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: Default
|
|
||||||
description: 'This version of your microblog post will be used on this website and any other places it pushes to which are not given alternate versions below.'
|
|
||||||
required: true
|
|
||||||
translatable: false
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings: { }
|
|
||||||
field_type: string
|
|
||||||
_core:
|
|
||||||
default_config_hash: MzymBbLTbE2MPOJGWWG0slV2XdE8LAZ82rcwwKdm5tw
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: field.field.node.microblog.field_microblog_facebook
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.node.field_microblog_facebook
|
|
||||||
- node.type.microblog
|
|
||||||
id: node.microblog.field_microblog_facebook
|
|
||||||
field_name: field_microblog_facebook
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: Facebook
|
|
||||||
description: ''
|
|
||||||
required: false
|
|
||||||
translatable: false
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings: { }
|
|
||||||
field_type: string
|
|
||||||
_core:
|
|
||||||
default_config_hash: ftE0Qszi0KIw2ZKpYPXNVHtnKI4_hYATIQw9KDGFonA
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: field.field.node.microblog.field_microblog_mastodon
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.node.field_microblog_mastodon
|
|
||||||
- node.type.microblog
|
|
||||||
id: node.microblog.field_microblog_mastodon
|
|
||||||
field_name: field_microblog_mastodon
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: Mastodon
|
|
||||||
description: ''
|
|
||||||
required: false
|
|
||||||
translatable: false
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings: { }
|
|
||||||
field_type: string
|
|
||||||
_core:
|
|
||||||
default_config_hash: 7QtXFNWlhxA5HOVV8vQrJy_wNc2yYVAXPV32x2JGlYw
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: field.field.node.microblog.field_microblog_note
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.node.field_microblog_note
|
|
||||||
- node.type.microblog
|
|
||||||
id: node.microblog.field_microblog_note
|
|
||||||
field_name: field_microblog_note
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: 'ActivityStream note (Mastodon toot etc)'
|
|
||||||
description: "If you want your microblog post to have a minor variation when it goes to an ActivityPub supporting server, such as a Mastodon instance, edit it here. For example, to replace a person's name with their @mention@instance.example user."
|
|
||||||
required: false
|
|
||||||
translatable: false
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings: { }
|
|
||||||
field_type: string
|
|
||||||
_core:
|
|
||||||
default_config_hash: LU6_UqhwmPYbDmxYcj1p2wbrbBVD79DRZXE6H4m0GsE
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: field.field.node.microblog.field_microblog_referenced_node
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.node.field_microblog_referenced_node
|
|
||||||
- node.type.microblog
|
|
||||||
- node.type.article
|
|
||||||
id: node.microblog.field_microblog_referenced_node
|
|
||||||
field_name: field_microblog_referenced_node
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: 'Referenced node'
|
|
||||||
description: 'Content to link your microblog post to.'
|
|
||||||
required: false
|
|
||||||
translatable: false
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings:
|
|
||||||
handler: 'default:node'
|
|
||||||
handler_settings:
|
|
||||||
target_bundles:
|
|
||||||
microblog: microblog
|
|
||||||
article: article
|
|
||||||
sort:
|
|
||||||
field: _none
|
|
||||||
direction: ASC
|
|
||||||
auto_create: false
|
|
||||||
auto_create_bundle: microblog
|
|
||||||
field_type: entity_reference
|
|
||||||
_core:
|
|
||||||
default_config_hash: geiaeJOF4zI_iTq4VQuWP-AexyVFx2dvI4sLZ4vdF8E
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: field.field.node.microblog.field_microblog_signal
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.node.field_microblog_signal
|
|
||||||
- node.type.microblog
|
|
||||||
id: node.microblog.field_microblog_signal
|
|
||||||
field_name: field_microblog_signal
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: Signal
|
|
||||||
description: ''
|
|
||||||
required: false
|
|
||||||
translatable: false
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings: { }
|
|
||||||
field_type: string
|
|
||||||
_core:
|
|
||||||
default_config_hash: oohDqtqU6UlmUyh8uwm985L26xl0UpPSTHJeaNqVkSE
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: field.field.node.microblog.field_microblog_sms
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.node.field_microblog_sms
|
|
||||||
- node.type.microblog
|
|
||||||
id: node.microblog.field_microblog_sms
|
|
||||||
field_name: field_microblog_sms
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: SMS
|
|
||||||
description: ''
|
|
||||||
required: false
|
|
||||||
translatable: false
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings: { }
|
|
||||||
field_type: string
|
|
||||||
_core:
|
|
||||||
default_config_hash: LDclPy8VJhBOFyE40i3AgXs3d0TPamDcwMFIM22bmfc
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: field.field.node.microblog.field_microblog_twitter
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.node.field_microblog_twitter
|
|
||||||
- node.type.microblog
|
|
||||||
id: node.microblog.field_microblog_twitter
|
|
||||||
field_name: field_microblog_twitter
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: Twitter
|
|
||||||
description: ''
|
|
||||||
required: false
|
|
||||||
translatable: false
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings: { }
|
|
||||||
field_type: string
|
|
||||||
_core:
|
|
||||||
default_config_hash: amohM5Oa3atfGBBNn6JoChV7jQ8lXng3TOxU-CaqDKY
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: field.storage.node.field_microblog_bluesky
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- node
|
|
||||||
id: node.field_microblog_bluesky
|
|
||||||
field_name: field_microblog_bluesky
|
|
||||||
entity_type: node
|
|
||||||
type: string
|
|
||||||
settings:
|
|
||||||
max_length: 500
|
|
||||||
case_sensitive: false
|
|
||||||
is_ascii: false
|
|
||||||
module: core
|
|
||||||
locked: false
|
|
||||||
cardinality: 1
|
|
||||||
translatable: true
|
|
||||||
indexes: { }
|
|
||||||
persist_with_no_fields: false
|
|
||||||
custom_storage: false
|
|
||||||
_core:
|
|
||||||
default_config_hash: Tqv2067kK1yWmJ6qDJBLetDdsb_qqPiEvVgWOsQISKE
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: field.storage.node.field_microblog_default
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- node
|
|
||||||
id: node.field_microblog_default
|
|
||||||
field_name: field_microblog_default
|
|
||||||
entity_type: node
|
|
||||||
type: string
|
|
||||||
settings:
|
|
||||||
max_length: 1020
|
|
||||||
case_sensitive: false
|
|
||||||
is_ascii: false
|
|
||||||
module: core
|
|
||||||
locked: false
|
|
||||||
cardinality: 1
|
|
||||||
translatable: true
|
|
||||||
indexes: { }
|
|
||||||
persist_with_no_fields: false
|
|
||||||
custom_storage: false
|
|
||||||
_core:
|
|
||||||
default_config_hash: hPNwT9B0p-WcLtyJwPVg8dqvAONqkCFnu6Hn16BO1B4
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: field.storage.node.field_microblog_facebook
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- node
|
|
||||||
id: node.field_microblog_facebook
|
|
||||||
field_name: field_microblog_facebook
|
|
||||||
entity_type: node
|
|
||||||
type: string
|
|
||||||
settings:
|
|
||||||
max_length: 1020
|
|
||||||
case_sensitive: false
|
|
||||||
is_ascii: false
|
|
||||||
module: core
|
|
||||||
locked: false
|
|
||||||
cardinality: 1
|
|
||||||
translatable: true
|
|
||||||
indexes: { }
|
|
||||||
persist_with_no_fields: false
|
|
||||||
custom_storage: false
|
|
||||||
_core:
|
|
||||||
default_config_hash: 16lwuDOmWKGOHbmNIEe7Dc2smOW-QV16FjexiXTiRXA
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: field.storage.node.field_microblog_mastodon
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- node
|
|
||||||
id: node.field_microblog_mastodon
|
|
||||||
field_name: field_microblog_mastodon
|
|
||||||
entity_type: node
|
|
||||||
type: string
|
|
||||||
settings:
|
|
||||||
max_length: 500
|
|
||||||
case_sensitive: false
|
|
||||||
is_ascii: false
|
|
||||||
module: core
|
|
||||||
locked: false
|
|
||||||
cardinality: 1
|
|
||||||
translatable: true
|
|
||||||
indexes: { }
|
|
||||||
persist_with_no_fields: false
|
|
||||||
custom_storage: false
|
|
||||||
_core:
|
|
||||||
default_config_hash: deoC5DYUw1PGD9CkjllaParY9QyBNubggpOeUsdLizI
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: field.storage.node.field_microblog_note
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- node
|
|
||||||
id: node.field_microblog_note
|
|
||||||
field_name: field_microblog_note
|
|
||||||
entity_type: node
|
|
||||||
type: string
|
|
||||||
settings:
|
|
||||||
max_length: 1020
|
|
||||||
case_sensitive: false
|
|
||||||
is_ascii: false
|
|
||||||
module: core
|
|
||||||
locked: false
|
|
||||||
cardinality: 1
|
|
||||||
translatable: true
|
|
||||||
indexes: { }
|
|
||||||
persist_with_no_fields: false
|
|
||||||
custom_storage: false
|
|
||||||
_core:
|
|
||||||
default_config_hash: DcHKshATPwxZNjtAkQckjgWY-1-k2d97S8AxcN-G8mo
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: field.storage.node.field_microblog_referenced_node
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- node
|
|
||||||
id: node.field_microblog_referenced_node
|
|
||||||
field_name: field_microblog_referenced_node
|
|
||||||
entity_type: node
|
|
||||||
type: entity_reference
|
|
||||||
settings:
|
|
||||||
target_type: node
|
|
||||||
module: core
|
|
||||||
locked: false
|
|
||||||
cardinality: 1
|
|
||||||
translatable: true
|
|
||||||
indexes: { }
|
|
||||||
persist_with_no_fields: false
|
|
||||||
custom_storage: false
|
|
||||||
_core:
|
|
||||||
default_config_hash: T9-v-Bce2qCPz4VsmF7NRaX_zTbGejw13decUnh-49w
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: field.storage.node.field_microblog_signal
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- node
|
|
||||||
id: node.field_microblog_signal
|
|
||||||
field_name: field_microblog_signal
|
|
||||||
entity_type: node
|
|
||||||
type: string
|
|
||||||
settings:
|
|
||||||
max_length: 1020
|
|
||||||
case_sensitive: false
|
|
||||||
is_ascii: false
|
|
||||||
module: core
|
|
||||||
locked: false
|
|
||||||
cardinality: 1
|
|
||||||
translatable: true
|
|
||||||
indexes: { }
|
|
||||||
persist_with_no_fields: false
|
|
||||||
custom_storage: false
|
|
||||||
_core:
|
|
||||||
default_config_hash: rFbwUx4FQvBuyv9KiNpDDXluuHPDuZQ1Jbrfnefu0iE
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: field.storage.node.field_microblog_sms
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- node
|
|
||||||
id: node.field_microblog_sms
|
|
||||||
field_name: field_microblog_sms
|
|
||||||
entity_type: node
|
|
||||||
type: string
|
|
||||||
settings:
|
|
||||||
max_length: 1020
|
|
||||||
case_sensitive: false
|
|
||||||
is_ascii: false
|
|
||||||
module: core
|
|
||||||
locked: false
|
|
||||||
cardinality: 1
|
|
||||||
translatable: true
|
|
||||||
indexes: { }
|
|
||||||
persist_with_no_fields: false
|
|
||||||
custom_storage: false
|
|
||||||
_core:
|
|
||||||
default_config_hash: a0w3vsFQh59OpwBu9gclAx9Bgni4R8pUhMLXn59FhrY
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: field.storage.node.field_microblog_twitter
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- node
|
|
||||||
id: node.field_microblog_twitter
|
|
||||||
field_name: field_microblog_twitter
|
|
||||||
entity_type: node
|
|
||||||
type: string
|
|
||||||
settings:
|
|
||||||
max_length: 1020
|
|
||||||
case_sensitive: false
|
|
||||||
is_ascii: false
|
|
||||||
module: core
|
|
||||||
locked: false
|
|
||||||
cardinality: 1
|
|
||||||
translatable: true
|
|
||||||
indexes: { }
|
|
||||||
persist_with_no_fields: false
|
|
||||||
custom_storage: false
|
|
||||||
_core:
|
|
||||||
default_config_hash: TTRD8eM6dNhXFzrCX-bLfn_XuVepJYO7DWuHzbSCERU
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: node.type.microblog
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- indieweb_context
|
|
||||||
- menu_ui
|
|
||||||
third_party_settings:
|
|
||||||
indieweb_context:
|
|
||||||
post_context_link_field: ''
|
|
||||||
post_context_post_type: ''
|
|
||||||
menu_ui:
|
|
||||||
available_menus: { }
|
|
||||||
parent: ''
|
|
||||||
name: Microblog
|
|
||||||
type: microblog
|
|
||||||
description: 'A short note or status update without title or complex data structure. Suitable for pushing to text messages and syndicating to social media as well as posting to this site itself.'
|
|
||||||
help: ''
|
|
||||||
new_revision: true
|
|
||||||
preview_mode: 0
|
|
||||||
display_submitted: false
|
|
||||||
_core:
|
|
||||||
default_config_hash: lZLSy9426p6hMuLFTkunFTLI5oqFxmczeI-TJpb8XFo
|
|
||||||
|
|
@ -1,47 +0,0 @@
|
||||||
uuid: efed8d16-a7b8-4cf5-9f05-2832406a0e1c
|
|
||||||
langcode: es
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- image_widget_crop
|
|
||||||
id: config_sync.module.image_widget_crop
|
|
||||||
snapshotSet: config_sync
|
|
||||||
extensionType: module
|
|
||||||
extensionName: image_widget_crop
|
|
||||||
items:
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: image.style.crop_thumbnail
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies: { }
|
|
||||||
name: crop_thumbnail
|
|
||||||
label: 'Crop thumbnail'
|
|
||||||
effects:
|
|
||||||
8fc26706-68dc-4eb7-8121-33e3936ed55f:
|
|
||||||
uuid: 8fc26706-68dc-4eb7-8121-33e3936ed55f
|
|
||||||
id: image_scale
|
|
||||||
weight: 1
|
|
||||||
data:
|
|
||||||
width: 400
|
|
||||||
height: null
|
|
||||||
upscale: false
|
|
||||||
_core:
|
|
||||||
default_config_hash: N1S0PHZeyxfFqgzB-sDeGPaxi0dDOL8NUiP_d6WXSV0
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: image_widget_crop.settings
|
|
||||||
data:
|
|
||||||
settings:
|
|
||||||
library_url: ''
|
|
||||||
css_url: ''
|
|
||||||
crop_preview_image_style: crop_thumbnail
|
|
||||||
crop_list: { }
|
|
||||||
crop_types_required: { }
|
|
||||||
warn_multiple_usages: false
|
|
||||||
show_default_crop: true
|
|
||||||
notify_apply: false
|
|
||||||
notify_update: true
|
|
||||||
_core:
|
|
||||||
default_config_hash: UYGkeE2iH3UGp9lBPsELb3VSgHz9vkMJeaGzcYwE7Uw
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,303 +0,0 @@
|
||||||
uuid: a1d34d36-7d71-4b14-b9d2-6ccab7166fb2
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- mposse
|
|
||||||
id: config_sync.module.mposse
|
|
||||||
snapshotSet: config_sync
|
|
||||||
extensionType: module
|
|
||||||
extensionName: mposse
|
|
||||||
items:
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: core.entity_form_display.node.microblog.mposse_inline_microblog
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- core.entity_form_mode.node.mposse_inline_microblog
|
|
||||||
- field.field.node.microblog.field_mposse_delay
|
|
||||||
- field.field.node.microblog.field_microblog_bluesky
|
|
||||||
- field.field.node.microblog.field_microblog_default
|
|
||||||
- field.field.node.microblog.field_microblog_facebook
|
|
||||||
- field.field.node.microblog.field_microblog_mastodon
|
|
||||||
- field.field.node.microblog.field_microblog_note
|
|
||||||
- field.field.node.microblog.field_microblog_referenced_node
|
|
||||||
- field.field.node.microblog.field_microblog_signal
|
|
||||||
- field.field.node.microblog.field_microblog_sms
|
|
||||||
- field.field.node.microblog.field_microblog_twitter
|
|
||||||
- field.field.node.microblog.field_mposse_sent_status
|
|
||||||
- node.type.microblog
|
|
||||||
_core:
|
|
||||||
default_config_hash: 82IcCGO5SfEHG4B4Xv4R5OoyBo8xf85d4hOX-3gwhak
|
|
||||||
id: node.microblog.mposse_inline_microblog
|
|
||||||
targetEntityType: node
|
|
||||||
bundle: microblog
|
|
||||||
mode: mposse_inline_microblog
|
|
||||||
content:
|
|
||||||
field_mposse_delay:
|
|
||||||
type: options_select
|
|
||||||
weight: 8
|
|
||||||
region: content
|
|
||||||
settings: { }
|
|
||||||
third_party_settings: { }
|
|
||||||
field_microblog_bluesky:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 5
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings:
|
|
||||||
maxlength:
|
|
||||||
maxlength_js: 250
|
|
||||||
maxlength_js_label: 'Content limited to @limit characters, remaining: <strong>@remaining</strong>'
|
|
||||||
maxlength_js_enforce: false
|
|
||||||
field_microblog_default:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 0
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
field_microblog_facebook:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 4
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
field_microblog_mastodon:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 3
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings:
|
|
||||||
maxlength:
|
|
||||||
maxlength_js: null
|
|
||||||
maxlength_js_label: 'Content limited to @limit characters, remaining: <strong>@remaining</strong>'
|
|
||||||
maxlength_js_enforce: false
|
|
||||||
field_microblog_note:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 1
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
field_microblog_signal:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 7
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
field_microblog_sms:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 6
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
field_microblog_twitter:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 2
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
hidden:
|
|
||||||
created: true
|
|
||||||
field_microblog_referenced_node: true
|
|
||||||
field_mposse_sent_status: true
|
|
||||||
moderation_state: true
|
|
||||||
path: true
|
|
||||||
promote: true
|
|
||||||
status: true
|
|
||||||
sticky: true
|
|
||||||
title: true
|
|
||||||
uid: true
|
|
||||||
url_redirects: true
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: core.entity_form_mode.node.mposse_inline_microblog
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- node
|
|
||||||
id: node.mposse_inline_microblog
|
|
||||||
label: 'MPOSSE Inline Microblog'
|
|
||||||
description: ''
|
|
||||||
targetEntityType: node
|
|
||||||
cache: true
|
|
||||||
_core:
|
|
||||||
default_config_hash: fmIOWzYjraYEKtm9oU5z5DeyVnUjDueTQzaqKiFKN1Q
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: field.field.node.microblog.field_mposse_delay
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.node.field_mposse_delay
|
|
||||||
- node.type.microblog
|
|
||||||
module:
|
|
||||||
- options
|
|
||||||
id: node.microblog.field_mposse_delay
|
|
||||||
field_name: field_mposse_delay
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: Delay
|
|
||||||
description: 'Apply a delay to prevent posting until your selected delay timer has expired.'
|
|
||||||
required: true
|
|
||||||
translatable: false
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings: { }
|
|
||||||
field_type: list_integer
|
|
||||||
_core:
|
|
||||||
default_config_hash: WmX496nQ3MnLChoRl9almUEBd-XotStu1MAzBCDmZnM
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: field.field.node.microblog.field_mposse_sent_status
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.node.field_mposse_sent_status
|
|
||||||
- node.type.microblog
|
|
||||||
id: node.microblog.field_mposse_sent_status
|
|
||||||
field_name: field_mposse_sent_status
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: Sent
|
|
||||||
description: ''
|
|
||||||
required: false
|
|
||||||
translatable: false
|
|
||||||
default_value:
|
|
||||||
-
|
|
||||||
value: 0
|
|
||||||
default_value_callback: ''
|
|
||||||
settings:
|
|
||||||
on_label: Sent
|
|
||||||
off_label: Pending
|
|
||||||
field_type: boolean
|
|
||||||
_core:
|
|
||||||
default_config_hash: 4SPlEenFjXEy40lpaHSUklp-brLFRdkgt8CfXCyZ8_k
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: field.storage.node.field_mposse
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- node
|
|
||||||
id: node.field_mposse
|
|
||||||
field_name: field_mposse
|
|
||||||
entity_type: node
|
|
||||||
type: entity_reference
|
|
||||||
settings:
|
|
||||||
target_type: node
|
|
||||||
module: core
|
|
||||||
locked: false
|
|
||||||
cardinality: 1
|
|
||||||
translatable: true
|
|
||||||
indexes: { }
|
|
||||||
persist_with_no_fields: false
|
|
||||||
custom_storage: false
|
|
||||||
_core:
|
|
||||||
default_config_hash: gmN6Ed62I1jXW4BzFTgPJ77KHMG9td-i7TFr1aU3Llo
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: field.storage.node.field_mposse_delay
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- node
|
|
||||||
- options
|
|
||||||
id: node.field_mposse_delay
|
|
||||||
field_name: field_mposse_delay
|
|
||||||
entity_type: node
|
|
||||||
type: list_integer
|
|
||||||
settings:
|
|
||||||
allowed_values:
|
|
||||||
-
|
|
||||||
value: 0
|
|
||||||
label: 'No delay'
|
|
||||||
-
|
|
||||||
value: 5
|
|
||||||
label: '5 minutes'
|
|
||||||
-
|
|
||||||
value: 10
|
|
||||||
label: '10 minutes'
|
|
||||||
-
|
|
||||||
value: 15
|
|
||||||
label: '15 minutes'
|
|
||||||
-
|
|
||||||
value: 20
|
|
||||||
label: '20 minutes'
|
|
||||||
-
|
|
||||||
value: 30
|
|
||||||
label: '30 minutes'
|
|
||||||
-
|
|
||||||
value: 45
|
|
||||||
label: '45 minutes'
|
|
||||||
-
|
|
||||||
value: 60
|
|
||||||
label: '60 minutes'
|
|
||||||
allowed_values_function: ''
|
|
||||||
module: options
|
|
||||||
locked: false
|
|
||||||
cardinality: 1
|
|
||||||
translatable: true
|
|
||||||
indexes: { }
|
|
||||||
persist_with_no_fields: false
|
|
||||||
custom_storage: false
|
|
||||||
_core:
|
|
||||||
default_config_hash: qKQL-shvzZEr7lTSin9INde3RcrHAHsG9mOXGt3_6i0
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: field.storage.node.field_mposse_sent_status
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- node
|
|
||||||
id: node.field_mposse_sent_status
|
|
||||||
field_name: field_mposse_sent_status
|
|
||||||
entity_type: node
|
|
||||||
type: boolean
|
|
||||||
settings: { }
|
|
||||||
module: core
|
|
||||||
locked: false
|
|
||||||
cardinality: 1
|
|
||||||
translatable: true
|
|
||||||
indexes: { }
|
|
||||||
persist_with_no_fields: false
|
|
||||||
custom_storage: false
|
|
||||||
_core:
|
|
||||||
default_config_hash: jyX7uOWNwbwefjns3Bae1WuNHswaiHkp3hGz8wxndpc
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: mposse.settings
|
|
||||||
data:
|
|
||||||
soft_disable: 0
|
|
||||||
_core:
|
|
||||||
default_config_hash: 9nnKKkP9HwZxXTuO0uyt0rDeJ-C46AWVn8_OqVznEP8
|
|
||||||
|
|
@ -1,26 +0,0 @@
|
||||||
uuid: 0a350ca2-bbc3-4cba-ad45-3289ea2e3599
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- plausible
|
|
||||||
id: config_sync.module.plausible
|
|
||||||
snapshotSet: config_sync
|
|
||||||
extensionType: module
|
|
||||||
extensionName: plausible
|
|
||||||
items:
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: plausible.settings
|
|
||||||
data:
|
|
||||||
script:
|
|
||||||
domain: ''
|
|
||||||
api: ''
|
|
||||||
src: 'https://plausible.io/js/plausible.js'
|
|
||||||
visibility:
|
|
||||||
request_path_mode: 0
|
|
||||||
request_path_pages: ''
|
|
||||||
user_role_mode: 0
|
|
||||||
user_role_roles: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: 2SiIYRsf-Gi9ND77G28c3dFL1cVw6F7QLmrIafNZp-g
|
|
||||||
|
|
@ -1,31 +0,0 @@
|
||||||
uuid: d38694b0-7f8d-4b00-a5bf-62ed5a9968ac
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- rdf
|
|
||||||
id: config_sync.module.rdf
|
|
||||||
snapshotSet: config_sync
|
|
||||||
extensionType: module
|
|
||||||
extensionName: rdf
|
|
||||||
items:
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: rdf.mapping.user.user
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- user
|
|
||||||
id: user.user
|
|
||||||
targetEntityType: user
|
|
||||||
bundle: user
|
|
||||||
types:
|
|
||||||
- 'schema:Person'
|
|
||||||
fieldMappings:
|
|
||||||
name:
|
|
||||||
properties:
|
|
||||||
- 'schema:name'
|
|
||||||
_core:
|
|
||||||
default_config_hash: TGTlmpYAtXxjtYMFA_A0vosE2c4R5MCQwLviIA5HUM0
|
|
||||||
|
|
@ -1,21 +0,0 @@
|
||||||
uuid: bb530c43-9956-41b9-a3d6-8d3a377fa202
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- riddler
|
|
||||||
id: config_sync.module.riddler
|
|
||||||
snapshotSet: config_sync
|
|
||||||
extensionType: module
|
|
||||||
extensionName: riddler
|
|
||||||
items:
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: riddler.settings
|
|
||||||
data:
|
|
||||||
riddles:
|
|
||||||
-
|
|
||||||
question: 'Do you really hate Spam?'
|
|
||||||
response: Yes!
|
|
||||||
_core:
|
|
||||||
default_config_hash: pKKCV0W4-r3Zf1QQzR2HDXAXmfH81248yrY2d9iR7S4
|
|
||||||
|
|
@ -1,320 +0,0 @@
|
||||||
uuid: cbd34594-e4cc-4b76-b12e-6119a8e6d049
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- tour
|
|
||||||
id: config_sync.module.tour
|
|
||||||
snapshotSet: config_sync
|
|
||||||
extensionType: module
|
|
||||||
extensionName: tour
|
|
||||||
items:
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: tour.tour.language
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- language
|
|
||||||
id: language
|
|
||||||
label: Language
|
|
||||||
module: language
|
|
||||||
routes:
|
|
||||||
-
|
|
||||||
route_name: entity.configurable_language.collection
|
|
||||||
tips:
|
|
||||||
language-overview:
|
|
||||||
id: language-overview
|
|
||||||
plugin: text
|
|
||||||
label: Languages
|
|
||||||
weight: 1
|
|
||||||
body: '<p>The "Languages" page allows you to add, edit, delete, and reorder languages for the site.</p>'
|
|
||||||
language-add:
|
|
||||||
id: language-add
|
|
||||||
plugin: text
|
|
||||||
label: 'Adding languages'
|
|
||||||
weight: 2
|
|
||||||
selector: .button-action
|
|
||||||
body: '<p>To add more languages to your site, click the "Add language" button.</p><p>Added languages will be displayed in the language list and can then be edited or deleted.</p>'
|
|
||||||
language-reorder:
|
|
||||||
id: language-reorder
|
|
||||||
plugin: text
|
|
||||||
label: 'Reordering languages'
|
|
||||||
weight: 3
|
|
||||||
selector: .draggable
|
|
||||||
body: '<p>To reorder the languages on your site, use the drag icons next to each language.</p><p>The order shown here is the display order for language lists on the site such as in the language switcher blocks provided by the Interface Translation and Content Translation modules.</p><p>When you are done with reordering the languages, click the "Save configuration" button for the changes to take effect.</p>'
|
|
||||||
language-default:
|
|
||||||
id: language-default
|
|
||||||
plugin: text
|
|
||||||
label: 'Set a language as default'
|
|
||||||
weight: 4
|
|
||||||
selector: .js-form-item-site-default-language
|
|
||||||
body: '<p>You can change the default language of the site by choosing one of your configured languages as default. The site will use the default language in situations where no choice is made but a language should be set, for example as the language of the displayed interface.</p>'
|
|
||||||
language-operations:
|
|
||||||
id: language-operations
|
|
||||||
plugin: text
|
|
||||||
label: 'Modifying languages'
|
|
||||||
weight: 5
|
|
||||||
selector: .dropbutton-wrapper
|
|
||||||
body: '<p>Operations are provided for editing and deleting your languages.</p><p>You can edit the name and the direction of the language.</p><p>Deleted languages can be added back at a later time. Deleting a language will remove all interface translations associated with it, and content in this language will be set to be language neutral. Note that you cannot delete the default language of the site.</p>'
|
|
||||||
language-continue:
|
|
||||||
id: language-continue
|
|
||||||
plugin: text
|
|
||||||
label: 'Continuing on'
|
|
||||||
weight: 6
|
|
||||||
body: '<p>Now that you have an overview of the "Languages" page, you can continue by:<ul><li><a href="[site:url]admin/config/regional/language/add">Adding a language</a></li><li>Reordering languages</li><li>Editing a language</li><li>Deleting a language</li></ul></p>'
|
|
||||||
_core:
|
|
||||||
default_config_hash: Okz8QMYRGvq95nqLGYjp8gLiy93DKoMEzEVZVwEeg4M
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: tour.tour.language-add
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- language
|
|
||||||
id: language-add
|
|
||||||
label: 'Adding languages'
|
|
||||||
module: language
|
|
||||||
routes:
|
|
||||||
-
|
|
||||||
route_name: language.add
|
|
||||||
tips:
|
|
||||||
language-add-overview:
|
|
||||||
id: language-add-overview
|
|
||||||
plugin: text
|
|
||||||
label: 'Adding languages'
|
|
||||||
weight: 1
|
|
||||||
body: '<p>This page provides the ability to add common languages to your site.</p><p>If the desired language is not available, you can add a custom language.</p>'
|
|
||||||
language-add-choose:
|
|
||||||
id: language-add-choose
|
|
||||||
plugin: text
|
|
||||||
label: 'Select language'
|
|
||||||
weight: 2
|
|
||||||
selector: '#edit-predefined-langcode'
|
|
||||||
body: '<p>Choose a language from the list, or choose "Custom language..." at the end of the list.</p><p>Click the "Add language" button when you are done choosing your language.</p><p>When adding a custom language, you will get an additional form where you can provide the name, code, and direction of the language.</p>'
|
|
||||||
language-add-continue:
|
|
||||||
id: language-add-continue
|
|
||||||
plugin: text
|
|
||||||
label: 'Continuing on'
|
|
||||||
weight: 3
|
|
||||||
body: '<p>Now that you have an overview of the "Add languages" feature, you can continue by:<ul><li>Adding a language</li><li>Adding a custom language</li><li><a href="[site:url]admin/config/regional/language">Viewing configured languages</a></li></ul></p>'
|
|
||||||
_core:
|
|
||||||
default_config_hash: vcDd9H0uIlyOQGoVAJuD3ADMnQeRR_X3B-ojyb8Cbnc
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: tour.tour.language-edit
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- language
|
|
||||||
id: language-edit
|
|
||||||
label: 'Editing languages'
|
|
||||||
module: language
|
|
||||||
routes:
|
|
||||||
-
|
|
||||||
route_name: entity.configurable_language.edit_form
|
|
||||||
tips:
|
|
||||||
language-edit-overview:
|
|
||||||
id: language-edit-overview
|
|
||||||
plugin: text
|
|
||||||
label: 'Editing languages'
|
|
||||||
weight: 1
|
|
||||||
body: '<p>This page provides the ability to edit a language on your site, including custom languages.</p>'
|
|
||||||
language-edit-langcode:
|
|
||||||
id: language-edit-langcode
|
|
||||||
plugin: text
|
|
||||||
label: 'Language code'
|
|
||||||
weight: 2
|
|
||||||
selector: '#edit-langcode-view'
|
|
||||||
body: '<p>You cannot change the code of a language on the site, since it is used by the system to keep track of the language.</p>'
|
|
||||||
language-edit-label:
|
|
||||||
id: language-edit-label
|
|
||||||
plugin: text
|
|
||||||
label: 'Language name'
|
|
||||||
weight: 3
|
|
||||||
selector: '#edit-label'
|
|
||||||
body: '<p>The language name is used throughout the site for all users and is written in English. Names of built-in languages can be translated using the Interface Translation module, and names of both built-in and custom languages can be translated using the Configuration Translation module.</p>'
|
|
||||||
language-edit-direction:
|
|
||||||
id: language-edit-direction
|
|
||||||
plugin: text
|
|
||||||
label: 'Language direction'
|
|
||||||
weight: 4
|
|
||||||
selector: '#edit-direction--wrapper--description'
|
|
||||||
body: '<p>Choose if the language is a "Left to right" or "Right to left" language.</p><p>Note that not all themes support "Right to left" layouts, so test your theme if you are using "Right to left".</p>'
|
|
||||||
language-edit-continue:
|
|
||||||
id: language-edit-continue
|
|
||||||
plugin: text
|
|
||||||
label: 'Continuing on'
|
|
||||||
weight: 5
|
|
||||||
body: '<p>Now that you have an overview of the "Edit language" feature, you can continue by:<ul><li>Editing a language</li><li><a href="[site:url]admin/config/regional/language">Viewing configured languages</a></li></ul></p>'
|
|
||||||
_core:
|
|
||||||
default_config_hash: gjYvYwMqulNsq7VmScWKOqEUxar9AX0TvG8vfCCguUQ
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: tour.tour.locale
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- locale
|
|
||||||
id: locale
|
|
||||||
label: Translation
|
|
||||||
module: locale
|
|
||||||
routes:
|
|
||||||
-
|
|
||||||
route_name: locale.translate_page
|
|
||||||
tips:
|
|
||||||
locale-overview:
|
|
||||||
id: locale-overview
|
|
||||||
plugin: text
|
|
||||||
label: 'User interface translation'
|
|
||||||
weight: 1
|
|
||||||
body: 'This page allows you to translate the user interface or modify existing translations. If you have installed your site initially in English, you must first add another language on the <a href="[site:url]admin/config/regional/language">Languages page</a>, in order to use this page.'
|
|
||||||
locale-language:
|
|
||||||
id: locale-language
|
|
||||||
plugin: text
|
|
||||||
label: 'Translation language'
|
|
||||||
weight: 2
|
|
||||||
selector: '#edit-langcode'
|
|
||||||
body: 'Choose the language you want to translate.'
|
|
||||||
locale-search:
|
|
||||||
id: locale-search
|
|
||||||
plugin: text
|
|
||||||
label: Search
|
|
||||||
weight: 3
|
|
||||||
selector: '#edit-string'
|
|
||||||
body: 'Enter the specific word or sentence you want to translate, you can also write just a part of a word.'
|
|
||||||
locale-filter:
|
|
||||||
id: locale-filter
|
|
||||||
plugin: text
|
|
||||||
label: 'Filter the search'
|
|
||||||
weight: 4
|
|
||||||
selector: '#edit-translation'
|
|
||||||
body: "You can search for untranslated strings if you want to translate something that isn't translated yet. If you want to modify an existing translation, you might want to search only for translated strings."
|
|
||||||
locale-submit:
|
|
||||||
id: locale-submit
|
|
||||||
plugin: text
|
|
||||||
label: 'Apply your search criteria'
|
|
||||||
weight: 5
|
|
||||||
selector: '#edit-submit'
|
|
||||||
body: 'To apply your search criteria, click on the <em>Filter</em> button.'
|
|
||||||
locale-translate:
|
|
||||||
id: locale-translate
|
|
||||||
plugin: text
|
|
||||||
label: Translate
|
|
||||||
weight: 6
|
|
||||||
selector: .js-form-type-textarea
|
|
||||||
body: 'You can write your own translation in the text fields of the right column. Try to figure out in which context the text will be used in order to translate it in the appropriate way.'
|
|
||||||
locale-validate:
|
|
||||||
id: locale-validate
|
|
||||||
plugin: text
|
|
||||||
label: 'Validate the translation'
|
|
||||||
weight: 7
|
|
||||||
selector: '#edit-submit--2'
|
|
||||||
body: 'When you have finished your translations, click on the <em>Save translations</em> button. You must save your translations, each time before changing the page or making a new search.'
|
|
||||||
locale-continue:
|
|
||||||
id: locale-continue
|
|
||||||
plugin: text
|
|
||||||
label: 'Continuing on'
|
|
||||||
weight: 8
|
|
||||||
body: 'The translations you have made here will be used on your site''s user interface. If you want to use them on another site or modify them on an external translation editor, you can <a href="[site:url]admin/config/regional/translate/export">export them</a> to a .po file and <a href="[site:url]admin/config/regional/translate/import">import them</a> later.'
|
|
||||||
_core:
|
|
||||||
default_config_hash: Kcx1PIw-KgGbTo5_tOkbI6TWJiP_0Sr7t5T9SuMV2hA
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: tour.tour.views-ui
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- views_ui
|
|
||||||
id: views-ui
|
|
||||||
label: 'View edit page'
|
|
||||||
module: views_ui
|
|
||||||
routes:
|
|
||||||
-
|
|
||||||
route_name: entity.view.edit_form
|
|
||||||
-
|
|
||||||
route_name: entity.view.edit_display_form
|
|
||||||
tips:
|
|
||||||
views-main:
|
|
||||||
id: views-main
|
|
||||||
plugin: text
|
|
||||||
label: 'Manage view settings'
|
|
||||||
weight: 1
|
|
||||||
body: 'View or edit the configuration.'
|
|
||||||
views-ui-displays:
|
|
||||||
id: views-ui-displays
|
|
||||||
plugin: text
|
|
||||||
label: 'Displays in this view'
|
|
||||||
weight: 2
|
|
||||||
selector: '#views-display-top'
|
|
||||||
body: 'A display is a way of outputting the results, e.g., as a page or a block. A view can contain multiple displays, which are listed here. The active display is highlighted.'
|
|
||||||
views-ui-view-admin:
|
|
||||||
id: views-ui-view-admin
|
|
||||||
plugin: text
|
|
||||||
label: 'View administration'
|
|
||||||
weight: 3
|
|
||||||
position: right
|
|
||||||
selector: '#views-display-extra-actions'
|
|
||||||
body: 'Perform administrative tasks, including adding a description and creating a clone. Click the drop-down button to view the available options.'
|
|
||||||
views-ui-format:
|
|
||||||
id: views-ui-format
|
|
||||||
plugin: text
|
|
||||||
label: 'Output format'
|
|
||||||
weight: 4
|
|
||||||
selector: .views-ui-display-tab-bucket.format
|
|
||||||
body: "Choose how to output results. E.g., choose <em>Content</em> to output each item completely, using your configured display settings. Or choose <em>Fields</em>, which allows you to output only specific fields for each result. Additional formats can be added by installing modules to <em>extend</em> Drupal's base functionality."
|
|
||||||
views-ui-fields:
|
|
||||||
id: views-ui-fields
|
|
||||||
plugin: text
|
|
||||||
label: Fields
|
|
||||||
weight: 5
|
|
||||||
selector: .views-ui-display-tab-bucket.field
|
|
||||||
body: 'If this view uses fields, they are listed here. You can click on a field to configure it.'
|
|
||||||
views-ui-filter:
|
|
||||||
id: views-ui-filter
|
|
||||||
plugin: text
|
|
||||||
label: 'Filter your view'
|
|
||||||
weight: 6
|
|
||||||
selector: .views-ui-display-tab-bucket.filter
|
|
||||||
body: 'Add filters to limit the results in the output. E.g., to only show content that is <em>published</em>, you would add a filter for <em>Published</em> and select <em>Yes</em>.'
|
|
||||||
views-ui-filter-operations:
|
|
||||||
id: views-ui-filter-operations
|
|
||||||
plugin: text
|
|
||||||
label: 'Filter actions'
|
|
||||||
weight: 7
|
|
||||||
selector: '.views-ui-display-tab-bucket.filter .dropbutton-widget'
|
|
||||||
body: 'Add, rearrange or remove filters.'
|
|
||||||
views-ui-sorts:
|
|
||||||
id: views-ui-sorts
|
|
||||||
plugin: text
|
|
||||||
label: 'Sort Criteria'
|
|
||||||
weight: 8
|
|
||||||
selector: .views-ui-display-tab-bucket.sort
|
|
||||||
body: 'Control the order in which the results are output. Click on an active sort rule to configure it.'
|
|
||||||
views-ui-sorts-operations:
|
|
||||||
id: views-ui-sorts-operations
|
|
||||||
plugin: text
|
|
||||||
label: 'Sort actions'
|
|
||||||
weight: 9
|
|
||||||
selector: '.views-ui-display-tab-bucket.sort .dropbutton-widget'
|
|
||||||
body: 'Add, rearrange or remove sorting rules.'
|
|
||||||
views-ui-preview:
|
|
||||||
id: views-ui-preview
|
|
||||||
plugin: text
|
|
||||||
label: Preview
|
|
||||||
weight: 10
|
|
||||||
position: right
|
|
||||||
selector: '#preview-submit'
|
|
||||||
body: 'Show a preview of the view output.'
|
|
||||||
_core:
|
|
||||||
default_config_hash: XIYL1KF7ND2XQRa5AxvEcp8vgCN2kUGiuBNhCgxrPME
|
|
||||||
|
|
@ -1,207 +0,0 @@
|
||||||
uuid: 8cd0792d-745f-458b-8112-b8267f9bdec3
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
id: config_sync.theme.claro
|
|
||||||
snapshotSet: config_sync
|
|
||||||
extensionType: theme
|
|
||||||
extensionName: claro
|
|
||||||
items:
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.claro_breadcrumbs
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- system
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
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: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: NjcxOBrPOiK5-38t56DwFBDVY4yer7YSlbRWXFuHe7A
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.claro_content
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- system
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
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: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: a0Yyx1GeyKarZ4T_yXQBR_ZFKnXiFLtxAb6gWLd8nr0
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.claro_help
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- help
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
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: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: jccFSSVqV0WCDb6NtML1VWAWTtDbZ-zn5YgTRMgMrIM
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.claro_local_actions
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
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: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: CdXfDmRgAvms7EQovxxWPdYi0GitxeRbVtScYK16ZH0
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.claro_messages
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- system
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
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: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: '-Ac3ISpIT0PQ-whzD7_dw0SdKi6dAbRFNWdSjOiVDqg'
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.claro_page_title
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
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: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: fNwDdW063tk_ktzSWzZVeQS9wzvLooVO280BQ9WrsIs
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.claro_primary_local_tasks
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
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: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: ACjBZI5shAMiiUpsz-inLYVXDqNNXRnSzAWV3kV_8Hw
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.claro_secondary_local_tasks
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- claro
|
|
||||||
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: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: 2L0geP-ixCbCkEpW6BVF6H7vDUZN4ea07_Y9CociQm4
|
|
||||||
|
|
@ -1,227 +0,0 @@
|
||||||
uuid: ac3b6f80-3aee-4d0e-888c-cab03dd1362a
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
id: config_sync.theme.gin
|
|
||||||
snapshotSet: config_sync
|
|
||||||
extensionType: theme
|
|
||||||
extensionName: gin
|
|
||||||
items:
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.gin_breadcrumbs
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- system
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
id: gin_breadcrumbs
|
|
||||||
theme: gin
|
|
||||||
region: breadcrumb
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: system_breadcrumb_block
|
|
||||||
settings:
|
|
||||||
id: system_breadcrumb_block
|
|
||||||
label: Breadcrumbs
|
|
||||||
provider: system
|
|
||||||
label_display: '0'
|
|
||||||
visibility: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: y9X3xgCsO59pQyzNLzY1D3SDJJxCHILLWkpPnmuTJ2E
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.gin_content
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- system
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
id: gin_content
|
|
||||||
theme: gin
|
|
||||||
region: content
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: system_main_block
|
|
||||||
settings:
|
|
||||||
id: system_main_block
|
|
||||||
label: 'Main page content'
|
|
||||||
provider: system
|
|
||||||
label_display: '0'
|
|
||||||
visibility: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: hBHXB7hC05XU7pDYzETt-GUcpFlogK1gkjyAsg0Ym58
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.gin_help
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- help
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
id: gin_help
|
|
||||||
theme: gin
|
|
||||||
region: help
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: help_block
|
|
||||||
settings:
|
|
||||||
id: help_block
|
|
||||||
label: Help
|
|
||||||
provider: help
|
|
||||||
label_display: '0'
|
|
||||||
visibility: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: 8nOAry2oKqJOr0zbrlJ3sZHDFJLIO6j-0vT0K_TYca4
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.gin_local_actions
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
id: gin_local_actions
|
|
||||||
theme: gin
|
|
||||||
region: content
|
|
||||||
weight: -10
|
|
||||||
provider: null
|
|
||||||
plugin: local_actions_block
|
|
||||||
settings:
|
|
||||||
id: local_actions_block
|
|
||||||
label: 'Primary admin actions'
|
|
||||||
provider: core
|
|
||||||
label_display: '0'
|
|
||||||
visibility: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: OQ9aJ-4qVwK1x00o9EOYK4eFDjQr_HLpbPiJaPSVZiQ
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.gin_messages
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- system
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
id: gin_messages
|
|
||||||
theme: gin
|
|
||||||
region: highlighted
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: system_messages_block
|
|
||||||
settings:
|
|
||||||
id: system_messages_block
|
|
||||||
label: 'Status messages'
|
|
||||||
provider: system
|
|
||||||
label_display: '0'
|
|
||||||
visibility: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: WvPhI8OwllG0gE69-F8qL3ai3nd5SbYD6JpmEuZcyok
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.gin_page_title
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
id: gin_page_title
|
|
||||||
theme: gin
|
|
||||||
region: header
|
|
||||||
weight: -30
|
|
||||||
provider: null
|
|
||||||
plugin: page_title_block
|
|
||||||
settings:
|
|
||||||
id: page_title_block
|
|
||||||
label: 'Page title'
|
|
||||||
provider: core
|
|
||||||
label_display: '0'
|
|
||||||
visibility: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: HLQY2xgby8K3vN_98hiOSasOhm9pdCsH234-s0duJ8Q
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.gin_primary_local_tasks
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
id: gin_primary_local_tasks
|
|
||||||
theme: gin
|
|
||||||
region: header
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: local_tasks_block
|
|
||||||
settings:
|
|
||||||
id: local_tasks_block
|
|
||||||
label: 'Primary tabs'
|
|
||||||
provider: core
|
|
||||||
label_display: '0'
|
|
||||||
primary: true
|
|
||||||
secondary: false
|
|
||||||
visibility: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: Hh01DLj9k7UnNdPpOQXHZHW7GHf2OPNDQyCJF7_R9ac
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: block.block.gin_secondary_local_tasks
|
|
||||||
data:
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
theme:
|
|
||||||
- gin
|
|
||||||
id: gin_secondary_local_tasks
|
|
||||||
theme: gin
|
|
||||||
region: pre_content
|
|
||||||
weight: 0
|
|
||||||
provider: null
|
|
||||||
plugin: local_tasks_block
|
|
||||||
settings:
|
|
||||||
id: local_tasks_block
|
|
||||||
label: 'Secondary tabs'
|
|
||||||
provider: core
|
|
||||||
label_display: '0'
|
|
||||||
primary: false
|
|
||||||
secondary: true
|
|
||||||
visibility: { }
|
|
||||||
_core:
|
|
||||||
default_config_hash: BCWhood0xXFQYqxFgL1spXdb9KeIuXH1YvTdjIEedDg
|
|
||||||
-
|
|
||||||
collection: ''
|
|
||||||
name: gin.settings
|
|
||||||
data:
|
|
||||||
preset_accent_color: blue
|
|
||||||
preset_focus_color: gin
|
|
||||||
enable_darkmode: '0'
|
|
||||||
classic_toolbar: vertical
|
|
||||||
secondary_toolbar_frontend: true
|
|
||||||
logo:
|
|
||||||
use_default: true
|
|
||||||
high_contrast_mode: false
|
|
||||||
layout_density: default
|
|
||||||
show_description_toggle: false
|
|
||||||
show_user_theme_settings: false
|
|
||||||
third_party_settings:
|
|
||||||
shortcut:
|
|
||||||
module_link: true
|
|
||||||
_core:
|
|
||||||
default_config_hash: UvSCt3S_NldJPFzvhSNOy9vWoPPFhmsmTC12vtVss9s
|
|
||||||
|
|
@ -1,24 +0,0 @@
|
||||||
uuid: e5252d45-60a2-4438-a851-4055e006ac8f
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- node.type.microblog
|
|
||||||
_core:
|
|
||||||
default_config_hash: fwQ4RBr0fIoItsZA-4VDPg0ymh0Kdq5rHyS49T5SFqQ
|
|
||||||
id: node.microblog.promote
|
|
||||||
field_name: promote
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: 'Promoted to front page'
|
|
||||||
description: ''
|
|
||||||
required: false
|
|
||||||
translatable: true
|
|
||||||
default_value:
|
|
||||||
-
|
|
||||||
value: 0
|
|
||||||
default_value_callback: ''
|
|
||||||
settings:
|
|
||||||
on_label: 'On'
|
|
||||||
off_label: 'Off'
|
|
||||||
field_type: boolean
|
|
||||||
|
|
@ -1,24 +0,0 @@
|
||||||
uuid: a6c409b3-b0e9-46f3-9f8b-a6b7210588c3
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- node.type.microblog
|
|
||||||
_core:
|
|
||||||
default_config_hash: w3LPC-lk3KbZKMEcgbc11TFxQSjmz1FbgBqJuv8fjgI
|
|
||||||
id: node.microblog.status
|
|
||||||
field_name: status
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: Published
|
|
||||||
description: ''
|
|
||||||
required: false
|
|
||||||
translatable: true
|
|
||||||
default_value:
|
|
||||||
-
|
|
||||||
value: 0
|
|
||||||
default_value_callback: ''
|
|
||||||
settings:
|
|
||||||
on_label: 'On'
|
|
||||||
off_label: 'Off'
|
|
||||||
field_type: boolean
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
||||||
uuid: d7ff87df-2848-4483-9d78-4521a972eb2f
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- node.type.microblog
|
|
||||||
_core:
|
|
||||||
default_config_hash: lArsATTr14_4WtV3LGkTzAisK-OE9-xNYCZuolmufiU
|
|
||||||
id: node.microblog.title
|
|
||||||
field_name: title
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: 'Internal listings label'
|
|
||||||
description: ''
|
|
||||||
required: true
|
|
||||||
translatable: true
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings: { }
|
|
||||||
field_type: string
|
|
||||||
|
|
@ -1,38 +0,0 @@
|
||||||
uuid: a17872c1-2168-498e-8801-06d18f93357f
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- block_content.type.content_reference
|
|
||||||
- field.field.block_content.content_reference.field_content_reference
|
|
||||||
id: block_content.content_reference.default
|
|
||||||
targetEntityType: block_content
|
|
||||||
bundle: content_reference
|
|
||||||
mode: default
|
|
||||||
content:
|
|
||||||
field_content_reference:
|
|
||||||
type: entity_reference_autocomplete
|
|
||||||
weight: 26
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
match_operator: CONTAINS
|
|
||||||
match_limit: 10
|
|
||||||
size: 60
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
info:
|
|
||||||
type: string_textfield
|
|
||||||
weight: -5
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
size: 60
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
langcode:
|
|
||||||
type: language_select
|
|
||||||
weight: 2
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
include_locked: true
|
|
||||||
third_party_settings: { }
|
|
||||||
hidden: { }
|
|
||||||
|
|
@ -1,144 +0,0 @@
|
||||||
uuid: 9be4079e-23bb-4702-85f1-5f8fd353aa01
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.field.node.microblog.field_microblog_bluesky
|
|
||||||
- field.field.node.microblog.field_microblog_default
|
|
||||||
- field.field.node.microblog.field_microblog_facebook
|
|
||||||
- field.field.node.microblog.field_microblog_mastodon
|
|
||||||
- field.field.node.microblog.field_microblog_note
|
|
||||||
- field.field.node.microblog.field_microblog_referenced_node
|
|
||||||
- field.field.node.microblog.field_microblog_signal
|
|
||||||
- field.field.node.microblog.field_microblog_sms
|
|
||||||
- field.field.node.microblog.field_microblog_twitter
|
|
||||||
- field.field.node.microblog.field_mposse_delay
|
|
||||||
- field.field.node.microblog.field_mposse_sent_status
|
|
||||||
- node.type.microblog
|
|
||||||
module:
|
|
||||||
- path
|
|
||||||
_core:
|
|
||||||
default_config_hash: 82IcCGO5SfEHG4B4Xv4R5OoyBo8xf85d4hOX-3gwhak
|
|
||||||
id: node.microblog.default
|
|
||||||
targetEntityType: node
|
|
||||||
bundle: microblog
|
|
||||||
mode: default
|
|
||||||
content:
|
|
||||||
created:
|
|
||||||
type: datetime_timestamp
|
|
||||||
weight: 7
|
|
||||||
region: content
|
|
||||||
settings: { }
|
|
||||||
third_party_settings: { }
|
|
||||||
field_microblog_bluesky:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 4
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings:
|
|
||||||
maxlength:
|
|
||||||
maxlength_js: 250
|
|
||||||
maxlength_js_label: 'Content limited to @limit characters, remaining: <strong>@remaining</strong>'
|
|
||||||
maxlength_js_enforce: false
|
|
||||||
field_microblog_default:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 0
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
field_microblog_facebook:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 3
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
field_microblog_note:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 1
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
field_microblog_signal:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 6
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
field_microblog_sms:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 5
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
field_microblog_twitter:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 2
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
field_mposse_delay:
|
|
||||||
type: options_select
|
|
||||||
weight: 101
|
|
||||||
region: content
|
|
||||||
settings: { }
|
|
||||||
third_party_settings: { }
|
|
||||||
langcode:
|
|
||||||
type: language_select
|
|
||||||
weight: 2
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
include_locked: true
|
|
||||||
third_party_settings: { }
|
|
||||||
path:
|
|
||||||
type: path
|
|
||||||
weight: 10
|
|
||||||
region: content
|
|
||||||
settings: { }
|
|
||||||
third_party_settings: { }
|
|
||||||
promote:
|
|
||||||
type: boolean_checkbox
|
|
||||||
weight: 8
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
display_label: true
|
|
||||||
third_party_settings: { }
|
|
||||||
status:
|
|
||||||
type: boolean_checkbox
|
|
||||||
weight: 12
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
display_label: true
|
|
||||||
third_party_settings: { }
|
|
||||||
sticky:
|
|
||||||
type: boolean_checkbox
|
|
||||||
weight: 9
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
display_label: true
|
|
||||||
third_party_settings: { }
|
|
||||||
url_redirects:
|
|
||||||
weight: 11
|
|
||||||
region: content
|
|
||||||
settings: { }
|
|
||||||
third_party_settings: { }
|
|
||||||
hidden:
|
|
||||||
field_microblog_mastodon: true
|
|
||||||
field_microblog_referenced_node: true
|
|
||||||
field_mposse_delay: true
|
|
||||||
field_mposse_sent_status: true
|
|
||||||
title: true
|
|
||||||
uid: true
|
|
||||||
|
|
@ -1,122 +0,0 @@
|
||||||
uuid: 7e410052-9a68-42ff-8457-2e88ae92b58e
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- core.entity_form_mode.node.mposse_inline_microblog
|
|
||||||
- field.field.node.microblog.field_microblog_bluesky
|
|
||||||
- field.field.node.microblog.field_microblog_default
|
|
||||||
- field.field.node.microblog.field_microblog_facebook
|
|
||||||
- field.field.node.microblog.field_microblog_mastodon
|
|
||||||
- field.field.node.microblog.field_microblog_note
|
|
||||||
- field.field.node.microblog.field_microblog_referenced_node
|
|
||||||
- field.field.node.microblog.field_microblog_signal
|
|
||||||
- field.field.node.microblog.field_microblog_sms
|
|
||||||
- field.field.node.microblog.field_microblog_twitter
|
|
||||||
- field.field.node.microblog.field_mposse_delay
|
|
||||||
- field.field.node.microblog.field_mposse_sent_status
|
|
||||||
- node.type.microblog
|
|
||||||
_core:
|
|
||||||
default_config_hash: KBR4I9PrGhzpAnVVXJquKakRCEsFAVDdctLAmS0QGl0
|
|
||||||
id: node.microblog.mposse_inline_microblog
|
|
||||||
targetEntityType: node
|
|
||||||
bundle: microblog
|
|
||||||
mode: mposse_inline_microblog
|
|
||||||
content:
|
|
||||||
field_microblog_bluesky:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 5
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings:
|
|
||||||
maxlength:
|
|
||||||
maxlength_js: 250
|
|
||||||
maxlength_js_label: 'Content limited to @limit characters, remaining: <strong>@remaining</strong>'
|
|
||||||
maxlength_js_enforce: false
|
|
||||||
field_microblog_default:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 0
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
field_microblog_facebook:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 4
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
field_microblog_mastodon:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 3
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings:
|
|
||||||
maxlength:
|
|
||||||
maxlength_js: null
|
|
||||||
maxlength_js_label: 'Content limited to @limit characters, remaining: <strong>@remaining</strong>'
|
|
||||||
maxlength_js_enforce: false
|
|
||||||
field_microblog_note:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 1
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
field_microblog_signal:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 7
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
field_microblog_sms:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 6
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
field_microblog_twitter:
|
|
||||||
type: string_textarea
|
|
||||||
weight: 2
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
rows: 3
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
field_mposse_delay:
|
|
||||||
type: options_select
|
|
||||||
weight: 8
|
|
||||||
region: content
|
|
||||||
settings: { }
|
|
||||||
third_party_settings: { }
|
|
||||||
langcode:
|
|
||||||
type: language_select
|
|
||||||
weight: 2
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
include_locked: true
|
|
||||||
third_party_settings: { }
|
|
||||||
hidden:
|
|
||||||
created: true
|
|
||||||
field_microblog_referenced_node: true
|
|
||||||
field_mposse_sent_status: true
|
|
||||||
moderation_state: true
|
|
||||||
path: true
|
|
||||||
promote: true
|
|
||||||
status: true
|
|
||||||
sticky: true
|
|
||||||
title: true
|
|
||||||
uid: true
|
|
||||||
url_redirects: true
|
|
||||||
|
|
@ -1,25 +0,0 @@
|
||||||
uuid: 67bf5672-4615-41f3-98b7-98a4909c3ca8
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.field.paragraph.embedded_content.field_content_reference
|
|
||||||
- paragraphs.paragraphs_type.embedded_content
|
|
||||||
id: paragraph.embedded_content.default
|
|
||||||
targetEntityType: paragraph
|
|
||||||
bundle: embedded_content
|
|
||||||
mode: default
|
|
||||||
content:
|
|
||||||
field_content_reference:
|
|
||||||
type: entity_reference_autocomplete
|
|
||||||
weight: 0
|
|
||||||
region: content
|
|
||||||
settings:
|
|
||||||
match_operator: CONTAINS
|
|
||||||
match_limit: 10
|
|
||||||
size: 60
|
|
||||||
placeholder: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
hidden:
|
|
||||||
created: true
|
|
||||||
status: true
|
|
||||||
|
|
@ -1,16 +0,0 @@
|
||||||
uuid: ce58b4ab-1355-4710-bbc4-88f51fa2386b
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- media
|
|
||||||
enforced:
|
|
||||||
module:
|
|
||||||
- media_library
|
|
||||||
_core:
|
|
||||||
default_config_hash: pkq0uj-IoqEQRBOP_ddUDV0ZJ-dKQ_fLcppsEDF2UO8
|
|
||||||
id: media.media_library
|
|
||||||
label: 'Media library'
|
|
||||||
description: ''
|
|
||||||
targetEntityType: media
|
|
||||||
cache: true
|
|
||||||
|
|
@ -1,13 +0,0 @@
|
||||||
uuid: e9bcee2c-3163-4bfa-978f-6599f875474f
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- node
|
|
||||||
_core:
|
|
||||||
default_config_hash: fmIOWzYjraYEKtm9oU5z5DeyVnUjDueTQzaqKiFKN1Q
|
|
||||||
id: node.mposse_inline_microblog
|
|
||||||
label: 'MPOSSE Inline Microblog'
|
|
||||||
description: ''
|
|
||||||
targetEntityType: node
|
|
||||||
cache: true
|
|
||||||
|
|
@ -1,28 +0,0 @@
|
||||||
uuid: 4f384ef4-723a-47a3-b3d3-c677993c050e
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- block_content.type.content_reference
|
|
||||||
- field.field.block_content.content_reference.field_content_reference
|
|
||||||
module:
|
|
||||||
- ds
|
|
||||||
id: block_content.content_reference.default
|
|
||||||
targetEntityType: block_content
|
|
||||||
bundle: content_reference
|
|
||||||
mode: default
|
|
||||||
content:
|
|
||||||
field_content_reference:
|
|
||||||
type: entity_reference_entity_view
|
|
||||||
label: hidden
|
|
||||||
settings:
|
|
||||||
view_mode: simple_card
|
|
||||||
link: false
|
|
||||||
third_party_settings:
|
|
||||||
ds:
|
|
||||||
ds_limit: ''
|
|
||||||
weight: 0
|
|
||||||
region: content
|
|
||||||
hidden:
|
|
||||||
langcode: true
|
|
||||||
search_api_excerpt: true
|
|
||||||
|
|
@ -1,97 +0,0 @@
|
||||||
uuid: 3b38836d-f107-45ce-972f-a9f2e9db6d1f
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.field.node.microblog.field_microblog_bluesky
|
|
||||||
- field.field.node.microblog.field_microblog_default
|
|
||||||
- field.field.node.microblog.field_microblog_facebook
|
|
||||||
- field.field.node.microblog.field_microblog_mastodon
|
|
||||||
- field.field.node.microblog.field_microblog_note
|
|
||||||
- field.field.node.microblog.field_microblog_referenced_node
|
|
||||||
- field.field.node.microblog.field_microblog_signal
|
|
||||||
- field.field.node.microblog.field_microblog_sms
|
|
||||||
- field.field.node.microblog.field_microblog_twitter
|
|
||||||
- field.field.node.microblog.field_mposse_delay
|
|
||||||
- field.field.node.microblog.field_mposse_sent_status
|
|
||||||
- node.type.microblog
|
|
||||||
module:
|
|
||||||
- user
|
|
||||||
_core:
|
|
||||||
default_config_hash: ElRVYwlWOxVXYuwO12WN3XgEi5PTP5npiK0OZgqEiJQ
|
|
||||||
id: node.microblog.default
|
|
||||||
targetEntityType: node
|
|
||||||
bundle: microblog
|
|
||||||
mode: default
|
|
||||||
content:
|
|
||||||
field_microblog_bluesky:
|
|
||||||
type: string
|
|
||||||
label: above
|
|
||||||
settings:
|
|
||||||
link_to_entity: false
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 4
|
|
||||||
region: content
|
|
||||||
field_microblog_default:
|
|
||||||
type: string
|
|
||||||
label: hidden
|
|
||||||
settings:
|
|
||||||
link_to_entity: false
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 0
|
|
||||||
region: content
|
|
||||||
field_microblog_facebook:
|
|
||||||
type: string
|
|
||||||
label: above
|
|
||||||
settings:
|
|
||||||
link_to_entity: false
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 3
|
|
||||||
region: content
|
|
||||||
field_microblog_note:
|
|
||||||
type: string
|
|
||||||
label: above
|
|
||||||
settings:
|
|
||||||
link_to_entity: false
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 1
|
|
||||||
region: content
|
|
||||||
field_microblog_signal:
|
|
||||||
type: string
|
|
||||||
label: above
|
|
||||||
settings:
|
|
||||||
link_to_entity: false
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 6
|
|
||||||
region: content
|
|
||||||
field_microblog_sms:
|
|
||||||
type: string
|
|
||||||
label: above
|
|
||||||
settings:
|
|
||||||
link_to_entity: false
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 5
|
|
||||||
region: content
|
|
||||||
field_microblog_twitter:
|
|
||||||
type: string
|
|
||||||
label: above
|
|
||||||
settings:
|
|
||||||
link_to_entity: false
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 2
|
|
||||||
region: content
|
|
||||||
indieweb_syndication:
|
|
||||||
settings: { }
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 7
|
|
||||||
region: content
|
|
||||||
hidden:
|
|
||||||
field_microblog_mastodon: true
|
|
||||||
field_microblog_referenced_node: true
|
|
||||||
field_mposse_delay: true
|
|
||||||
field_mposse_sent_status: true
|
|
||||||
indieweb_bridgypublishmastodon: true
|
|
||||||
indieweb_bridgypublishtwitter: true
|
|
||||||
langcode: true
|
|
||||||
links: true
|
|
||||||
search_api_excerpt: true
|
|
||||||
|
|
@ -1,56 +0,0 @@
|
||||||
uuid: 910f38c3-214f-4568-a990-324d0b77ae42
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- core.entity_view_mode.node.teaser
|
|
||||||
- field.field.node.microblog.field_microblog_bluesky
|
|
||||||
- field.field.node.microblog.field_microblog_default
|
|
||||||
- field.field.node.microblog.field_microblog_facebook
|
|
||||||
- field.field.node.microblog.field_microblog_mastodon
|
|
||||||
- field.field.node.microblog.field_microblog_note
|
|
||||||
- field.field.node.microblog.field_microblog_referenced_node
|
|
||||||
- field.field.node.microblog.field_microblog_signal
|
|
||||||
- field.field.node.microblog.field_microblog_sms
|
|
||||||
- field.field.node.microblog.field_microblog_twitter
|
|
||||||
- field.field.node.microblog.field_mposse_delay
|
|
||||||
- field.field.node.microblog.field_mposse_sent_status
|
|
||||||
- node.type.microblog
|
|
||||||
module:
|
|
||||||
- user
|
|
||||||
_core:
|
|
||||||
default_config_hash: xCiDDUIhEC91h3I-LnB1jCxoheoPA1opK_2tu834pVw
|
|
||||||
id: node.microblog.teaser
|
|
||||||
targetEntityType: node
|
|
||||||
bundle: microblog
|
|
||||||
mode: teaser
|
|
||||||
content:
|
|
||||||
field_microblog_default:
|
|
||||||
type: string
|
|
||||||
label: hidden
|
|
||||||
settings:
|
|
||||||
link_to_entity: false
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 0
|
|
||||||
region: content
|
|
||||||
links:
|
|
||||||
settings: { }
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 1
|
|
||||||
region: content
|
|
||||||
hidden:
|
|
||||||
field_microblog_bluesky: true
|
|
||||||
field_microblog_facebook: true
|
|
||||||
field_microblog_mastodon: true
|
|
||||||
field_microblog_note: true
|
|
||||||
field_microblog_referenced_node: true
|
|
||||||
field_microblog_signal: true
|
|
||||||
field_microblog_sms: true
|
|
||||||
field_microblog_twitter: true
|
|
||||||
field_mposse_delay: true
|
|
||||||
field_mposse_sent_status: true
|
|
||||||
indieweb_bridgypublishmastodon: true
|
|
||||||
indieweb_bridgypublishtwitter: true
|
|
||||||
indieweb_syndication: true
|
|
||||||
langcode: true
|
|
||||||
search_api_excerpt: true
|
|
||||||
|
|
@ -1,84 +0,0 @@
|
||||||
uuid: d2637080-7971-4471-abf0-bc6939e755d9
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- core.entity_view_mode.node.embedded
|
|
||||||
- field.field.node.page.body
|
|
||||||
- field.field.node.page.field_body_paragraph
|
|
||||||
- field.field.node.page.field_meta_tags
|
|
||||||
- field.field.node.page.field_storyline
|
|
||||||
- field.field.node.page.field_summary
|
|
||||||
- node.type.page
|
|
||||||
module:
|
|
||||||
- ds
|
|
||||||
- entity_reference_revisions
|
|
||||||
- user
|
|
||||||
third_party_settings:
|
|
||||||
ds:
|
|
||||||
layout:
|
|
||||||
id: ds_1col
|
|
||||||
library: null
|
|
||||||
disable_css: false
|
|
||||||
entity_classes: all_classes
|
|
||||||
settings:
|
|
||||||
classes:
|
|
||||||
layout_class: { }
|
|
||||||
wrappers:
|
|
||||||
ds_content: div
|
|
||||||
outer_wrapper: div
|
|
||||||
attributes: ''
|
|
||||||
link_attribute: ''
|
|
||||||
link_custom: ''
|
|
||||||
label: ''
|
|
||||||
regions:
|
|
||||||
ds_content:
|
|
||||||
- node_title
|
|
||||||
- field_body_paragraph
|
|
||||||
- field_storyline
|
|
||||||
fields:
|
|
||||||
node_title:
|
|
||||||
plugin_id: node_title
|
|
||||||
weight: 0
|
|
||||||
label: hidden
|
|
||||||
formatter: default
|
|
||||||
settings:
|
|
||||||
link: false
|
|
||||||
wrapper: h3
|
|
||||||
class: ''
|
|
||||||
exclude_node_title: '1'
|
|
||||||
_core:
|
|
||||||
default_config_hash: 9nmRao0UFQtmO6lONrWp9ITjFaO41GzV-xJczx0qjKg
|
|
||||||
id: node.page.embedded
|
|
||||||
targetEntityType: node
|
|
||||||
bundle: page
|
|
||||||
mode: embedded
|
|
||||||
content:
|
|
||||||
field_body_paragraph:
|
|
||||||
type: entity_reference_revisions_entity_view
|
|
||||||
label: hidden
|
|
||||||
settings:
|
|
||||||
view_mode: default
|
|
||||||
link: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 1
|
|
||||||
region: ds_content
|
|
||||||
field_storyline:
|
|
||||||
type: entity_reference_revisions_entity_view
|
|
||||||
label: hidden
|
|
||||||
settings:
|
|
||||||
view_mode: default
|
|
||||||
link: ''
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 2
|
|
||||||
region: ds_content
|
|
||||||
hidden:
|
|
||||||
body: true
|
|
||||||
field_meta_tags: true
|
|
||||||
field_summary: true
|
|
||||||
indieweb_bridgypublishmastodon: true
|
|
||||||
indieweb_bridgypublishtwitter: true
|
|
||||||
indieweb_syndication: true
|
|
||||||
langcode: true
|
|
||||||
links: true
|
|
||||||
search_api_excerpt: true
|
|
||||||
|
|
@ -1,27 +0,0 @@
|
||||||
uuid: ed546b19-a85f-4fe6-9363-33b0a2e29bce
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.field.paragraph.embedded_content.field_content_reference
|
|
||||||
- paragraphs.paragraphs_type.embedded_content
|
|
||||||
module:
|
|
||||||
- ds
|
|
||||||
id: paragraph.embedded_content.default
|
|
||||||
targetEntityType: paragraph
|
|
||||||
bundle: embedded_content
|
|
||||||
mode: default
|
|
||||||
content:
|
|
||||||
field_content_reference:
|
|
||||||
type: entity_reference_entity_view
|
|
||||||
label: hidden
|
|
||||||
settings:
|
|
||||||
view_mode: embedded
|
|
||||||
link: false
|
|
||||||
third_party_settings:
|
|
||||||
ds:
|
|
||||||
ds_limit: ''
|
|
||||||
weight: 0
|
|
||||||
region: content
|
|
||||||
hidden:
|
|
||||||
search_api_excerpt: true
|
|
||||||
|
|
@ -1,13 +0,0 @@
|
||||||
uuid: 7c91db2c-a8ef-4ec3-9331-dc9796f1c0e6
|
|
||||||
langcode: en
|
|
||||||
status: false
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- media
|
|
||||||
_core:
|
|
||||||
default_config_hash: 6NBUEuGmlkClK8Fb76tSMMpO2eZ4LWCBdbUk4z7CuP0
|
|
||||||
id: media.full
|
|
||||||
label: 'Full content'
|
|
||||||
description: ''
|
|
||||||
targetEntityType: media
|
|
||||||
cache: true
|
|
||||||
|
|
@ -1,16 +0,0 @@
|
||||||
uuid: d1c3c179-3064-4b7e-a89c-7fa7045b4dca
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- media
|
|
||||||
enforced:
|
|
||||||
module:
|
|
||||||
- media_library
|
|
||||||
_core:
|
|
||||||
default_config_hash: pkq0uj-IoqEQRBOP_ddUDV0ZJ-dKQ_fLcppsEDF2UO8
|
|
||||||
id: media.media_library
|
|
||||||
label: 'Media library'
|
|
||||||
description: ''
|
|
||||||
targetEntityType: media
|
|
||||||
cache: true
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
uuid: 8aa5ebf2-a43b-4f6e-aeb7-81c37758c227
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- node
|
|
||||||
id: node.embedded
|
|
||||||
label: Embedded
|
|
||||||
description: ''
|
|
||||||
targetEntityType: node
|
|
||||||
cache: true
|
|
||||||
|
|
@ -1,18 +0,0 @@
|
||||||
_core:
|
|
||||||
default_config_hash: xfB0qOeoAomOThclNNokdKTrVwXLcXz13SU3-4a5-FY
|
|
||||||
disabled: false
|
|
||||||
field_template: false
|
|
||||||
classes:
|
|
||||||
region: { }
|
|
||||||
field: { }
|
|
||||||
use_field_names: true
|
|
||||||
ft_bc: true
|
|
||||||
exclude_layout_builder_blocks_on_block_field: false
|
|
||||||
ft_expert_prefix_suffix_textarea: false
|
|
||||||
ft_default: default
|
|
||||||
ft_show_colon: false
|
|
||||||
ft_layout_builder: null
|
|
||||||
exclude_ds_layout_layout_builder: false
|
|
||||||
layout_icon_image_bc: true
|
|
||||||
ft_default_bc: true
|
|
||||||
layout_suggestion_bc: true
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
uuid: f9c714eb-b653-4de4-8f1d-766454d3a10b
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- filter.format.webform_default
|
|
||||||
module:
|
|
||||||
- ckeditor5
|
|
||||||
format: webform_default
|
|
||||||
editor: ckeditor5
|
|
||||||
settings:
|
|
||||||
toolbar:
|
|
||||||
items:
|
|
||||||
- heading
|
|
||||||
- '|'
|
|
||||||
- bold
|
|
||||||
- italic
|
|
||||||
- subscript
|
|
||||||
- superscript
|
|
||||||
- '|'
|
|
||||||
- specialCharacters
|
|
||||||
- '|'
|
|
||||||
- numberedList
|
|
||||||
- bulletedList
|
|
||||||
- '|'
|
|
||||||
- link
|
|
||||||
- '|'
|
|
||||||
- indent
|
|
||||||
- outdent
|
|
||||||
- '|'
|
|
||||||
- blockQuote
|
|
||||||
- '|'
|
|
||||||
- sourceEditing
|
|
||||||
plugins:
|
|
||||||
ckeditor5_heading:
|
|
||||||
enabled_headings:
|
|
||||||
- heading2
|
|
||||||
- heading3
|
|
||||||
- heading4
|
|
||||||
- heading5
|
|
||||||
- heading6
|
|
||||||
ckeditor5_list:
|
|
||||||
properties:
|
|
||||||
reversed: true
|
|
||||||
startIndex: true
|
|
||||||
multiBlock: true
|
|
||||||
ckeditor5_sourceEditing:
|
|
||||||
allowed_tags: { }
|
|
||||||
image_upload:
|
|
||||||
status: false
|
|
||||||
|
|
@ -1,36 +0,0 @@
|
||||||
uuid: 2a3d8c6d-e403-472f-87cc-67af63bedcdf
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- block_content.type.content_reference
|
|
||||||
- field.storage.block_content.field_content_reference
|
|
||||||
- node.type.blog
|
|
||||||
- node.type.case_study
|
|
||||||
- node.type.landing_page
|
|
||||||
- node.type.page
|
|
||||||
- node.type.people
|
|
||||||
id: block_content.content_reference.field_content_reference
|
|
||||||
field_name: field_content_reference
|
|
||||||
entity_type: block_content
|
|
||||||
bundle: content_reference
|
|
||||||
label: 'Content reference'
|
|
||||||
description: ''
|
|
||||||
required: true
|
|
||||||
translatable: false
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings:
|
|
||||||
handler: 'default:node'
|
|
||||||
handler_settings:
|
|
||||||
target_bundles:
|
|
||||||
page: page
|
|
||||||
blog: blog
|
|
||||||
case_study: case_study
|
|
||||||
landing_page: landing_page
|
|
||||||
people: people
|
|
||||||
sort:
|
|
||||||
field: _none
|
|
||||||
auto_create: false
|
|
||||||
auto_create_bundle: page
|
|
||||||
field_type: entity_reference
|
|
||||||
|
|
@ -1,25 +0,0 @@
|
||||||
uuid: dcb9f407-ff4d-4e73-a42b-833ed53671f9
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.node.field_mposse
|
|
||||||
- node.type.blog
|
|
||||||
- node.type.microblog
|
|
||||||
id: node.blog.field_mposse
|
|
||||||
field_name: field_mposse
|
|
||||||
entity_type: node
|
|
||||||
bundle: blog
|
|
||||||
label: Microblog
|
|
||||||
description: ''
|
|
||||||
required: false
|
|
||||||
translatable: true
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings:
|
|
||||||
handler: 'default:node'
|
|
||||||
handler_settings:
|
|
||||||
target_bundles:
|
|
||||||
microblog: microblog
|
|
||||||
auto_create: true
|
|
||||||
field_type: entity_reference
|
|
||||||
|
|
@ -1,21 +0,0 @@
|
||||||
uuid: 864d404c-a062-4764-bd73-6424542c1be1
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.node.field_microblog_bluesky
|
|
||||||
- node.type.microblog
|
|
||||||
_core:
|
|
||||||
default_config_hash: SXUJEgxYTnESokjsXhgI7MAfbF0utmiaS_3qtAl0g9o
|
|
||||||
id: node.microblog.field_microblog_bluesky
|
|
||||||
field_name: field_microblog_bluesky
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: Bluesky
|
|
||||||
description: ''
|
|
||||||
required: false
|
|
||||||
translatable: false
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings: { }
|
|
||||||
field_type: string
|
|
||||||
|
|
@ -1,21 +0,0 @@
|
||||||
uuid: 92f7a456-43bb-40cf-9d48-ea1b6068e78e
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.node.field_microblog_default
|
|
||||||
- node.type.microblog
|
|
||||||
_core:
|
|
||||||
default_config_hash: MzymBbLTbE2MPOJGWWG0slV2XdE8LAZ82rcwwKdm5tw
|
|
||||||
id: node.microblog.field_microblog_default
|
|
||||||
field_name: field_microblog_default
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: Default
|
|
||||||
description: 'This version of your microblog post will be used on this website and any other places it pushes to which are not given alternate versions below.'
|
|
||||||
required: true
|
|
||||||
translatable: false
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings: { }
|
|
||||||
field_type: string
|
|
||||||
|
|
@ -1,21 +0,0 @@
|
||||||
uuid: 7b1ed7ff-c051-449b-8f13-6d175ccf40e5
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.node.field_microblog_facebook
|
|
||||||
- node.type.microblog
|
|
||||||
_core:
|
|
||||||
default_config_hash: ftE0Qszi0KIw2ZKpYPXNVHtnKI4_hYATIQw9KDGFonA
|
|
||||||
id: node.microblog.field_microblog_facebook
|
|
||||||
field_name: field_microblog_facebook
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: Facebook
|
|
||||||
description: ''
|
|
||||||
required: false
|
|
||||||
translatable: false
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings: { }
|
|
||||||
field_type: string
|
|
||||||
|
|
@ -1,21 +0,0 @@
|
||||||
uuid: f27097a2-0f26-40bf-857d-5783c6130a24
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.node.field_microblog_mastodon
|
|
||||||
- node.type.microblog
|
|
||||||
_core:
|
|
||||||
default_config_hash: 7QtXFNWlhxA5HOVV8vQrJy_wNc2yYVAXPV32x2JGlYw
|
|
||||||
id: node.microblog.field_microblog_mastodon
|
|
||||||
field_name: field_microblog_mastodon
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: Mastodon
|
|
||||||
description: ''
|
|
||||||
required: false
|
|
||||||
translatable: false
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings: { }
|
|
||||||
field_type: string
|
|
||||||
|
|
@ -1,21 +0,0 @@
|
||||||
uuid: 70f57d91-b278-4f40-8fa8-d1dfd92adacb
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.node.field_microblog_note
|
|
||||||
- node.type.microblog
|
|
||||||
_core:
|
|
||||||
default_config_hash: LU6_UqhwmPYbDmxYcj1p2wbrbBVD79DRZXE6H4m0GsE
|
|
||||||
id: node.microblog.field_microblog_note
|
|
||||||
field_name: field_microblog_note
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: 'ActivityStream note (Mastodon toot etc)'
|
|
||||||
description: "If you want your microblog post to have a minor variation when it goes to an ActivityPub supporting server, such as a Mastodon instance, edit it here. For example, to replace a person's name with their @mention@instance.example user."
|
|
||||||
required: false
|
|
||||||
translatable: false
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings: { }
|
|
||||||
field_type: string
|
|
||||||
|
|
@ -1,32 +0,0 @@
|
||||||
uuid: a51bde00-2730-4f6d-816a-659bbff92039
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.node.field_microblog_referenced_node
|
|
||||||
- node.type.article
|
|
||||||
- node.type.microblog
|
|
||||||
_core:
|
|
||||||
default_config_hash: geiaeJOF4zI_iTq4VQuWP-AexyVFx2dvI4sLZ4vdF8E
|
|
||||||
id: node.microblog.field_microblog_referenced_node
|
|
||||||
field_name: field_microblog_referenced_node
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: 'Referenced node'
|
|
||||||
description: 'Content to link your microblog post to.'
|
|
||||||
required: false
|
|
||||||
translatable: false
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings:
|
|
||||||
handler: 'default:node'
|
|
||||||
handler_settings:
|
|
||||||
target_bundles:
|
|
||||||
microblog: microblog
|
|
||||||
article: article
|
|
||||||
sort:
|
|
||||||
field: _none
|
|
||||||
direction: ASC
|
|
||||||
auto_create: false
|
|
||||||
auto_create_bundle: microblog
|
|
||||||
field_type: entity_reference
|
|
||||||
|
|
@ -1,21 +0,0 @@
|
||||||
uuid: f7d0419e-78c3-418d-a2e5-93bbc89340e9
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.node.field_microblog_signal
|
|
||||||
- node.type.microblog
|
|
||||||
_core:
|
|
||||||
default_config_hash: oohDqtqU6UlmUyh8uwm985L26xl0UpPSTHJeaNqVkSE
|
|
||||||
id: node.microblog.field_microblog_signal
|
|
||||||
field_name: field_microblog_signal
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: Signal
|
|
||||||
description: ''
|
|
||||||
required: false
|
|
||||||
translatable: false
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings: { }
|
|
||||||
field_type: string
|
|
||||||
|
|
@ -1,21 +0,0 @@
|
||||||
uuid: aa7776e0-60cc-4f54-9cce-972ba1096ce7
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.node.field_microblog_sms
|
|
||||||
- node.type.microblog
|
|
||||||
_core:
|
|
||||||
default_config_hash: LDclPy8VJhBOFyE40i3AgXs3d0TPamDcwMFIM22bmfc
|
|
||||||
id: node.microblog.field_microblog_sms
|
|
||||||
field_name: field_microblog_sms
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: SMS
|
|
||||||
description: ''
|
|
||||||
required: false
|
|
||||||
translatable: false
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings: { }
|
|
||||||
field_type: string
|
|
||||||
|
|
@ -1,21 +0,0 @@
|
||||||
uuid: 6e0857e7-bde4-4f92-bbc3-9af74f4ba347
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.node.field_microblog_twitter
|
|
||||||
- node.type.microblog
|
|
||||||
_core:
|
|
||||||
default_config_hash: amohM5Oa3atfGBBNn6JoChV7jQ8lXng3TOxU-CaqDKY
|
|
||||||
id: node.microblog.field_microblog_twitter
|
|
||||||
field_name: field_microblog_twitter
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: Twitter
|
|
||||||
description: ''
|
|
||||||
required: false
|
|
||||||
translatable: false
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings: { }
|
|
||||||
field_type: string
|
|
||||||
|
|
@ -1,23 +0,0 @@
|
||||||
uuid: 0f3b5ae9-3193-43ea-8850-53ff4e41b351
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.node.field_mposse_delay
|
|
||||||
- node.type.microblog
|
|
||||||
module:
|
|
||||||
- options
|
|
||||||
_core:
|
|
||||||
default_config_hash: WmX496nQ3MnLChoRl9almUEBd-XotStu1MAzBCDmZnM
|
|
||||||
id: node.microblog.field_mposse_delay
|
|
||||||
field_name: field_mposse_delay
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: Delay
|
|
||||||
description: 'Apply a delay to prevent posting until your selected delay timer has expired.'
|
|
||||||
required: true
|
|
||||||
translatable: false
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings: { }
|
|
||||||
field_type: list_integer
|
|
||||||
|
|
@ -1,25 +0,0 @@
|
||||||
uuid: 4d87806a-7f43-4916-9fad-f978ce289c8d
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.node.field_mposse_sent_status
|
|
||||||
- node.type.microblog
|
|
||||||
_core:
|
|
||||||
default_config_hash: 4SPlEenFjXEy40lpaHSUklp-brLFRdkgt8CfXCyZ8_k
|
|
||||||
id: node.microblog.field_mposse_sent_status
|
|
||||||
field_name: field_mposse_sent_status
|
|
||||||
entity_type: node
|
|
||||||
bundle: microblog
|
|
||||||
label: Sent
|
|
||||||
description: ''
|
|
||||||
required: false
|
|
||||||
translatable: false
|
|
||||||
default_value:
|
|
||||||
-
|
|
||||||
value: 0
|
|
||||||
default_value_callback: ''
|
|
||||||
settings:
|
|
||||||
on_label: Sent
|
|
||||||
off_label: Pending
|
|
||||||
field_type: boolean
|
|
||||||
|
|
@ -1,29 +0,0 @@
|
||||||
uuid: 4b8ec78c-e9b3-4350-921e-9cabf3b1e7cd
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.paragraph.field_content_reference
|
|
||||||
- node.type.page
|
|
||||||
- paragraphs.paragraphs_type.embedded_content
|
|
||||||
id: paragraph.embedded_content.field_content_reference
|
|
||||||
field_name: field_content_reference
|
|
||||||
entity_type: paragraph
|
|
||||||
bundle: embedded_content
|
|
||||||
label: Content
|
|
||||||
description: ''
|
|
||||||
required: true
|
|
||||||
translatable: true
|
|
||||||
default_value: { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings:
|
|
||||||
handler: 'default:node'
|
|
||||||
handler_settings:
|
|
||||||
target_bundles:
|
|
||||||
page: page
|
|
||||||
sort:
|
|
||||||
field: changed
|
|
||||||
direction: DESC
|
|
||||||
auto_create: false
|
|
||||||
auto_create_bundle: ''
|
|
||||||
field_type: entity_reference
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
||||||
uuid: cc838cc9-a9cf-4db8-b573-929e597c2a99
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- block_content
|
|
||||||
- node
|
|
||||||
id: block_content.field_content_reference
|
|
||||||
field_name: field_content_reference
|
|
||||||
entity_type: block_content
|
|
||||||
type: entity_reference
|
|
||||||
settings:
|
|
||||||
target_type: node
|
|
||||||
module: core
|
|
||||||
locked: false
|
|
||||||
cardinality: 9
|
|
||||||
translatable: true
|
|
||||||
indexes: { }
|
|
||||||
persist_with_no_fields: false
|
|
||||||
custom_storage: false
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue