Move all files to old/drupal/
This commit is contained in:
parent
8203e983d5
commit
7d76bf2968
468 changed files with 0 additions and 0 deletions
10
old/drupal/.docker.env.example
Normal file
10
old/drupal/.docker.env.example
Normal file
|
@ -0,0 +1,10 @@
|
|||
MYSQL_DATABASE=drupal
|
||||
MYSQL_PASSWORD=drupal
|
||||
MYSQL_ROOT_PASSWORD=root
|
||||
MYSQL_USER=drupal
|
||||
|
||||
# DOCKER_MYSQL_VOLUME=./db-data:/var/lib/mysql
|
||||
DOCKER_MYSQL_VOLUME=mysql_data:/var/lib/mysql
|
||||
|
||||
# DOCKER_WEB_PORT=80
|
||||
DOCKER_WEB_PORT=127.0.0.1:80
|
7
old/drupal/.dockerignore
Normal file
7
old/drupal/.dockerignore
Normal file
|
@ -0,0 +1,7 @@
|
|||
/**/*.{md,txt}
|
||||
/.git-blame-ignore-revs
|
||||
/.git/
|
||||
/.github/
|
||||
/.gitignore
|
||||
/.idea/
|
||||
/.notes/
|
10
old/drupal/.env.example
Normal file
10
old/drupal/.env.example
Normal file
|
@ -0,0 +1,10 @@
|
|||
IFTTT_WEBHOOK_URL=
|
||||
|
||||
INTEGROMAT_WEBHOOK_URL=
|
||||
|
||||
# Which environment is running? This should be "development" or "production".
|
||||
# NODE_ENV=development
|
||||
NODE_ENV=production
|
||||
|
||||
# DOCKER_RESTART_POLICY=no
|
||||
DOCKER_RESTART_POLICY=unless-stopped
|
4
old/drupal/.environment
Normal file
4
old/drupal/.environment
Normal file
|
@ -0,0 +1,4 @@
|
|||
unset NPM_CONFIG_PREFIX
|
||||
export NO_UPDATE_NOTIFIER=1
|
||||
export NVM_DIR="$PLATFORM_APP_DIR/.nvm"
|
||||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
|
14
old/drupal/.github/dependabot.yml
vendored
Normal file
14
old/drupal/.github/dependabot.yml
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
version: 2
|
||||
|
||||
updates:
|
||||
- package-ecosystem: composer
|
||||
directory: /
|
||||
schedule:
|
||||
interval: daily
|
||||
versioning-strategy: increase-if-necessary
|
||||
|
||||
- package-ecosystem: npm
|
||||
directory: web/themes/custom/opdavies
|
||||
schedule:
|
||||
interval: weekly
|
||||
versioning-strategy: increase-if-necessary
|
210
old/drupal/.github/workflows/ci.yml
vendored
Normal file
210
old/drupal/.github/workflows/ci.yml
vendored
Normal file
|
@ -0,0 +1,210 @@
|
|||
name: CI
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- production
|
||||
push:
|
||||
branches:
|
||||
- production
|
||||
workflow_dispatch:
|
||||
|
||||
env:
|
||||
php_version: '7.4'
|
||||
|
||||
jobs:
|
||||
install:
|
||||
runs-on: ubuntu-latest
|
||||
name: Test Drupal site installation
|
||||
steps:
|
||||
- uses: actions/checkout@a81bbbf8298c0fa03ea29cdc473d45769f953675
|
||||
|
||||
- name: Cache dependencies
|
||||
uses: actions/cache@d9747005de0f7240e5d35a68dca96b3f41b8b340
|
||||
with:
|
||||
path: |
|
||||
~/.composer/cache/files
|
||||
web/core
|
||||
web/modules/contrib
|
||||
web/themes/contrib
|
||||
vendor
|
||||
key: dependencies-composer-${{ hashFiles('composer.lock') }}
|
||||
|
||||
- name: Setup PHP
|
||||
uses: shivammathur/setup-php@5d27b8f90ea9479ac7af4fcaad6b411eb19d7170
|
||||
with:
|
||||
php-version: ${{ env.php_version }}
|
||||
extensions: mbstring
|
||||
coverage: none
|
||||
|
||||
- run: |
|
||||
composer validate
|
||||
composer install --prefer-dist --no-interaction --no-suggest
|
||||
|
||||
- name: Install Drupal
|
||||
run: >
|
||||
bin/drush --root=$(pwd)/web
|
||||
site:install -y
|
||||
--existing-config
|
||||
--db-url=sqlite://sites/default/files/.ht.sqlite
|
||||
|
||||
- run: php -S localhost:8000 -t web 2>&1 &
|
||||
|
||||
- name: Test loading the home page
|
||||
run: curl http://localhost:8000
|
||||
|
||||
- name: Verify the home page has the site name in it
|
||||
run: curl -s http://localhost:8000 | grep "Oliver Davies"
|
||||
|
||||
theme:
|
||||
name: Build the theme assets
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
theme-path:
|
||||
- web/themes/custom/opdavies
|
||||
steps:
|
||||
- uses: actions/checkout@a81bbbf8298c0fa03ea29cdc473d45769f953675
|
||||
|
||||
- name: Setup node and npm
|
||||
uses: actions/setup-node@56899e050abffc08c2b3b61f3ec6a79a9dc3223d
|
||||
with:
|
||||
node-version: 12
|
||||
|
||||
- name: Cache npm dependencies
|
||||
uses: actions/cache@d9747005de0f7240e5d35a68dca96b3f41b8b340
|
||||
with:
|
||||
path: node_modules
|
||||
key: dependencies-npm-${{ hashFiles('package-lock.json') }}
|
||||
|
||||
phpunit:
|
||||
runs-on: ubuntu-latest
|
||||
name: "Run ${{ matrix.test-types }} tests"
|
||||
strategy:
|
||||
matrix:
|
||||
test-types:
|
||||
- functional
|
||||
- kernel
|
||||
- unit
|
||||
steps:
|
||||
- uses: actions/checkout@a81bbbf8298c0fa03ea29cdc473d45769f953675
|
||||
|
||||
- name: Cache dependencies
|
||||
uses: actions/cache@d9747005de0f7240e5d35a68dca96b3f41b8b340
|
||||
with:
|
||||
path: |
|
||||
~/.composer/cache/files
|
||||
web/core
|
||||
web/modules/constrib
|
||||
web/themes/contrib
|
||||
vendor
|
||||
key: dependencies-composer-${{ hashFiles('composer.lock') }}
|
||||
|
||||
- name: Setup PHP
|
||||
uses: shivammathur/setup-php@5d27b8f90ea9479ac7af4fcaad6b411eb19d7170
|
||||
with:
|
||||
php-version: ${{ env.php_version }}
|
||||
extensions: mbstring
|
||||
coverage: none
|
||||
|
||||
- run: composer install --prefer-dist --no-interaction --no-suggest
|
||||
|
||||
- run: php -S localhost:8000 -t web 2>&1 &
|
||||
if: matrix.test-types == 'functional'
|
||||
|
||||
- run: bin/phpunit --testdox --colors=always --testsuite=${{ matrix.test-types }}
|
||||
env:
|
||||
SIMPLETEST_BASE_URL: http://localhost:8000
|
||||
|
||||
phpcs:
|
||||
runs-on: ubuntu-latest
|
||||
name: "Run coding standards checks"
|
||||
steps:
|
||||
- uses: actions/checkout@a81bbbf8298c0fa03ea29cdc473d45769f953675
|
||||
|
||||
- name: Cache dependencies
|
||||
uses: actions/cache@d9747005de0f7240e5d35a68dca96b3f41b8b340
|
||||
with:
|
||||
path: |
|
||||
~/.composer/cache/files
|
||||
web/core
|
||||
web/modules/constrib
|
||||
web/themes/contrib
|
||||
vendor
|
||||
key: dependencies-composer-${{ hashFiles('composer.lock') }}
|
||||
|
||||
- name: Setup PHP
|
||||
uses: shivammathur/setup-php@5d27b8f90ea9479ac7af4fcaad6b411eb19d7170
|
||||
with:
|
||||
php-version: ${{ env.php_version }}
|
||||
|
||||
- run: composer install --prefer-dist --no-interaction --no-suggest
|
||||
|
||||
- run: bin/phpcs -s --warning-severity=6
|
||||
|
||||
phpstan:
|
||||
runs-on: ubuntu-latest
|
||||
name: Static analysis with PHPStan
|
||||
steps:
|
||||
- uses: actions/checkout@a81bbbf8298c0fa03ea29cdc473d45769f953675
|
||||
|
||||
- name: Cache dependencies
|
||||
uses: actions/cache@d9747005de0f7240e5d35a68dca96b3f41b8b340
|
||||
with:
|
||||
path: |
|
||||
~/.composer/cache/files
|
||||
web/core
|
||||
web/modules/constrib
|
||||
web/themes/contrib
|
||||
vendor
|
||||
key: dependencies-composer-${{ hashFiles('composer.lock') }}
|
||||
|
||||
- name: Setup PHP
|
||||
uses: shivammathur/setup-php@5d27b8f90ea9479ac7af4fcaad6b411eb19d7170
|
||||
with:
|
||||
php-version: ${{ env.php_version }}
|
||||
|
||||
- run: composer install --prefer-dist --no-interaction --no-suggest
|
||||
|
||||
- run: bin/phpstan analyze
|
||||
|
||||
# deploy:
|
||||
# name: Deploy via Ansible
|
||||
# runs-on: ubuntu-latest
|
||||
# needs:
|
||||
# - install
|
||||
# - phpcs
|
||||
# - phpstan
|
||||
# - phpunit
|
||||
# - theme
|
||||
# if: github.event_name == 'push'
|
||||
# env:
|
||||
# ANSIBLE_FORCE_COLOR: 1
|
||||
# ANSIBLE_HOST_KEY_CHECKING: no
|
||||
# steps:
|
||||
# - name: Checkout the code
|
||||
# uses: actions/checkout@a81bbbf8298c0fa03ea29cdc473d45769f953675
|
||||
#
|
||||
# - name: Add the deployment SSH key
|
||||
# uses: shimataro/ssh-key-action@6f350ca8484d8d55c2e361e74d17e638dabe713a # 2.1.0
|
||||
# with:
|
||||
# key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||
# name: id_rsa
|
||||
# known_hosts: ${{ secrets.SSH_KNOWN_HOSTS }}
|
||||
#
|
||||
# - name: Cache dependencies
|
||||
# uses: actions/cache@d9747005de0f7240e5d35a68dca96b3f41b8b340
|
||||
# with:
|
||||
# path: tools/deployment/.roles
|
||||
# key: dependencies-composer-${{ hashFiles('tools/deployment/requirements.yml') }}
|
||||
#
|
||||
# - name: Export the Ansible Vault password
|
||||
# run: echo $ANSIBLE_VAULT_PASS > tools/deployment/.vault-pass.txt
|
||||
# env:
|
||||
# ANSIBLE_VAULT_PASS: ${{ secrets.ANSIBLE_VAULT_PASS }}
|
||||
#
|
||||
# - name: Deploy the code
|
||||
# run: ./run ci:deploy
|
||||
#
|
||||
# - name: Remove the Ansible Vault password file
|
||||
# run: rm tools/deployment/.vault-pass.txt
|
17
old/drupal/.github/workflows/unlabel-closed-issues.yml
vendored
Normal file
17
old/drupal/.github/workflows/unlabel-closed-issues.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
name: Remove labels from closed issues
|
||||
|
||||
on:
|
||||
issues:
|
||||
types: [closed]
|
||||
|
||||
jobs:
|
||||
unlabel:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Unlabel the closed issue
|
||||
uses: actions-ecosystem/action-remove-labels@556e306
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
labels: next
|
30
old/drupal/.gitignore
vendored
Normal file
30
old/drupal/.gitignore
vendored
Normal file
|
@ -0,0 +1,30 @@
|
|||
*
|
||||
!*/
|
||||
!/.gitignore
|
||||
!/**/.gitkeep
|
||||
!/.docker.env.example
|
||||
!/.dockerignore
|
||||
!/.env.example
|
||||
!/.environment
|
||||
!/.github/**
|
||||
!/assets/**
|
||||
!/bin/
|
||||
!/config/**
|
||||
!/Dockerfile
|
||||
!/docker-compose.override.yaml.example
|
||||
!/docker-compose.yaml
|
||||
!/phpcs.xml.dist
|
||||
!/phpstan*.neon
|
||||
!/phpunit.xml.dist
|
||||
!/run
|
||||
!/scripts/
|
||||
!/tools/**
|
||||
!/web/modules/custom/**
|
||||
!/web/sites/default/environments/settings.*.php
|
||||
!/web/sites/default/settings.php
|
||||
!/web/sites/default/settings.docker.php
|
||||
!/web/themes/custom/**
|
||||
/.platform/local/
|
||||
/tools/deployment/.roles/
|
||||
/vendor/
|
||||
/web/themes/custom/*/body-field-values.txt
|
78
old/drupal/Dockerfile
Normal file
78
old/drupal/Dockerfile
Normal file
|
@ -0,0 +1,78 @@
|
|||
FROM node:14-buster-slim AS assets
|
||||
|
||||
ARG NODE_ENV=production
|
||||
ENV NODE_ENV="${NODE_ENV:-production}" \
|
||||
PATH="${PATH}:/node_modules/.bin"
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN mkdir /node_modules \
|
||||
&& chown node:node -R /node_modules /app
|
||||
|
||||
USER node
|
||||
|
||||
COPY --chown=node:node run .
|
||||
|
||||
WORKDIR /app/web/themes/custom/opdavies
|
||||
|
||||
COPY --chown=node:node web/themes/custom/opdavies/.yarnrc .
|
||||
COPY --chown=node:node web/themes/custom/opdavies/package.json .
|
||||
COPY --chown=node:node web/themes/custom/opdavies/yarn.lock .
|
||||
|
||||
RUN yarn install && yarn cache clean
|
||||
|
||||
COPY --chown=node:node config ../../../../config
|
||||
|
||||
CMD ["bash"]
|
||||
|
||||
###
|
||||
|
||||
FROM nginx:1-alpine AS nginx
|
||||
COPY tools/docker/images/nginx/configs/vhost.conf /etc/nginx/conf.d/default.conf
|
||||
WORKDIR /app
|
||||
COPY web web/
|
||||
WORKDIR /app/web/themes/custom/opdavies
|
||||
COPY --from=assets /app/web/themes/custom/opdavies/build build
|
||||
|
||||
###
|
||||
|
||||
FROM php:7.4-fpm-buster AS base
|
||||
|
||||
RUN apt-get update -yqq && \
|
||||
apt-get install -yqq --no-install-recommends \
|
||||
libpng-dev \
|
||||
mariadb-client \
|
||||
unzip \
|
||||
zlib1g-dev \
|
||||
&& docker-php-ext-install \
|
||||
exif \
|
||||
gd \
|
||||
pdo_mysql \
|
||||
&& rm -fr /var/lib/apt/lists/*
|
||||
|
||||
###
|
||||
|
||||
FROM base AS dev
|
||||
|
||||
ARG xdebug_version=2.9.0
|
||||
|
||||
RUN apt-get update -yqq \
|
||||
&& apt-get install -yqq --no-install-recommends \
|
||||
git \
|
||||
pv \
|
||||
vim \
|
||||
zip \
|
||||
&& pecl install xdebug-${xdebug_version} \
|
||||
&& docker-php-ext-enable xdebug \
|
||||
&& rm -fr /var/lib/apt/lists/*
|
||||
|
||||
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer
|
||||
COPY tools/docker/images/php/configs/php.ini /usr/local/etc/php/conf.d/php.ini
|
||||
|
||||
WORKDIR /app
|
||||
ENV PATH="$PATH:/app/bin"
|
||||
|
||||
COPY composer.json composer.lock /app/
|
||||
COPY assets /app/assets
|
||||
COPY tools/patches /app/tools/patches
|
||||
RUN composer install
|
67
old/drupal/README.md
Normal file
67
old/drupal/README.md
Normal file
|
@ -0,0 +1,67 @@
|
|||
# oliverdavies.uk
|
||||
|
||||
## Hosting
|
||||
|
||||
This site is hosted on a DigitalOcean droplet, which was created using [Ansible][] (see `tools/deployment/digitalocean.yml`).
|
||||
|
||||
[Ansible]: https://www.ansible.com
|
||||
|
||||
## Provisioning
|
||||
|
||||
To re-provision the server:
|
||||
|
||||
```bash
|
||||
# Download the required roles
|
||||
ansible-galaxy install -r tools/deployment/requirements.yml --force
|
||||
|
||||
# Run the provision playbook
|
||||
ansible-playbook tools/deployment/provision.yml
|
||||
```
|
||||
|
||||
### Deploying
|
||||
|
||||
Deployments for this site for managed with Ansible and [Ansistrano][].
|
||||
Ansible Vault is used to manage sensitive information like database passwords.
|
||||
|
||||
Deployments are triggered automatically when changes are pushed to GitHub, and are performed automatically via GitHub Actions on each push to the `production` branch.
|
||||
|
||||
To run a deployment manually, run `ansible-playbook tools/deployment/deploy.yml --ask-vault-pass`.
|
||||
The Vault password is stored in LastPass.
|
||||
|
||||
[Ansistrano]: https://ansistrano.com
|
||||
|
||||
#### Generating settings files
|
||||
|
||||
Production settings files are generated automatically during a deployment. This is done using the [opdavies.drupal_settings_files][drupal_settings_files] Ansible role, using variables from `tools/deployment/vars/deploy_vars.yml`, and performed during Ansistrano’s `After update code` build step.
|
||||
|
||||
[drupal_settings_files]: https://galaxy.ansible.com/opdavies/drupal_settings_files
|
||||
|
||||
## Local development
|
||||
|
||||
### Migrating data into the website
|
||||
|
||||
To view the status of all the migrations:
|
||||
|
||||
./run drush migrate:status
|
||||
|
||||
To run all the migrations:
|
||||
|
||||
./run drush migrate:import --all
|
||||
|
||||
To run all the migrations and update the existing migrated content:
|
||||
|
||||
./run drush migrate:import --all --update
|
||||
|
||||
### Updating Drupal core
|
||||
|
||||
Updating Drupal core (and anything else) can be done using Composer. As this project is built using the Drupal core recommended project, all of the dependencies need to be updated:
|
||||
|
||||
./run composer update drupal/core-* --with-all-dependencies
|
||||
|
||||
Once this has completed, the updated `composer.lock` file can be committed and pushed.
|
||||
|
||||
## Talks ordering
|
||||
|
||||
In order to keep the talks page in the correct order, based on when the next time a talk is being given, the `created` date for the talk node is automatically updated on each save to match the date of the most future event for that talk.
|
||||
|
||||
The view is then sorting the talk nodes based on their `created` date.
|
75
old/drupal/assets/robots-additions.txt
Normal file
75
old/drupal/assets/robots-additions.txt
Normal file
|
@ -0,0 +1,75 @@
|
|||
# Paths (clean URLs)
|
||||
Disallow: /atNOQ/
|
||||
Disallow: /calendar/
|
||||
Disallow: /code-enigma-interview/
|
||||
Disallow: /drupal-core-live-stream/
|
||||
Disallow: /drupal-tailwindcss/
|
||||
Disallow: /drupalcamp-nyc-training/
|
||||
Disallow: /drupalorg/
|
||||
Disallow: /drupalorg/
|
||||
Disallow: /github/
|
||||
Disallow: /inviqa-tailwind-demo/
|
||||
Disallow: /inviqa-tailwind-notes/
|
||||
Disallow: /leeds-php-drupal-9/
|
||||
Disallow: /linkedin/
|
||||
Disallow: /rebuilding-bristol-js/
|
||||
Disallow: /rebuilding-pantheon/
|
||||
Disallow: /rebuilding-pantheon/
|
||||
Disallow: /rebuilding-symfony/
|
||||
Disallow: /slides-drupal-9/
|
||||
Disallow: /slides-upgrading-to-drupal-9/
|
||||
Disallow: /slides-working-with-workspace/
|
||||
Disallow: /symfony/
|
||||
Disallow: /twitter/
|
||||
Disallow: /webpack-encore-pcss-regex/
|
||||
Disallow: /workshop-drupal-testing/
|
||||
Disallow: /workspace-demo/
|
||||
|
||||
# Paths (clean URLs - no slash)
|
||||
Disallow: /admin
|
||||
Disallow: /atNOQ
|
||||
Disallow: /calendar
|
||||
Disallow: /code-enigma-interview
|
||||
Disallow: /comment/reply
|
||||
Disallow: /drupal-core-live-stream
|
||||
Disallow: /drupal-tailwindcss
|
||||
Disallow: /drupalcamp-nyc-training
|
||||
Disallow: /drupalorg
|
||||
Disallow: /drupalorg
|
||||
Disallow: /filter/tips
|
||||
Disallow: /github
|
||||
Disallow: /inviqa-tailwind-demo
|
||||
Disallow: /inviqa-tailwind-notes
|
||||
Disallow: /leeds-php-drupal-9
|
||||
Disallow: /linkedin
|
||||
Disallow: /node/add
|
||||
Disallow: /rebuilding-bristol-js
|
||||
Disallow: /rebuilding-pantheon
|
||||
Disallow: /rebuilding-pantheon
|
||||
Disallow: /rebuilding-symfony
|
||||
Disallow: /slides-drupal-9
|
||||
Disallow: /slides-upgrading-to-drupal-9
|
||||
Disallow: /slides-working-with-workspace
|
||||
Disallow: /symfony
|
||||
Disallow: /twitter
|
||||
Disallow: /user/login
|
||||
Disallow: /user/logout
|
||||
Disallow: /user/password
|
||||
Disallow: /user/register
|
||||
Disallow: /webpack-encore-pcss-regex
|
||||
Disallow: /workshop-drupal-testing
|
||||
Disallow: /workspace-demo
|
||||
|
||||
# Paths (no clean URLs - no slash)
|
||||
Disallow: /?q=admin
|
||||
Disallow: /?q=comment/reply
|
||||
Disallow: /?q=filter/tips
|
||||
Disallow: /?q=node/add
|
||||
Disallow: /?q=search
|
||||
Disallow: /?q=user/password
|
||||
Disallow: /?q=user/register
|
||||
Disallow: /?q=user/login
|
||||
Disallow: /?q=user/logout
|
||||
|
||||
sitemap: https://www.oliverdavies.uk/sitemap.xml
|
||||
sitemap: https://www.oliverdavies.uk/sitemap
|
128
old/drupal/composer.json
Normal file
128
old/drupal/composer.json
Normal file
|
@ -0,0 +1,128 @@
|
|||
{
|
||||
"name": "opdavies/oliverdavies-uk",
|
||||
"description": "The source code for my personal website, oliverdavies.uk.",
|
||||
"type": "project",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"homepage": "https://www.drupal.org/project/drupal",
|
||||
"repositories": [
|
||||
{
|
||||
"type": "composer",
|
||||
"url": "https://packages.drupal.org/8"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"beberlei/assert": "^3.2",
|
||||
"composer/installers": "^1.2",
|
||||
"cweagans/composer-patches": "^1.6",
|
||||
"drupal/admin_toolbar": "^2.0",
|
||||
"drupal/config_ignore": "^2.2",
|
||||
"drupal/config_split": "^1.4",
|
||||
"drupal/core-composer-scaffold": "^8.8",
|
||||
"drupal/core-recommended": "^8.8",
|
||||
"drupal/gin": "^3.0",
|
||||
"drupal/gin_toolbar": "^1.0",
|
||||
"drupal/honeypot": "^2.0",
|
||||
"drupal/hook_event_dispatcher": "^2",
|
||||
"drupal/hreflang": "^1.3",
|
||||
"drupal/insert": "^2.0",
|
||||
"drupal/markdown": "^3.0",
|
||||
"drupal/menu_trail_by_path": "^1.3",
|
||||
"drupal/metatag": "^1.11",
|
||||
"drupal/migrate_plus": "^5.0",
|
||||
"drupal/migrate_source_yaml": "^1.2",
|
||||
"drupal/migrate_tools": "^4.5",
|
||||
"drupal/paragraphs": "^1.10",
|
||||
"drupal/pathauto": "^1.8",
|
||||
"drupal/plausible": "^2",
|
||||
"drupal/redirect": "^1.5",
|
||||
"drupal/redis": "^1.5",
|
||||
"drupal/scheduler": "^1.3",
|
||||
"drupal/simple_sitemap": "^3.6",
|
||||
"drupal/site_settings": "^1.19",
|
||||
"drupal/sitemap": "^1.5",
|
||||
"drupal/speakerdeck_field": "^2.0",
|
||||
"drupal/stage_file_proxy": "^1.0",
|
||||
"drush/drush": "^10",
|
||||
"illuminate/collections": "^8.38",
|
||||
"michelf/php-markdown": "^1.9",
|
||||
"nesbot/carbon": "^2.33",
|
||||
"platformsh/config-reader": "^2.4",
|
||||
"symfony/config": "^3.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
|
||||
"drupal/coder": "^8.3",
|
||||
"drupal/core-dev": "^8.8",
|
||||
"mglaman/phpstan-drupal": "^0.12.3",
|
||||
"phpstan/phpstan": "^0.12.19",
|
||||
"phpstan/phpstan-deprecation-rules": "^0.12.2"
|
||||
},
|
||||
"conflict": {
|
||||
"drupal/drupal": "*"
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true,
|
||||
"scripts": {
|
||||
"post-install-cmd": [
|
||||
"rm -fr web/modules/contrib/*/.git"
|
||||
],
|
||||
"post-update-cmd": [
|
||||
"rm -fr web/modules/contrib/*/.git"
|
||||
]
|
||||
},
|
||||
"config": {
|
||||
"bin-dir": "bin",
|
||||
"sort-packages": true
|
||||
},
|
||||
"extra": {
|
||||
"composer-exit-on-patch-failure": true,
|
||||
"drupal-scaffold": {
|
||||
"file-mapping": {
|
||||
"[web-root]/.htaccess": false,
|
||||
"[web-root]/.ht.router.php": false,
|
||||
"[web-root]/sites/README.txt": false,
|
||||
"[web-root]/modules/README.txt": false,
|
||||
"[web-root]/profiles/README.txt": false,
|
||||
"[web-root]/robots.txt": {
|
||||
"append": "assets/robots-additions.txt"
|
||||
},
|
||||
"[web-root]/themes/README.txt": false,
|
||||
"[web-root]/web.config": false
|
||||
},
|
||||
"locations": {
|
||||
"web-root": "web/"
|
||||
}
|
||||
},
|
||||
"installer-paths": {
|
||||
"web/core": [
|
||||
"type:drupal-core"
|
||||
],
|
||||
"web/libraries/{$name}": [
|
||||
"type:drupal-library"
|
||||
],
|
||||
"web/modules/contrib/{$name}": [
|
||||
"type:drupal-module"
|
||||
],
|
||||
"web/profiles/contrib/{$name}": [
|
||||
"type:drupal-profile"
|
||||
],
|
||||
"web/themes/contrib/{$name}": [
|
||||
"type:drupal-theme"
|
||||
],
|
||||
"drush/Commands/contrib/{$name}": [
|
||||
"type:drupal-drush"
|
||||
],
|
||||
"web/modules/custom/{$name}": [
|
||||
"type:drupal-custom-module"
|
||||
],
|
||||
"web/themes/custom/{$name}": [
|
||||
"type:drupal-custom-theme"
|
||||
]
|
||||
},
|
||||
"patches": {
|
||||
"drupal/plausible": {
|
||||
"Return early if user is not anonymous": "tools/patches/plausible/return-if-authenticated.patch"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
12239
old/drupal/composer.lock
generated
Normal file
12239
old/drupal/composer.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
24
old/drupal/config/.htaccess
Normal file
24
old/drupal/config/.htaccess
Normal file
|
@ -0,0 +1,24 @@
|
|||
# Deny all requests from Apache 2.4+.
|
||||
<IfModule mod_authz_core.c>
|
||||
Require all denied
|
||||
</IfModule>
|
||||
|
||||
# Deny all requests from Apache 2.0-2.2.
|
||||
<IfModule !mod_authz_core.c>
|
||||
Deny from all
|
||||
</IfModule>
|
||||
|
||||
# Turn off all options we don't need.
|
||||
Options -Indexes -ExecCGI -Includes -MultiViews
|
||||
|
||||
# Set the catch-all handler to prevent scripts from being executed.
|
||||
SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
|
||||
<Files *>
|
||||
# Override the handler again if we're run later in the evaluation list.
|
||||
SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
|
||||
</Files>
|
||||
|
||||
# If we know how to do it safely, disable the PHP engine entirely.
|
||||
<IfModule mod_php7.c>
|
||||
php_flag engine off
|
||||
</IfModule>
|
34
old/drupal/config/block.block.aboutme.yml
Normal file
34
old/drupal/config/block.block.aboutme.yml
Normal file
|
@ -0,0 +1,34 @@
|
|||
uuid: 5a40ebc9-95dc-49af-9a94-7724faa58c27
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
content:
|
||||
- 'block_content:basic_block:5124375b-ca89-4c71-90f6-b8ef4e83ecbb'
|
||||
module:
|
||||
- block_content
|
||||
- ctools
|
||||
theme:
|
||||
- opdavies
|
||||
id: aboutme
|
||||
theme: opdavies
|
||||
region: content
|
||||
weight: -1
|
||||
provider: null
|
||||
plugin: 'block_content:5124375b-ca89-4c71-90f6-b8ef4e83ecbb'
|
||||
settings:
|
||||
id: 'block_content:5124375b-ca89-4c71-90f6-b8ef4e83ecbb'
|
||||
label: 'About Me'
|
||||
provider: block_content
|
||||
label_display: visible
|
||||
status: true
|
||||
info: ''
|
||||
view_mode: full
|
||||
visibility:
|
||||
'entity_bundle:node':
|
||||
id: 'entity_bundle:node'
|
||||
bundles:
|
||||
post: post
|
||||
talk: talk
|
||||
negate: false
|
||||
context_mapping:
|
||||
node: '@node.node_route_context:node'
|
31
old/drupal/config/block.block.certificationbadges.yml
Normal file
31
old/drupal/config/block.block.certificationbadges.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
uuid: 1cf2931b-16ec-44f5-9dec-cc172f5b982d
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
content:
|
||||
- 'block_content:basic_block:8160bcb8-d26f-4ef7-a9a4-1f7f27a2bd02'
|
||||
module:
|
||||
- block_content
|
||||
- system
|
||||
theme:
|
||||
- opdavies
|
||||
id: certificationbadges
|
||||
theme: opdavies
|
||||
region: sidebar_second
|
||||
weight: -3
|
||||
provider: null
|
||||
plugin: 'block_content:8160bcb8-d26f-4ef7-a9a4-1f7f27a2bd02'
|
||||
settings:
|
||||
id: 'block_content:8160bcb8-d26f-4ef7-a9a4-1f7f27a2bd02'
|
||||
label: 'Certification badges'
|
||||
provider: block_content
|
||||
label_display: '0'
|
||||
status: true
|
||||
info: ''
|
||||
view_mode: full
|
||||
visibility:
|
||||
request_path:
|
||||
id: request_path
|
||||
pages: '<front>'
|
||||
negate: false
|
||||
context_mapping: { }
|
22
old/drupal/config/block.block.claro_breadcrumbs.yml
Normal file
22
old/drupal/config/block.block.claro_breadcrumbs.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 969c3a3e-5985-4625-845a-9552bcb6efeb
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: b6mUaCq5YPapRUABXRHfNTT6fxWIj5lgf0Mg4HaRJ_I
|
||||
id: claro_breadcrumbs
|
||||
theme: claro
|
||||
region: breadcrumb
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_breadcrumb_block
|
||||
settings:
|
||||
id: system_breadcrumb_block
|
||||
label: Breadcrumbs
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
old/drupal/config/block.block.claro_content.yml
Normal file
22
old/drupal/config/block.block.claro_content.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 29371eba-1fff-4f25-9801-afa69b1d1be8
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: QTwkfDaGeBUk6aerktJBDXso4fCsqLTQOuWKXE1xMPU
|
||||
id: claro_content
|
||||
theme: claro
|
||||
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: { }
|
20
old/drupal/config/block.block.claro_local_actions.yml
Normal file
20
old/drupal/config/block.block.claro_local_actions.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
uuid: d30cc398-e902-454a-9be7-bb966a4e0579
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: osZQ9lL2jTdH5am4LJiZ29RaivhzOf6vCpoRy6FZwIE
|
||||
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'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
old/drupal/config/block.block.claro_messages.yml
Normal file
22
old/drupal/config/block.block.claro_messages.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 53bb392d-ba68-4f82-ab6b-f1fba7c460c8
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: iIy-YIc9d9s1isAtTIKWDBKd6kd2r6LxoYz_-hkLJco
|
||||
id: claro_messages
|
||||
theme: claro
|
||||
region: highlighted
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_messages_block
|
||||
settings:
|
||||
id: system_messages_block
|
||||
label: 'Status messages'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
20
old/drupal/config/block.block.claro_page_title.yml
Normal file
20
old/drupal/config/block.block.claro_page_title.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
uuid: c3edbbe4-02e6-49cf-b4b4-d60974dd3bbb
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: gfXKmThltk6eewwrjAEaxVPxzPEVHV1UfNjjOUQ5A7g
|
||||
id: claro_page_title
|
||||
theme: claro
|
||||
region: header
|
||||
weight: -30
|
||||
provider: null
|
||||
plugin: page_title_block
|
||||
settings:
|
||||
id: page_title_block
|
||||
label: 'Page title'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
old/drupal/config/block.block.claro_primary_local_tasks.yml
Normal file
22
old/drupal/config/block.block.claro_primary_local_tasks.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 6ba46314-73af-4ef1-99d8-dfaef4a097d0
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: 7cvXIzw8NabmQCWMPqBz0mvIQZzXUZB3OeOTa5eqbCo
|
||||
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'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
primary: true
|
||||
secondary: false
|
||||
visibility: { }
|
|
@ -0,0 +1,22 @@
|
|||
uuid: cadf8e76-8675-412b-a118-af3ad14fb5e9
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: D_hUB_AW2IvKbVo3lVG-B2KfTsX6xJ-CxfOcRYUnL3E
|
||||
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'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
primary: false
|
||||
secondary: true
|
||||
visibility: { }
|
31
old/drupal/config/block.block.findmeon.yml
Normal file
31
old/drupal/config/block.block.findmeon.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
uuid: e0702bdf-0960-4a52-938b-cc6f5f71185b
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
content:
|
||||
- 'block_content:basic_block:3b82b744-c385-448c-a9ca-33a5348905da'
|
||||
module:
|
||||
- block_content
|
||||
- system
|
||||
theme:
|
||||
- opdavies
|
||||
id: findmeon
|
||||
theme: opdavies
|
||||
region: sidebar_second
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'block_content:3b82b744-c385-448c-a9ca-33a5348905da'
|
||||
settings:
|
||||
id: 'block_content:3b82b744-c385-448c-a9ca-33a5348905da'
|
||||
label: 'Find me on'
|
||||
provider: block_content
|
||||
label_display: visible
|
||||
status: true
|
||||
info: ''
|
||||
view_mode: full
|
||||
visibility:
|
||||
request_path:
|
||||
id: request_path
|
||||
pages: '<front>'
|
||||
negate: false
|
||||
context_mapping: { }
|
25
old/drupal/config/block.block.footer.yml
Normal file
25
old/drupal/config/block.block.footer.yml
Normal file
|
@ -0,0 +1,25 @@
|
|||
uuid: ffe77a3f-620c-4171-815b-f8e01e0d7786
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.footer
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- opdavies
|
||||
id: footer
|
||||
theme: opdavies
|
||||
region: footer
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'system_menu_block:footer'
|
||||
settings:
|
||||
id: 'system_menu_block:footer'
|
||||
label: Footer
|
||||
provider: system
|
||||
label_display: '0'
|
||||
level: 1
|
||||
depth: 0
|
||||
expand_all_items: false
|
||||
visibility: { }
|
22
old/drupal/config/block.block.gin_breadcrumbs.yml
Normal file
22
old/drupal/config/block.block.gin_breadcrumbs.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 9288f1c6-19f0-4b3c-8d9f-9ad6bdb3af1b
|
||||
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
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
old/drupal/config/block.block.gin_content.yml
Normal file
22
old/drupal/config/block.block.gin_content.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 5a2b2acc-ba69-45fb-a37a-8e4102402216
|
||||
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'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
20
old/drupal/config/block.block.gin_local_actions.yml
Normal file
20
old/drupal/config/block.block.gin_local_actions.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
uuid: dc73ea9a-f186-4651-86c2-4180afeceaf8
|
||||
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'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
old/drupal/config/block.block.gin_messages.yml
Normal file
22
old/drupal/config/block.block.gin_messages.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 665b60db-fe95-4e10-ae5c-780b58e8c6ad
|
||||
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'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
20
old/drupal/config/block.block.gin_page_title.yml
Normal file
20
old/drupal/config/block.block.gin_page_title.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
uuid: 023d28d5-50af-4d77-bbea-1208cf475bb8
|
||||
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'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
old/drupal/config/block.block.gin_primary_local_tasks.yml
Normal file
22
old/drupal/config/block.block.gin_primary_local_tasks.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: ce163a56-2186-4012-a128-0652eb41c838
|
||||
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'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
primary: true
|
||||
secondary: false
|
||||
visibility: { }
|
22
old/drupal/config/block.block.gin_secondary_local_tasks.yml
Normal file
22
old/drupal/config/block.block.gin_secondary_local_tasks.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 765f49fc-5a4d-4e43-8990-0528ced0e82d
|
||||
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'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
primary: false
|
||||
secondary: true
|
||||
visibility: { }
|
25
old/drupal/config/block.block.opdavies_branding.yml
Normal file
25
old/drupal/config/block.block.opdavies_branding.yml
Normal file
|
@ -0,0 +1,25 @@
|
|||
uuid: 734abfa0-7611-49a6-bed7-4219ef6888dd
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- opdavies
|
||||
_core:
|
||||
default_config_hash: fRKXNB91UxDvEMkzCR8ZBsawfC6Fqbme2gtobei3gu4
|
||||
id: opdavies_branding
|
||||
theme: opdavies
|
||||
region: header
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_branding_block
|
||||
settings:
|
||||
id: system_branding_block
|
||||
label: 'Site branding'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
use_site_logo: true
|
||||
use_site_name: false
|
||||
use_site_slogan: false
|
||||
visibility: { }
|
20
old/drupal/config/block.block.opdavies_local_actions.yml
Normal file
20
old/drupal/config/block.block.opdavies_local_actions.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
uuid: 88a93adc-1b95-4008-8e39-71d3a62be67b
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- opdavies
|
||||
_core:
|
||||
default_config_hash: PffmQ-ABSz5tFjWmVsR7NesunDnEivvopnJnBjl8KNE
|
||||
id: opdavies_local_actions
|
||||
theme: opdavies
|
||||
region: content
|
||||
weight: -4
|
||||
provider: null
|
||||
plugin: local_actions_block
|
||||
settings:
|
||||
id: local_actions_block
|
||||
label: 'Primary admin actions'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
old/drupal/config/block.block.opdavies_local_tasks.yml
Normal file
22
old/drupal/config/block.block.opdavies_local_tasks.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: c298066d-6e90-4a7f-89cd-c10a8fb2821b
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- opdavies
|
||||
_core:
|
||||
default_config_hash: c-06bbElRY5sKmglk74ppgTW93Et4-EJFyNiUZMb8JY
|
||||
id: opdavies_local_tasks
|
||||
theme: opdavies
|
||||
region: content
|
||||
weight: -6
|
||||
provider: null
|
||||
plugin: local_tasks_block
|
||||
settings:
|
||||
id: local_tasks_block
|
||||
label: Tabs
|
||||
provider: core
|
||||
label_display: '0'
|
||||
primary: true
|
||||
secondary: true
|
||||
visibility: { }
|
25
old/drupal/config/block.block.opdavies_mainnavigation.yml
Normal file
25
old/drupal/config/block.block.opdavies_mainnavigation.yml
Normal file
|
@ -0,0 +1,25 @@
|
|||
uuid: 6283b404-5d6e-474c-97db-ae819da114ca
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.main
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- opdavies
|
||||
id: opdavies_mainnavigation
|
||||
theme: opdavies
|
||||
region: primary_menu
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'system_menu_block:main'
|
||||
settings:
|
||||
id: 'system_menu_block:main'
|
||||
label: 'Main navigation'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
level: 1
|
||||
depth: 0
|
||||
expand_all_items: false
|
||||
visibility: { }
|
20
old/drupal/config/block.block.opdavies_mainpagecontent.yml
Normal file
20
old/drupal/config/block.block.opdavies_mainpagecontent.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
uuid: 09d6e46d-c9f7-4497-ac2d-8cecb1affb9e
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- opdavies
|
||||
id: opdavies_mainpagecontent
|
||||
theme: opdavies
|
||||
region: content
|
||||
weight: -3
|
||||
provider: null
|
||||
plugin: system_main_block
|
||||
settings:
|
||||
id: system_main_block
|
||||
label: 'Main page content'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
22
old/drupal/config/block.block.opdavies_messages.yml
Normal file
22
old/drupal/config/block.block.opdavies_messages.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
uuid: 8d008e4f-1d1b-463b-b46b-5677be6165f0
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- opdavies
|
||||
_core:
|
||||
default_config_hash: 5MNdk3fpMKx_xxBTcz2T11DL4XEU1H5SgHl8BsYdFsA
|
||||
id: opdavies_messages
|
||||
theme: opdavies
|
||||
region: highlighted
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_messages_block
|
||||
settings:
|
||||
id: system_messages_block
|
||||
label: 'Status messages'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
20
old/drupal/config/block.block.opdavies_page_title.yml
Normal file
20
old/drupal/config/block.block.opdavies_page_title.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
uuid: 62c54e09-4d24-4ef0-a038-a9c66fc13d6a
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- opdavies
|
||||
_core:
|
||||
default_config_hash: 8yptDf6WrXxeyevUz4nP5vfr7BtxQqCBMninhV2IJ1g
|
||||
id: opdavies_page_title
|
||||
theme: opdavies
|
||||
region: content
|
||||
weight: -5
|
||||
provider: null
|
||||
plugin: page_title_block
|
||||
settings:
|
||||
id: page_title_block
|
||||
label: 'Page title'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
visibility: { }
|
36
old/drupal/config/block.block.relatedposts.yml
Normal file
36
old/drupal/config/block.block.relatedposts.yml
Normal file
|
@ -0,0 +1,36 @@
|
|||
uuid: a524befa-25df-44a7-90dd-58588da3019a
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- ctools
|
||||
- node
|
||||
- opdavies_blog
|
||||
theme:
|
||||
- opdavies
|
||||
id: relatedposts
|
||||
theme: opdavies
|
||||
region: content
|
||||
weight: -2
|
||||
provider: null
|
||||
plugin: opdavies_blog_related_posts
|
||||
settings:
|
||||
id: opdavies_blog_related_posts
|
||||
label: 'Related Posts'
|
||||
provider: opdavies_blog
|
||||
label_display: visible
|
||||
visibility:
|
||||
'entity_bundle:node':
|
||||
id: 'entity_bundle:node'
|
||||
bundles:
|
||||
post: post
|
||||
negate: false
|
||||
context_mapping:
|
||||
node: '@node.node_route_context:node'
|
||||
node_type:
|
||||
id: node_type
|
||||
bundles:
|
||||
post: post
|
||||
negate: false
|
||||
context_mapping:
|
||||
node: '@node.node_route_context:node'
|
8
old/drupal/config/block_content.type.basic_block.yml
Normal file
8
old/drupal/config/block_content.type.basic_block.yml
Normal file
|
@ -0,0 +1,8 @@
|
|||
uuid: 50d55f62-399c-4efe-8822-2d404a97cd07
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
id: basic_block
|
||||
label: 'Basic block'
|
||||
revision: 1
|
||||
description: ''
|
8
old/drupal/config/block_content.type.recommendation.yml
Normal file
8
old/drupal/config/block_content.type.recommendation.yml
Normal file
|
@ -0,0 +1,8 @@
|
|||
uuid: 85d8f24d-3125-4aa8-8961-be2a7c8c54d3
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
id: recommendation
|
||||
label: Recommendation
|
||||
revision: 1
|
||||
description: ''
|
3
old/drupal/config/config_ignore.settings.yml
Normal file
3
old/drupal/config/config_ignore.settings.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
ignored_config_entities: { }
|
||||
_core:
|
||||
default_config_hash: UVH1aJ4b44UM-VdPVN7hNNuuVqfReJxwfVeDQH1Hvsk
|
16
old/drupal/config/config_split.config_split.live.yml
Normal file
16
old/drupal/config/config_split.config_split.live.yml
Normal file
|
@ -0,0 +1,16 @@
|
|||
uuid: 1ee9c84f-5545-4ee4-9e18-c998a249c546
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies: { }
|
||||
id: live
|
||||
label: Live
|
||||
description: ''
|
||||
folder: ../config_splits/live
|
||||
module: { }
|
||||
theme: { }
|
||||
blacklist: { }
|
||||
graylist:
|
||||
- system.site
|
||||
graylist_dependents: true
|
||||
graylist_skip_equal: true
|
||||
weight: 0
|
|
@ -0,0 +1,22 @@
|
|||
uuid: a111aef5-4a29-4ded-aa04-f8e7eab53772
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- node.type.page
|
||||
id: node.page.promote
|
||||
field_name: promote
|
||||
entity_type: node
|
||||
bundle: page
|
||||
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
|
|
@ -0,0 +1,22 @@
|
|||
uuid: 53062c70-7033-47b3-b2f0-eec60b1905cc
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- node.type.page
|
||||
id: node.page.status
|
||||
field_name: status
|
||||
entity_type: node
|
||||
bundle: page
|
||||
label: Published
|
||||
description: ''
|
||||
required: false
|
||||
translatable: true
|
||||
default_value:
|
||||
-
|
||||
value: 0
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
on_label: 'On'
|
||||
off_label: 'Off'
|
||||
field_type: boolean
|
|
@ -0,0 +1,22 @@
|
|||
uuid: f369f436-ffce-435d-894d-1841662a2329
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- node.type.post
|
||||
id: node.post.promote
|
||||
field_name: promote
|
||||
entity_type: node
|
||||
bundle: post
|
||||
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
|
|
@ -0,0 +1,22 @@
|
|||
uuid: 67a61641-9270-45c8-91e0-6112a9483166
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- node.type.post
|
||||
id: node.post.status
|
||||
field_name: status
|
||||
entity_type: node
|
||||
bundle: post
|
||||
label: Published
|
||||
description: ''
|
||||
required: false
|
||||
translatable: true
|
||||
default_value:
|
||||
-
|
||||
value: 0
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
on_label: 'On'
|
||||
off_label: 'Off'
|
||||
field_type: boolean
|
|
@ -0,0 +1,22 @@
|
|||
uuid: 7f0df5fb-62d8-4f0a-8113-6d5f93395768
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- node.type.talk
|
||||
id: node.talk.promote
|
||||
field_name: promote
|
||||
entity_type: node
|
||||
bundle: talk
|
||||
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
|
|
@ -0,0 +1,22 @@
|
|||
uuid: 1220e552-de4d-4c4d-b27a-f0d75d22bcd7
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- node.type.talk
|
||||
id: node.talk.status
|
||||
field_name: status
|
||||
entity_type: node
|
||||
bundle: talk
|
||||
label: Published
|
||||
description: ''
|
||||
required: false
|
||||
translatable: true
|
||||
default_value:
|
||||
-
|
||||
value: 0
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
on_label: 'On'
|
||||
off_label: 'Off'
|
||||
field_type: boolean
|
10
old/drupal/config/core.date_format.fallback.yml
Normal file
10
old/drupal/config/core.date_format.fallback.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: cbd37c72-6bd1-44de-b75d-dde2fd93ed9c
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: 7klS5IWXrwzVaPpYZFAs6wcx8U2FF1X73OfrtTsvuvE
|
||||
id: fallback
|
||||
label: 'Fallback date format'
|
||||
locked: true
|
||||
pattern: 'D, m/d/Y - H:i'
|
10
old/drupal/config/core.date_format.html_date.yml
Normal file
10
old/drupal/config/core.date_format.html_date.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: 99582dd0-fee1-4923-a681-eafc9d9450d6
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: EOQltUQPmgc6UQ2rcJ4Xi_leCEJj5ui0TR-12duS-Tk
|
||||
id: html_date
|
||||
label: 'HTML Date'
|
||||
locked: true
|
||||
pattern: Y-m-d
|
10
old/drupal/config/core.date_format.html_datetime.yml
Normal file
10
old/drupal/config/core.date_format.html_datetime.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: 33e34014-a92d-442d-8541-5b1d7a422253
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: jxfClwZIRXIdcvMrE--WkcZxDGUVoOIE3Sm2NRZlFuE
|
||||
id: html_datetime
|
||||
label: 'HTML Datetime'
|
||||
locked: true
|
||||
pattern: 'Y-m-d\TH:i:sO'
|
10
old/drupal/config/core.date_format.html_month.yml
Normal file
10
old/drupal/config/core.date_format.html_month.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: 7025a0b1-411b-4ceb-aba8-1ff655d018ad
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: Z7KuCUwM_WdTNvLcoltuX3_8d-s-8FZkTN6KgNwF0eM
|
||||
id: html_month
|
||||
label: 'HTML Month'
|
||||
locked: true
|
||||
pattern: Y-m
|
10
old/drupal/config/core.date_format.html_time.yml
Normal file
10
old/drupal/config/core.date_format.html_time.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: ba463f34-0c1a-4c96-8e72-0eac1f641870
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: M7yqicYkU36hRy5p9drAaGBBihhUD1OyujFrAaQ93ZE
|
||||
id: html_time
|
||||
label: 'HTML Time'
|
||||
locked: true
|
||||
pattern: 'H:i:s'
|
10
old/drupal/config/core.date_format.html_week.yml
Normal file
10
old/drupal/config/core.date_format.html_week.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: 130d244b-b9fa-4e69-905c-f95f41473b69
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: wKD4WsoV_wFgv2vgI4mcAAFSIzrye17ykzdwrnApkfY
|
||||
id: html_week
|
||||
label: 'HTML Week'
|
||||
locked: true
|
||||
pattern: Y-\WW
|
10
old/drupal/config/core.date_format.html_year.yml
Normal file
10
old/drupal/config/core.date_format.html_year.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: efcb7ae1-db22-477c-ade2-7e78cc231059
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: OjekiQuX9RbVQ2_8jOHBL94RgYLePqX7wpfNGgcQzrk
|
||||
id: html_year
|
||||
label: 'HTML Year'
|
||||
locked: true
|
||||
pattern: 'Y'
|
10
old/drupal/config/core.date_format.html_yearless_date.yml
Normal file
10
old/drupal/config/core.date_format.html_yearless_date.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: 710cee33-ed9d-461c-8db2-adbdcedc07af
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: 5VpawMrKPEPCkoO4YpPa0TDFO2dgiIHfTziJtwlmUxc
|
||||
id: html_yearless_date
|
||||
label: 'HTML Yearless date'
|
||||
locked: true
|
||||
pattern: m-d
|
10
old/drupal/config/core.date_format.long.yml
Normal file
10
old/drupal/config/core.date_format.long.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: 4a2b6ac6-672f-43dc-a874-5a92cc422f0b
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: og8sWXhBuHbLMw3CoiBEZjgqSyhFBFmcbUW_wLcfNbo
|
||||
id: long
|
||||
label: 'Default long date'
|
||||
locked: false
|
||||
pattern: 'l, F j, Y - H:i'
|
10
old/drupal/config/core.date_format.medium.yml
Normal file
10
old/drupal/config/core.date_format.medium.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: 9c9123ee-b656-4cb2-b7b0-57ccf36826cc
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: nzL5d024NjXIX_8TlT6uFAu973lmfkmHklJC-2i9rAE
|
||||
id: medium
|
||||
label: 'Default medium date'
|
||||
locked: false
|
||||
pattern: 'jS F Y'
|
10
old/drupal/config/core.date_format.short.yml
Normal file
10
old/drupal/config/core.date_format.short.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: 7efe8cd7-ea28-448c-a8b9-8b321263f510
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: AlzeyytA8InBgxIG9H2UDJYs3CG98Zj6yRsDKmlbZwA
|
||||
id: short
|
||||
label: 'Default short date'
|
||||
locked: false
|
||||
pattern: 'd/m/Y - H:i'
|
|
@ -0,0 +1,33 @@
|
|||
uuid: 4ce8ba50-9032-46b9-9e96-d33f8bc1e623
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_content.type.basic_block
|
||||
- field.field.block_content.basic_block.body
|
||||
module:
|
||||
- text
|
||||
id: block_content.basic_block.default
|
||||
targetEntityType: block_content
|
||||
bundle: basic_block
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
type: text_textarea_with_summary
|
||||
weight: 26
|
||||
settings:
|
||||
rows: 9
|
||||
summary_rows: 3
|
||||
placeholder: ''
|
||||
show_summary: false
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
info:
|
||||
type: string_textfield
|
||||
weight: -5
|
||||
region: content
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
hidden: { }
|
|
@ -0,0 +1,53 @@
|
|||
uuid: 0fa46b49-f610-49bc-b524-f24dec618426
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_content.type.recommendation
|
||||
- field.field.block_content.recommendation.body
|
||||
- field.field.block_content.recommendation.field_photo
|
||||
- field.field.block_content.recommendation.field_role
|
||||
- image.style.thumbnail
|
||||
module:
|
||||
- image
|
||||
- text
|
||||
id: block_content.recommendation.default
|
||||
targetEntityType: block_content
|
||||
bundle: recommendation
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
type: text_textarea_with_summary
|
||||
weight: 4
|
||||
settings:
|
||||
rows: 9
|
||||
summary_rows: 3
|
||||
placeholder: ''
|
||||
show_summary: false
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
field_photo:
|
||||
weight: 1
|
||||
settings:
|
||||
progress_indicator: throbber
|
||||
preview_image_style: thumbnail
|
||||
third_party_settings: { }
|
||||
type: image_image
|
||||
region: content
|
||||
field_role:
|
||||
weight: 2
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
type: string_textfield
|
||||
region: content
|
||||
info:
|
||||
type: string_textfield
|
||||
weight: 0
|
||||
region: content
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
hidden: { }
|
|
@ -0,0 +1,62 @@
|
|||
uuid: e085baed-b646-4d80-8a7c-cedf650711a0
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.media.image.field_media_image
|
||||
- image.style.thumbnail
|
||||
- media.type.image
|
||||
module:
|
||||
- image
|
||||
- path
|
||||
id: media.image.default
|
||||
targetEntityType: media
|
||||
bundle: image
|
||||
mode: default
|
||||
content:
|
||||
created:
|
||||
type: datetime_timestamp
|
||||
weight: 10
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
field_media_image:
|
||||
weight: 0
|
||||
settings:
|
||||
progress_indicator: throbber
|
||||
preview_image_style: thumbnail
|
||||
third_party_settings: { }
|
||||
type: image_image
|
||||
region: content
|
||||
name:
|
||||
type: string_textfield
|
||||
weight: -5
|
||||
region: content
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
path:
|
||||
type: path
|
||||
weight: 30
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
status:
|
||||
type: boolean_checkbox
|
||||
settings:
|
||||
display_label: true
|
||||
weight: 100
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
uid:
|
||||
type: entity_reference_autocomplete
|
||||
weight: 5
|
||||
settings:
|
||||
match_operator: CONTAINS
|
||||
size: 60
|
||||
placeholder: ''
|
||||
match_limit: 10
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
hidden: { }
|
|
@ -0,0 +1,30 @@
|
|||
uuid: 9e4dc1ea-abd8-4490-aad5-da1dfd73962b
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- core.entity_form_mode.media.media_library
|
||||
- field.field.media.image.field_media_image
|
||||
- image.style.thumbnail
|
||||
- media.type.image
|
||||
module:
|
||||
- image
|
||||
id: media.image.media_library
|
||||
targetEntityType: media
|
||||
bundle: image
|
||||
mode: media_library
|
||||
content:
|
||||
field_media_image:
|
||||
weight: -50
|
||||
settings:
|
||||
progress_indicator: throbber
|
||||
preview_image_style: thumbnail
|
||||
third_party_settings: { }
|
||||
type: image_image
|
||||
region: content
|
||||
hidden:
|
||||
created: true
|
||||
name: true
|
||||
path: true
|
||||
status: true
|
||||
uid: true
|
|
@ -0,0 +1,53 @@
|
|||
uuid: 63d3db29-3f69-4abe-a37c-8278f4750d38
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.media.video.field_media_oembed_video
|
||||
- media.type.video
|
||||
module:
|
||||
- media
|
||||
id: media.video.default
|
||||
targetEntityType: media
|
||||
bundle: video
|
||||
mode: default
|
||||
content:
|
||||
created:
|
||||
type: datetime_timestamp
|
||||
weight: 10
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
field_media_oembed_video:
|
||||
type: oembed_textfield
|
||||
weight: 0
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
path:
|
||||
type: path
|
||||
weight: 30
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
status:
|
||||
type: boolean_checkbox
|
||||
settings:
|
||||
display_label: true
|
||||
weight: 100
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
uid:
|
||||
type: entity_reference_autocomplete
|
||||
weight: 5
|
||||
settings:
|
||||
match_operator: CONTAINS
|
||||
size: 60
|
||||
placeholder: ''
|
||||
match_limit: 10
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
hidden:
|
||||
name: true
|
|
@ -0,0 +1,27 @@
|
|||
uuid: d564c097-b413-4569-929d-85c6a418834e
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- core.entity_form_mode.media.media_library
|
||||
- field.field.media.video.field_media_oembed_video
|
||||
- media.type.video
|
||||
id: media.video.media_library
|
||||
targetEntityType: media
|
||||
bundle: video
|
||||
mode: media_library
|
||||
content:
|
||||
name:
|
||||
type: string_textfield
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
weight: 0
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
hidden:
|
||||
created: true
|
||||
field_media_oembed_video: true
|
||||
path: true
|
||||
status: true
|
||||
uid: true
|
105
old/drupal/config/core.entity_form_display.node.page.default.yml
Normal file
105
old/drupal/config/core.entity_form_display.node.page.default.yml
Normal file
|
@ -0,0 +1,105 @@
|
|||
uuid: 704acf2f-2cb4-467b-a4a2-131c39b45a13
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.node.page.body
|
||||
- field.field.node.page.field_meta_tags
|
||||
- field.field.node.page.layout_builder__layout
|
||||
- node.type.page
|
||||
module:
|
||||
- metatag
|
||||
- path
|
||||
- text
|
||||
id: node.page.default
|
||||
targetEntityType: node
|
||||
bundle: page
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
type: text_textarea_with_summary
|
||||
weight: 121
|
||||
settings:
|
||||
rows: 9
|
||||
summary_rows: 3
|
||||
placeholder: ''
|
||||
show_summary: false
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
created:
|
||||
type: datetime_timestamp
|
||||
weight: 10
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
field_meta_tags:
|
||||
weight: 122
|
||||
settings:
|
||||
sidebar: true
|
||||
third_party_settings: { }
|
||||
type: metatag_firehose
|
||||
region: content
|
||||
path:
|
||||
type: path
|
||||
weight: 30
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
promote:
|
||||
type: boolean_checkbox
|
||||
settings:
|
||||
display_label: true
|
||||
weight: 15
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
publish_on:
|
||||
type: datetime_timestamp_no_default
|
||||
weight: 30
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
status:
|
||||
type: boolean_checkbox
|
||||
settings:
|
||||
display_label: true
|
||||
weight: 120
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
sticky:
|
||||
type: boolean_checkbox
|
||||
settings:
|
||||
display_label: true
|
||||
weight: 16
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
title:
|
||||
type: string_textfield
|
||||
weight: -5
|
||||
region: content
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
uid:
|
||||
type: entity_reference_autocomplete
|
||||
weight: 5
|
||||
settings:
|
||||
match_operator: CONTAINS
|
||||
size: 60
|
||||
placeholder: ''
|
||||
match_limit: 10
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
unpublish_on:
|
||||
type: datetime_timestamp_no_default
|
||||
weight: 30
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
url_redirects:
|
||||
weight: 50
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
hidden:
|
||||
layout_builder__layout: true
|
184
old/drupal/config/core.entity_form_display.node.post.default.yml
Normal file
184
old/drupal/config/core.entity_form_display.node.post.default.yml
Normal file
|
@ -0,0 +1,184 @@
|
|||
uuid: ad5e0f3b-ff9c-46ba-8646-99ea66882119
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.node.post.body
|
||||
- field.field.node.post.field_amendments
|
||||
- field.field.node.post.field_excerpt
|
||||
- field.field.node.post.field_external_link
|
||||
- field.field.node.post.field_has_tweet
|
||||
- field.field.node.post.field_images
|
||||
- field.field.node.post.field_note
|
||||
- field.field.node.post.field_send_to_social_media
|
||||
- field.field.node.post.field_sent_to_social_media
|
||||
- field.field.node.post.field_series
|
||||
- field.field.node.post.field_tags
|
||||
- node.type.post
|
||||
module:
|
||||
- media_library
|
||||
- paragraphs
|
||||
- path
|
||||
- scheduler
|
||||
- text
|
||||
id: node.post.default
|
||||
targetEntityType: node
|
||||
bundle: post
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
type: text_textarea_with_summary
|
||||
weight: 3
|
||||
settings:
|
||||
rows: 9
|
||||
summary_rows: 3
|
||||
placeholder: ''
|
||||
show_summary: false
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
created:
|
||||
type: datetime_timestamp
|
||||
weight: 9
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
field_amendments:
|
||||
type: entity_reference_paragraphs
|
||||
weight: 18
|
||||
settings:
|
||||
title: Paragraph
|
||||
title_plural: Paragraphs
|
||||
edit_mode: open
|
||||
add_mode: dropdown
|
||||
form_display_mode: default
|
||||
default_paragraph_type: ''
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
field_excerpt:
|
||||
weight: 2
|
||||
settings:
|
||||
rows: 5
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
type: string_textarea
|
||||
region: content
|
||||
field_has_tweet:
|
||||
weight: 6
|
||||
settings:
|
||||
display_label: true
|
||||
third_party_settings: { }
|
||||
type: boolean_checkbox
|
||||
region: content
|
||||
field_images:
|
||||
weight: 4
|
||||
settings:
|
||||
media_types: { }
|
||||
third_party_settings: { }
|
||||
type: media_library_widget
|
||||
region: content
|
||||
field_note:
|
||||
weight: 5
|
||||
settings:
|
||||
rows: 5
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
type: text_textarea
|
||||
region: content
|
||||
field_send_to_social_media:
|
||||
weight: 26
|
||||
settings:
|
||||
display_label: true
|
||||
third_party_settings: { }
|
||||
type: boolean_checkbox
|
||||
region: content
|
||||
field_series:
|
||||
weight: 1
|
||||
settings:
|
||||
match_operator: CONTAINS
|
||||
match_limit: 10
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
type: entity_reference_autocomplete
|
||||
region: content
|
||||
field_tags:
|
||||
weight: 7
|
||||
settings:
|
||||
match_operator: CONTAINS
|
||||
match_limit: 10
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
type: entity_reference_autocomplete_tags
|
||||
region: content
|
||||
path:
|
||||
type: path
|
||||
weight: 12
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
promote:
|
||||
type: boolean_checkbox
|
||||
settings:
|
||||
display_label: true
|
||||
weight: 10
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
publish_on:
|
||||
type: datetime_timestamp_no_default
|
||||
weight: 16
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
scheduler_settings:
|
||||
weight: 15
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
status:
|
||||
type: boolean_checkbox
|
||||
settings:
|
||||
display_label: true
|
||||
weight: 14
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
sticky:
|
||||
type: boolean_checkbox
|
||||
settings:
|
||||
display_label: true
|
||||
weight: 11
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
title:
|
||||
type: string_textfield
|
||||
weight: 0
|
||||
region: content
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
uid:
|
||||
type: entity_reference_autocomplete
|
||||
weight: 8
|
||||
settings:
|
||||
match_operator: CONTAINS
|
||||
size: 60
|
||||
placeholder: ''
|
||||
match_limit: 10
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
unpublish_on:
|
||||
type: datetime_timestamp_no_default
|
||||
weight: 17
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
url_redirects:
|
||||
weight: 13
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
hidden:
|
||||
field_external_link: true
|
||||
field_meta_tags: true
|
||||
field_sent_to_social_media: true
|
149
old/drupal/config/core.entity_form_display.node.talk.default.yml
Normal file
149
old/drupal/config/core.entity_form_display.node.talk.default.yml
Normal file
|
@ -0,0 +1,149 @@
|
|||
uuid: f99d1b17-736c-4f8d-8711-1f0d69602470
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.node.talk.body
|
||||
- field.field.node.talk.field_event_date
|
||||
- field.field.node.talk.field_events
|
||||
- field.field.node.talk.field_excerpt
|
||||
- field.field.node.talk.field_slides
|
||||
- field.field.node.talk.field_type
|
||||
- field.field.node.talk.field_video
|
||||
- node.type.talk
|
||||
module:
|
||||
- paragraphs
|
||||
- path
|
||||
- scheduler
|
||||
- speakerdeck_field
|
||||
- text
|
||||
id: node.talk.default
|
||||
targetEntityType: node
|
||||
bundle: talk
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
type: text_textarea_with_summary
|
||||
weight: 3
|
||||
settings:
|
||||
rows: 9
|
||||
summary_rows: 3
|
||||
placeholder: ''
|
||||
show_summary: false
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
created:
|
||||
type: datetime_timestamp
|
||||
weight: 8
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
field_events:
|
||||
type: entity_reference_paragraphs
|
||||
weight: 4
|
||||
settings:
|
||||
title: Paragraph
|
||||
title_plural: Paragraphs
|
||||
edit_mode: closed
|
||||
add_mode: dropdown
|
||||
form_display_mode: default
|
||||
default_paragraph_type: events
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
field_excerpt:
|
||||
weight: 2
|
||||
settings:
|
||||
rows: 5
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
type: string_textarea
|
||||
region: content
|
||||
field_slides:
|
||||
weight: 5
|
||||
settings:
|
||||
data_id: ''
|
||||
data_ratio: ''
|
||||
third_party_settings: { }
|
||||
type: speakerdeck_widget
|
||||
region: content
|
||||
field_type:
|
||||
weight: 1
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
type: options_select
|
||||
region: content
|
||||
field_video:
|
||||
weight: 6
|
||||
settings:
|
||||
match_operator: CONTAINS
|
||||
match_limit: 10
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
type: entity_reference_autocomplete
|
||||
region: content
|
||||
path:
|
||||
type: path
|
||||
weight: 12
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
promote:
|
||||
type: boolean_checkbox
|
||||
settings:
|
||||
display_label: true
|
||||
weight: 9
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
publish_on:
|
||||
type: datetime_timestamp_no_default
|
||||
weight: 13
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
status:
|
||||
type: boolean_checkbox
|
||||
settings:
|
||||
display_label: true
|
||||
weight: 11
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
sticky:
|
||||
type: boolean_checkbox
|
||||
settings:
|
||||
display_label: true
|
||||
weight: 10
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
title:
|
||||
type: string_textfield
|
||||
weight: 0
|
||||
region: content
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
uid:
|
||||
type: entity_reference_autocomplete
|
||||
weight: 7
|
||||
settings:
|
||||
match_operator: CONTAINS
|
||||
size: 60
|
||||
placeholder: ''
|
||||
match_limit: 10
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
unpublish_on:
|
||||
type: datetime_timestamp_no_default
|
||||
weight: 14
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
url_redirects:
|
||||
weight: 15
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
hidden:
|
||||
field_event_date: true
|
||||
field_meta_tags: true
|
|
@ -0,0 +1,76 @@
|
|||
uuid: 9305e00f-ee05-4141-b8d5-d4f194f7082c
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.paragraph.event.field_date
|
||||
- field.field.paragraph.event.field_feedback_url
|
||||
- field.field.paragraph.event.field_is_online
|
||||
- field.field.paragraph.event.field_link
|
||||
- field.field.paragraph.event.field_location
|
||||
- field.field.paragraph.event.field_name
|
||||
- field.field.paragraph.event.field_remote
|
||||
- paragraphs.paragraphs_type.event
|
||||
module:
|
||||
- datetime
|
||||
- link
|
||||
id: paragraph.event.default
|
||||
targetEntityType: paragraph
|
||||
bundle: event
|
||||
mode: default
|
||||
content:
|
||||
field_date:
|
||||
weight: 2
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
type: datetime_default
|
||||
region: content
|
||||
field_feedback_url:
|
||||
weight: 6
|
||||
settings:
|
||||
placeholder_url: ''
|
||||
placeholder_title: ''
|
||||
third_party_settings: { }
|
||||
type: link_default
|
||||
region: content
|
||||
field_is_online:
|
||||
weight: 4
|
||||
settings:
|
||||
display_label: true
|
||||
third_party_settings: { }
|
||||
type: boolean_checkbox
|
||||
region: content
|
||||
field_link:
|
||||
weight: 5
|
||||
settings:
|
||||
placeholder_url: ''
|
||||
placeholder_title: ''
|
||||
third_party_settings: { }
|
||||
type: link_default
|
||||
region: content
|
||||
field_location:
|
||||
weight: 1
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
type: string_textfield
|
||||
region: content
|
||||
field_name:
|
||||
weight: 0
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
type: string_textfield
|
||||
region: content
|
||||
field_remote:
|
||||
weight: 3
|
||||
settings:
|
||||
display_label: true
|
||||
third_party_settings: { }
|
||||
type: boolean_checkbox
|
||||
region: content
|
||||
hidden:
|
||||
created: true
|
||||
status: true
|
|
@ -0,0 +1,33 @@
|
|||
uuid: cc28009a-704c-42d4-aa9e-4a16338fc45f
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.paragraph.post_amendment.field_amendment_text
|
||||
- field.field.paragraph.post_amendment.field_date
|
||||
- paragraphs.paragraphs_type.post_amendment
|
||||
module:
|
||||
- datetime
|
||||
- text
|
||||
id: paragraph.post_amendment.default
|
||||
targetEntityType: paragraph
|
||||
bundle: post_amendment
|
||||
mode: default
|
||||
content:
|
||||
field_amendment_text:
|
||||
weight: 1
|
||||
settings:
|
||||
rows: 5
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
type: text_textarea
|
||||
region: content
|
||||
field_date:
|
||||
weight: 0
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
type: datetime_default
|
||||
region: content
|
||||
hidden:
|
||||
created: true
|
||||
status: true
|
|
@ -0,0 +1,15 @@
|
|||
uuid: 6f3f59f3-ec20-431e-b50a-e290ac647c23
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- media_library
|
||||
module:
|
||||
- media
|
||||
_core:
|
||||
default_config_hash: pkq0uj-IoqEQRBOP_ddUDV0ZJ-dKQ_fLcppsEDF2UO8
|
||||
id: media.media_library
|
||||
label: 'Media library'
|
||||
targetEntityType: media
|
||||
cache: true
|
12
old/drupal/config/core.entity_form_mode.user.register.yml
Normal file
12
old/drupal/config/core.entity_form_mode.user.register.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
uuid: bad5fcb6-b05f-40bf-a1f9-15c2685f9b02
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: flXhTcp55yLcyy7ZLOhPGKGZobZQJdkAFVWV3LseiuI
|
||||
id: user.register
|
||||
label: Register
|
||||
targetEntityType: user
|
||||
cache: true
|
|
@ -0,0 +1,22 @@
|
|||
uuid: 7d6aacbd-983b-45f2-9552-861f3c127907
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_content.type.basic_block
|
||||
- field.field.block_content.basic_block.body
|
||||
module:
|
||||
- text
|
||||
id: block_content.basic_block.default
|
||||
targetEntityType: block_content
|
||||
bundle: basic_block
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
label: hidden
|
||||
type: text_default
|
||||
weight: 0
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
hidden: { }
|
|
@ -0,0 +1,43 @@
|
|||
uuid: 60c9b2c7-c8b8-4236-bc1f-37cfd574b28a
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_content.type.recommendation
|
||||
- field.field.block_content.recommendation.body
|
||||
- field.field.block_content.recommendation.field_photo
|
||||
- field.field.block_content.recommendation.field_role
|
||||
- image.style.recommendation
|
||||
module:
|
||||
- image
|
||||
- text
|
||||
id: block_content.recommendation.default
|
||||
targetEntityType: block_content
|
||||
bundle: recommendation
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
label: hidden
|
||||
type: text_default
|
||||
weight: 2
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
field_photo:
|
||||
weight: 3
|
||||
label: hidden
|
||||
settings:
|
||||
image_style: recommendation
|
||||
image_link: ''
|
||||
third_party_settings: { }
|
||||
type: image
|
||||
region: content
|
||||
field_role:
|
||||
weight: 0
|
||||
label: hidden
|
||||
settings:
|
||||
link_to_entity: false
|
||||
third_party_settings: { }
|
||||
type: string
|
||||
region: content
|
||||
hidden: { }
|
|
@ -0,0 +1,28 @@
|
|||
uuid: de340d6f-6507-4c6d-82c4-bc6312db3318
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.media.image.field_media_image
|
||||
- media.type.image
|
||||
module:
|
||||
- image
|
||||
id: media.image.default
|
||||
targetEntityType: media
|
||||
bundle: image
|
||||
mode: default
|
||||
content:
|
||||
field_media_image:
|
||||
label: visually_hidden
|
||||
weight: 0
|
||||
settings:
|
||||
image_style: ''
|
||||
image_link: ''
|
||||
third_party_settings: { }
|
||||
type: image
|
||||
region: content
|
||||
hidden:
|
||||
created: true
|
||||
name: true
|
||||
thumbnail: true
|
||||
uid: true
|
|
@ -0,0 +1,30 @@
|
|||
uuid: 9270318f-a184-401a-ae2b-03cd7457d959
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- core.entity_view_mode.media.media_library
|
||||
- field.field.media.image.field_media_image
|
||||
- image.style.medium
|
||||
- media.type.image
|
||||
module:
|
||||
- image
|
||||
id: media.image.media_library
|
||||
targetEntityType: media
|
||||
bundle: image
|
||||
mode: media_library
|
||||
content:
|
||||
thumbnail:
|
||||
type: image
|
||||
label: hidden
|
||||
settings:
|
||||
image_style: medium
|
||||
image_link: ''
|
||||
weight: 0
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
hidden:
|
||||
created: true
|
||||
field_media_image: true
|
||||
name: true
|
||||
uid: true
|
|
@ -0,0 +1,28 @@
|
|||
uuid: ca6dbc4e-310e-4340-b6ca-837216e629f3
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.media.video.field_media_oembed_video
|
||||
- media.type.video
|
||||
module:
|
||||
- media
|
||||
id: media.video.default
|
||||
targetEntityType: media
|
||||
bundle: video
|
||||
mode: default
|
||||
content:
|
||||
field_media_oembed_video:
|
||||
type: oembed
|
||||
label: visually_hidden
|
||||
weight: 0
|
||||
settings:
|
||||
max_width: 0
|
||||
max_height: 0
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
hidden:
|
||||
created: true
|
||||
name: true
|
||||
thumbnail: true
|
||||
uid: true
|
|
@ -0,0 +1,30 @@
|
|||
uuid: a15d425a-4d19-49fd-b841-533f5b3f5248
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- core.entity_view_mode.media.media_library
|
||||
- field.field.media.video.field_media_oembed_video
|
||||
- image.style.medium
|
||||
- media.type.video
|
||||
module:
|
||||
- image
|
||||
id: media.video.media_library
|
||||
targetEntityType: media
|
||||
bundle: video
|
||||
mode: media_library
|
||||
content:
|
||||
thumbnail:
|
||||
type: image
|
||||
label: hidden
|
||||
settings:
|
||||
image_style: medium
|
||||
image_link: ''
|
||||
weight: 0
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
hidden:
|
||||
created: true
|
||||
field_media_oembed_video: true
|
||||
name: true
|
||||
uid: true
|
|
@ -0,0 +1,92 @@
|
|||
uuid: bdf78a85-72cf-41a2-9527-03e3724debbd
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.node.page.body
|
||||
- field.field.node.page.field_meta_tags
|
||||
- field.field.node.page.layout_builder__layout
|
||||
- node.type.page
|
||||
module:
|
||||
- layout_builder
|
||||
- layout_discovery
|
||||
- metatag
|
||||
- text
|
||||
- user
|
||||
third_party_settings:
|
||||
layout_builder:
|
||||
allow_custom: true
|
||||
enabled: true
|
||||
sections:
|
||||
-
|
||||
layout_id: layout_onecol
|
||||
layout_settings:
|
||||
label: ''
|
||||
components:
|
||||
b4b65073-1040-4ebf-b67b-230c7c2c70a1:
|
||||
uuid: b4b65073-1040-4ebf-b67b-230c7c2c70a1
|
||||
region: content
|
||||
configuration:
|
||||
label_display: '0'
|
||||
context_mapping:
|
||||
entity: layout_builder.entity
|
||||
id: 'extra_field_block:node:page:links'
|
||||
additional: { }
|
||||
weight: 0
|
||||
d54a5760-4c31-463b-8f96-e31d19f00010:
|
||||
uuid: d54a5760-4c31-463b-8f96-e31d19f00010
|
||||
region: content
|
||||
configuration:
|
||||
label_display: '0'
|
||||
context_mapping:
|
||||
entity: layout_builder.entity
|
||||
id: 'field_block:node:page:body'
|
||||
formatter:
|
||||
label: hidden
|
||||
type: text_default
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
additional: { }
|
||||
weight: 1
|
||||
8767d67e-01fe-4fe9-a0d3-2e4db030db29:
|
||||
uuid: 8767d67e-01fe-4fe9-a0d3-2e4db030db29
|
||||
region: content
|
||||
configuration:
|
||||
label_display: '0'
|
||||
context_mapping:
|
||||
entity: layout_builder.entity
|
||||
id: 'field_block:node:page:field_meta_tags'
|
||||
formatter:
|
||||
label: above
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
type: metatag_empty_formatter
|
||||
additional: { }
|
||||
weight: 2
|
||||
third_party_settings: { }
|
||||
id: node.page.default
|
||||
targetEntityType: node
|
||||
bundle: page
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
label: hidden
|
||||
type: text_default
|
||||
weight: 101
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
field_meta_tags:
|
||||
weight: 102
|
||||
label: above
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
type: metatag_empty_formatter
|
||||
region: content
|
||||
links:
|
||||
weight: 100
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
hidden:
|
||||
layout_builder__layout: true
|
|
@ -0,0 +1,34 @@
|
|||
uuid: 9587fd72-d186-4afb-84d2-c13ca0ae1f24
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- core.entity_view_mode.node.teaser
|
||||
- field.field.node.page.body
|
||||
- field.field.node.page.field_meta_tags
|
||||
- field.field.node.page.layout_builder__layout
|
||||
- node.type.page
|
||||
module:
|
||||
- text
|
||||
- user
|
||||
id: node.page.teaser
|
||||
targetEntityType: node
|
||||
bundle: page
|
||||
mode: teaser
|
||||
content:
|
||||
body:
|
||||
label: hidden
|
||||
type: text_summary_or_trimmed
|
||||
weight: 101
|
||||
settings:
|
||||
trim_length: 600
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
links:
|
||||
weight: 100
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
hidden:
|
||||
field_meta_tags: true
|
||||
layout_builder__layout: true
|
|
@ -0,0 +1,50 @@
|
|||
uuid: 134308d5-6b7b-464e-9e70-ec9e3232fd7a
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.node.post.body
|
||||
- field.field.node.post.field_amendments
|
||||
- field.field.node.post.field_excerpt
|
||||
- field.field.node.post.field_external_link
|
||||
- field.field.node.post.field_has_tweet
|
||||
- field.field.node.post.field_images
|
||||
- field.field.node.post.field_meta_tags
|
||||
- field.field.node.post.field_note
|
||||
- field.field.node.post.field_send_to_social_media
|
||||
- field.field.node.post.field_sent_to_social_media
|
||||
- field.field.node.post.field_series
|
||||
- field.field.node.post.field_tags
|
||||
- node.type.post
|
||||
module:
|
||||
- text
|
||||
- user
|
||||
id: node.post.default
|
||||
targetEntityType: node
|
||||
bundle: post
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
label: hidden
|
||||
type: text_default
|
||||
weight: 1
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
links:
|
||||
weight: 0
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
hidden:
|
||||
field_amendments: true
|
||||
field_excerpt: true
|
||||
field_external_link: true
|
||||
field_has_tweet: true
|
||||
field_images: true
|
||||
field_meta_tags: true
|
||||
field_note: true
|
||||
field_send_to_social_media: true
|
||||
field_sent_to_social_media: true
|
||||
field_series: true
|
||||
field_tags: true
|
|
@ -0,0 +1,46 @@
|
|||
uuid: d9e98a06-87e4-4651-9be0-6b145938323f
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- core.entity_view_mode.node.teaser
|
||||
- field.field.node.post.body
|
||||
- field.field.node.post.field_amendments
|
||||
- field.field.node.post.field_excerpt
|
||||
- field.field.node.post.field_external_link
|
||||
- field.field.node.post.field_has_tweet
|
||||
- field.field.node.post.field_images
|
||||
- field.field.node.post.field_meta_tags
|
||||
- field.field.node.post.field_note
|
||||
- field.field.node.post.field_send_to_social_media
|
||||
- field.field.node.post.field_sent_to_social_media
|
||||
- field.field.node.post.field_series
|
||||
- field.field.node.post.field_tags
|
||||
- node.type.post
|
||||
module:
|
||||
- user
|
||||
id: node.post.teaser
|
||||
targetEntityType: node
|
||||
bundle: post
|
||||
mode: teaser
|
||||
content:
|
||||
field_excerpt:
|
||||
type: basic_string
|
||||
weight: 0
|
||||
region: content
|
||||
label: hidden
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
hidden:
|
||||
body: true
|
||||
field_amendments: true
|
||||
field_external_link: true
|
||||
field_has_tweet: true
|
||||
field_images: true
|
||||
field_meta_tags: true
|
||||
field_note: true
|
||||
field_send_to_social_media: true
|
||||
field_sent_to_social_media: true
|
||||
field_series: true
|
||||
field_tags: true
|
||||
links: true
|
|
@ -0,0 +1,66 @@
|
|||
uuid: 49430cf9-cff9-4c0a-ab40-855b72afa3b9
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.node.talk.body
|
||||
- field.field.node.talk.field_event_date
|
||||
- field.field.node.talk.field_events
|
||||
- field.field.node.talk.field_excerpt
|
||||
- field.field.node.talk.field_meta_tags
|
||||
- field.field.node.talk.field_slides
|
||||
- field.field.node.talk.field_type
|
||||
- field.field.node.talk.field_video
|
||||
- node.type.talk
|
||||
module:
|
||||
- entity_reference_revisions
|
||||
- speakerdeck_field
|
||||
- text
|
||||
- user
|
||||
id: node.talk.default
|
||||
targetEntityType: node
|
||||
bundle: talk
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
label: hidden
|
||||
type: text_default
|
||||
weight: 0
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
field_events:
|
||||
type: entity_reference_revisions_entity_view
|
||||
weight: 3
|
||||
region: content
|
||||
label: above
|
||||
settings:
|
||||
view_mode: default
|
||||
link: ''
|
||||
third_party_settings: { }
|
||||
field_slides:
|
||||
weight: 1
|
||||
label: above
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
type: speakerdeck_formatter
|
||||
region: content
|
||||
field_video:
|
||||
type: entity_reference_entity_view
|
||||
weight: 2
|
||||
label: above
|
||||
settings:
|
||||
view_mode: default
|
||||
link: false
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
links:
|
||||
weight: 4
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
hidden:
|
||||
field_event_date: true
|
||||
field_excerpt: true
|
||||
field_meta_tags: true
|
||||
field_type: true
|
|
@ -0,0 +1,38 @@
|
|||
uuid: a4c102d8-1359-4d9e-90ff-2a92dd35c196
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- core.entity_view_mode.node.teaser
|
||||
- field.field.node.talk.body
|
||||
- field.field.node.talk.field_event_date
|
||||
- field.field.node.talk.field_events
|
||||
- field.field.node.talk.field_excerpt
|
||||
- field.field.node.talk.field_meta_tags
|
||||
- field.field.node.talk.field_slides
|
||||
- field.field.node.talk.field_type
|
||||
- field.field.node.talk.field_video
|
||||
- node.type.talk
|
||||
module:
|
||||
- user
|
||||
id: node.talk.teaser
|
||||
targetEntityType: node
|
||||
bundle: talk
|
||||
mode: teaser
|
||||
content:
|
||||
field_excerpt:
|
||||
type: basic_string
|
||||
weight: 0
|
||||
region: content
|
||||
label: hidden
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
hidden:
|
||||
body: true
|
||||
field_event_date: true
|
||||
field_events: true
|
||||
field_meta_tags: true
|
||||
field_slides: true
|
||||
field_type: true
|
||||
field_video: true
|
||||
links: true
|
|
@ -0,0 +1,80 @@
|
|||
uuid: 9382d377-3f8c-4c9d-8c60-98024c6a9a0a
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.paragraph.event.field_date
|
||||
- field.field.paragraph.event.field_feedback_url
|
||||
- field.field.paragraph.event.field_is_online
|
||||
- field.field.paragraph.event.field_link
|
||||
- field.field.paragraph.event.field_location
|
||||
- field.field.paragraph.event.field_name
|
||||
- field.field.paragraph.event.field_remote
|
||||
- paragraphs.paragraphs_type.event
|
||||
module:
|
||||
- datetime
|
||||
- link
|
||||
id: paragraph.event.default
|
||||
targetEntityType: paragraph
|
||||
bundle: event
|
||||
mode: default
|
||||
content:
|
||||
field_date:
|
||||
weight: 2
|
||||
label: hidden
|
||||
settings:
|
||||
format_type: medium
|
||||
timezone_override: ''
|
||||
third_party_settings: { }
|
||||
type: datetime_default
|
||||
region: content
|
||||
field_is_online:
|
||||
weight: 5
|
||||
label: above
|
||||
settings:
|
||||
format: default
|
||||
format_custom_false: ''
|
||||
format_custom_true: ''
|
||||
third_party_settings: { }
|
||||
type: boolean
|
||||
region: content
|
||||
field_link:
|
||||
weight: 1
|
||||
label: hidden
|
||||
settings:
|
||||
trim_length: 80
|
||||
url_only: false
|
||||
url_plain: false
|
||||
rel: ''
|
||||
target: ''
|
||||
third_party_settings: { }
|
||||
type: link
|
||||
region: content
|
||||
field_location:
|
||||
weight: 4
|
||||
label: hidden
|
||||
settings:
|
||||
link_to_entity: false
|
||||
third_party_settings: { }
|
||||
type: string
|
||||
region: content
|
||||
field_name:
|
||||
weight: 0
|
||||
label: hidden
|
||||
settings:
|
||||
link_to_entity: false
|
||||
third_party_settings: { }
|
||||
type: string
|
||||
region: content
|
||||
field_remote:
|
||||
weight: 3
|
||||
label: hidden
|
||||
settings:
|
||||
format: default
|
||||
format_custom_false: ''
|
||||
format_custom_true: ''
|
||||
third_party_settings: { }
|
||||
type: boolean
|
||||
region: content
|
||||
hidden:
|
||||
field_feedback_url: true
|
|
@ -0,0 +1,33 @@
|
|||
uuid: 173cf160-3536-4f5a-ad40-6cf4fb5a1586
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.paragraph.post_amendment.field_amendment_text
|
||||
- field.field.paragraph.post_amendment.field_date
|
||||
- paragraphs.paragraphs_type.post_amendment
|
||||
module:
|
||||
- datetime
|
||||
- text
|
||||
id: paragraph.post_amendment.default
|
||||
targetEntityType: paragraph
|
||||
bundle: post_amendment
|
||||
mode: default
|
||||
content:
|
||||
field_amendment_text:
|
||||
weight: 1
|
||||
label: visually_hidden
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
type: text_default
|
||||
region: content
|
||||
field_date:
|
||||
weight: 0
|
||||
label: visually_hidden
|
||||
settings:
|
||||
format_type: medium
|
||||
timezone_override: ''
|
||||
third_party_settings: { }
|
||||
type: datetime_default
|
||||
region: content
|
||||
hidden: { }
|
10
old/drupal/config/core.entity_view_mode.block.token.yml
Normal file
10
old/drupal/config/core.entity_view_mode.block.token.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: d61b443b-ebad-49a8-96f5-50bed4ac78ac
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- block
|
||||
id: block.token
|
||||
label: Token
|
||||
targetEntityType: block
|
||||
cache: true
|
|
@ -0,0 +1,12 @@
|
|||
uuid: a431295d-0318-42bd-bd92-8cbf1f8f5b8d
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- block_content
|
||||
_core:
|
||||
default_config_hash: 4tedlMuvQjDOdvHdw86_e-2Rt78aR7TGFMfOK8Ejppg
|
||||
id: block_content.full
|
||||
label: Full
|
||||
targetEntityType: block_content
|
||||
cache: true
|
|
@ -0,0 +1,10 @@
|
|||
uuid: e9af7c8e-dce0-41b0-867f-5dbf77045415
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- block_content
|
||||
id: block_content.token
|
||||
label: Token
|
||||
targetEntityType: block_content
|
||||
cache: true
|
10
old/drupal/config/core.entity_view_mode.file.token.yml
Normal file
10
old/drupal/config/core.entity_view_mode.file.token.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: daec9107-fa1a-4138-9f60-204abc947f54
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- file
|
||||
id: file.token
|
||||
label: Token
|
||||
targetEntityType: file
|
||||
cache: true
|
12
old/drupal/config/core.entity_view_mode.media.full.yml
Normal file
12
old/drupal/config/core.entity_view_mode.media.full.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
uuid: 76c8f11c-e9f7-4a51-aab2-9a41d5e48772
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- media
|
||||
_core:
|
||||
default_config_hash: 6NBUEuGmlkClK8Fb76tSMMpO2eZ4LWCBdbUk4z7CuP0
|
||||
id: media.full
|
||||
label: 'Full content'
|
||||
targetEntityType: media
|
||||
cache: true
|
|
@ -0,0 +1,15 @@
|
|||
uuid: e80d3b1f-2072-483b-af03-fd33e92c17e7
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- media_library
|
||||
module:
|
||||
- media
|
||||
_core:
|
||||
default_config_hash: pkq0uj-IoqEQRBOP_ddUDV0ZJ-dKQ_fLcppsEDF2UO8
|
||||
id: media.media_library
|
||||
label: 'Media library'
|
||||
targetEntityType: media
|
||||
cache: true
|
10
old/drupal/config/core.entity_view_mode.media.token.yml
Normal file
10
old/drupal/config/core.entity_view_mode.media.token.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
uuid: 11727f36-9866-4c62-a086-da66bebd64e7
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- media
|
||||
id: media.token
|
||||
label: Token
|
||||
targetEntityType: media
|
||||
cache: true
|
12
old/drupal/config/core.entity_view_mode.node.full.yml
Normal file
12
old/drupal/config/core.entity_view_mode.node.full.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
uuid: cfbc1fcc-eda7-49c3-98ae-b5df2966ed44
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: ElrtInxGjZd7GaapJ5O9n-ugi2hG2IxFivtgn0tHOsk
|
||||
id: node.full
|
||||
label: 'Full content'
|
||||
targetEntityType: node
|
||||
cache: true
|
12
old/drupal/config/core.entity_view_mode.node.rss.yml
Normal file
12
old/drupal/config/core.entity_view_mode.node.rss.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
uuid: 3cae760b-bbf2-441d-8705-3447a445314c
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: vlYzr-rp2f9NMp-Qlr4sFjlqRq-90mco5-afLNGwCrU
|
||||
id: node.rss
|
||||
label: RSS
|
||||
targetEntityType: node
|
||||
cache: true
|
|
@ -0,0 +1,12 @@
|
|||
uuid: bc2d0a34-6fa2-4f05-b416-1e3c9f837c8f
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: fVFfJv_GzBRE-wpRHbfD5a3VjnhbEOXG6lvRd3uaccY
|
||||
id: node.search_index
|
||||
label: 'Search index'
|
||||
targetEntityType: node
|
||||
cache: true
|
|
@ -0,0 +1,12 @@
|
|||
uuid: d1ef4ab9-348e-4c7c-8c89-6ccffae2292b
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: 6GCOQ-jP2RbdbHA5YWQ6bT8CfGbqrBYKOSC_XY4E3ZM
|
||||
id: node.search_result
|
||||
label: 'Search result highlighting input'
|
||||
targetEntityType: node
|
||||
cache: true
|
12
old/drupal/config/core.entity_view_mode.node.teaser.yml
Normal file
12
old/drupal/config/core.entity_view_mode.node.teaser.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
uuid: 753263c5-4177-4aab-8c09-59988c1bbfe7
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: Mz9qWr1kUYK0mjRAGDsr5XS6PvtZ24en_7ndt-pyWe4
|
||||
id: node.teaser
|
||||
label: Teaser
|
||||
targetEntityType: node
|
||||
cache: true
|
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