Commit f318f4b0 authored by Gorodkov Denis's avatar Gorodkov Denis

Initial commit

parents
sites/*/files
sites/*/private
provision/*/.env
.idea
vendor
docker-runtime
node_modules
!app/
!app/docroot/
app/docroot/*
!app/docroot/favicon.ico
!app/docroot/libraries/
!app/docroot/modules/
app/docroot/modules/*
!app/docroot/modules/custom/
!app/docroot/themes/
app/docroot/themes/*
!app/docroot/themes/custom/
!app/docroot/sites/
app/docroot/sites/*
!app/docroot/sites/prj-settings.inc
!app/docroot/sites/local.services.yml
!app/docroot/sites/default/
app/docroot/sites/default/*
!app/docroot/sites/default/settings.php
!app/docroot/sites/default/drushrc.php
!app/docroot/sites/default/services.yml
image: docker:stable
variables:
DOCKER_BUILDKIT: 1
DOCKER_HOST: tcp://docker:2376
DOCKER_TLS_CERTDIR: "/certs"
services:
- docker:stable-dind
stages:
- build
- deploy
build:
stage: build
only:
- develop
before_script:
- docker login -u ${CI_REGISTRY_USER} -p ${CI_REGISTRY_PASSWORD} ${CI_REGISTRY}
- docker pull ${CI_REGISTRY_IMAGE}/php-fpm-base:latest || true
- docker pull ${CI_REGISTRY_IMAGE}/nginx-base:latest || true
- docker pull ${CI_REGISTRY_IMAGE}/cli-base:latest || true
- docker pull ${CI_REGISTRY_IMAGE}/cli:latest || true
- docker pull ${CI_REGISTRY_IMAGE}/php-fpm:latest || true
- docker pull ${CI_REGISTRY_IMAGE}/nginx:latest || true
- docker build --build-arg BUILDKIT_INLINE_CACHE=1 --cache-from ${CI_REGISTRY_IMAGE}/cli-base:latest --cache-from ${CI_REGISTRY_IMAGE}/php-fpm-base:latest --target cli-base -t ${CI_REGISTRY_IMAGE}/cli-base:latest .
- docker build --build-arg BUILDKIT_INLINE_CACHE=1 --cache-from ${CI_REGISTRY_IMAGE}/php-fpm-base:latest --target php-fpm-base -t ${CI_REGISTRY_IMAGE}/php-fpm-base:latest .
- docker build --build-arg BUILDKIT_INLINE_CACHE=1 --cache-from ${CI_REGISTRY_IMAGE}/nginx-base:latest --target nginx-base -t ${CI_REGISTRY_IMAGE}/nginx-base:latest .
- docker push ${CI_REGISTRY_IMAGE}/nginx-base:latest
- docker push ${CI_REGISTRY_IMAGE}/php-fpm-base:latest
- docker push ${CI_REGISTRY_IMAGE}/cli-base:latest
script:
- docker build --build-arg BUILDKIT_INLINE_CACHE=1 --cache-from ${CI_REGISTRY_IMAGE}/cli-base:latest --cache-from ${CI_REGISTRY_IMAGE}/php-fpm-base:latest --cache-from ${CI_REGISTRY_IMAGE}/cli:latest --target cli -t ${CI_REGISTRY_IMAGE}/cli:${CI_COMMIT_SHA} -t ${CI_REGISTRY_IMAGE}/cli:latest .
- docker build --build-arg BUILDKIT_INLINE_CACHE=1 --cache-from ${CI_REGISTRY_IMAGE}/php-fpm-base:latest --cache-from ${CI_REGISTRY_IMAGE}/php-fpm:latest --target php-fpm -t ${CI_REGISTRY_IMAGE}/php-fpm:${CI_COMMIT_SHA} -t ${CI_REGISTRY_IMAGE}/php-fpm:latest .
- docker build --build-arg BUILDKIT_INLINE_CACHE=1 --cache-from ${CI_REGISTRY_IMAGE}/nginx-base:latest --cache-from ${CI_REGISTRY_IMAGE}/nginx:latest --target nginx -t ${CI_REGISTRY_IMAGE}/nginx:${CI_COMMIT_SHA} -t ${CI_REGISTRY_IMAGE}/nginx:latest .
- docker push ${CI_REGISTRY_IMAGE}/nginx:${CI_COMMIT_SHA}
- docker push ${CI_REGISTRY_IMAGE}/nginx:latest
- docker push ${CI_REGISTRY_IMAGE}/php-fpm:${CI_COMMIT_SHA}
- docker push ${CI_REGISTRY_IMAGE}/php-fpm:latest
- docker push ${CI_REGISTRY_IMAGE}/cli:${CI_COMMIT_SHA}
- docker push ${CI_REGISTRY_IMAGE}/cli:latest
deploy:
stage: deploy
only:
- develop
before_script:
- 'command -v ssh-agent >/dev/null || ( apt-get update -y && apt-get install openssh-client -y )'
- eval $(ssh-agent -s)
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
- ssh-keyscan -p ${DEV_SSH_PORT} ${DEV_SSH_HOST} > ~/.ssh/known_hosts
- chmod 644 ~/.ssh/known_hosts
script:
- ssh -p${DEV_SSH_PORT} ${DEV_SSH_USER}@${DEV_SSH_HOST} "export CODE_VERSION=${CI_COMMIT_SHA} && cd ${DEV_PROVISION_PATH} && docker-compose up -d && docker-compose exec -T -w /var/www/html/docroot cli drush cr && docker-compose exec -T -w /var/www/html/docroot cli drush updb -y && docker-compose exec -T -w /var/www/html/docroot cli drush cim -y && docker-compose exec -T -w /var/www/html/docroot cli drush cr"
# Rules and conditions to development process
1. Read the [README.md](README.md) first.
## Basic rules
1. Develop the functionality not under the administrator and check under the anonymous.
2. Use [services and dependency injection](https://www.drupal.org/docs/8/api/services-and-dependency-injection/services-and-dependency-injection-in-drupal-8) in own modules.
3. Always wrap text in templates with translation twig function `{{ 'text'|t }}`.
4. Use [twig](https://www.drupal.org/docs/8/theming/twig) functions in templates instead of preprocess hooks in theme.
5. ...
## Development flow
1. Start your work from `develop` branch.
2. Every `feature`, `task`, `bug` and `hotfix` must be forked in own branch named with their number in task manager. `task-223344`, for example.
3. ...
## Useful links
- [Drupal 8 project initialization (RU)](https://sites.google.com/a/i20.biz/i20-terrim/cod-holding/standards/development/specializirovannye-standarty/drupal-8-razrabotka/inicializacia-proekta).
- [Using composer with Drupal 8 (RU)](https://sites.google.com/a/i20.biz/i20-terrim/cod-holding/standards/development/specializirovannye-standarty/drupal-8-razrabotka/ispolzovanie-composer).
## Best practices in Drupal 8 Development (Links)
- [DRUPAL 8 DEVELOPMENT BEST PRACTICES By Greg Boggs](http://www.gregboggs.com/drupal-development-best-practices/).
- [WONDROUS Drupal 8 Best Practice 2016](https://github.com/WondrousLLC/drupal-8-best-practices).
- [DRUPAL 8 BREADCRUMBS - ADD THE CURRENT PAGE](http://www.gregboggs.com/drupal8-breadcrumbs/).
- ...
### Task completion checklist
- [ ] I have exported configuration and added it to the project.
- [ ] My code did not spawn an invalid layout.
- [ ] My code corresponds to code-style, all debugging is removed, all TODO are applied.
- [ ] Browser console don't have JS errors and debug info.
- [ ] Your code works in other browsers like FF and IE.
- [ ] Think about the time of the tester! Describe how-to test your task.
## Project specific rules
*This part of document should be added by TL of project.*
See below as example:
### Working with theme and templates
1. Project use static assets (css, js, images, libraries) and html-code prepared by FE-team. All of these generate into `<theme_path>/bundles/` folder by `make build-html` command using Makefile from project root folder.
- Use generated html as a base for theme templates.
- Describe all libraries and css in THEME.libraries file.
FROM nginx:1.16-alpine as nginx-base
RUN apk add --no-cache bash
COPY provision/docker-images/nginx/nginx.conf /etc/nginx/nginx.conf
COPY provision/docker-images/nginx/vhost.conf /opt/vhost.conf
COPY provision/docker-images/nginx/docker-entrypoint.sh /usr/local/bin/
RUN chown -R nginx:0 /var/cache/nginx && \
chmod -R g+w /var/cache/nginx && \
chown -R nginx:0 /etc/nginx && \
chmod -R g+w /etc/nginx
EXPOSE 8080
STOPSIGNAL SIGTERM
USER nginx
ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]
CMD ["nginx"]
FROM php:7.4.12-fpm-alpine3.12 as php-fpm-base
# Use the default production configuration
RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
RUN set -xe; \
apk add --update --no-cache -t .php-run-deps \
bash \
freetype \
icu-libs \
libbz2 \
libevent \
libjpeg-turbo \
libjpeg-turbo-utils \
libmcrypt \
libpng \
libuuid \
libwebp \
libxml2 \
libxslt \
libzip \
yaml && \
apk add --update --no-cache -t .php-build-deps \
g++ \
make \
autoconf \
libzip-dev \
icu-dev \
bzip2-dev \
freetype-dev \
libmcrypt-dev \
jpeg-dev \
libjpeg-turbo-dev \
libpng-dev \
libwebp-dev \
unixodbc-dev \
yaml-dev && \
curl -O https://download.microsoft.com/download/e/4/e/e4e67866-dffd-428c-aac7-8d28ddafb39b/msodbcsql17_17.6.1.1-1_amd64.apk && \
apk add --allow-untrusted msodbcsql17_17.6.1.1-1_amd64.apk; \
curl -O https://download.microsoft.com/download/e/4/e/e4e67866-dffd-428c-aac7-8d28ddafb39b/mssql-tools_17.6.1.1-1_amd64.apk && \
apk add --allow-untrusted mssql-tools_17.6.1.1-1_amd64.apk; \
rm ./*.apk; \
docker-php-ext-install \
bcmath \
bz2 \
calendar \
exif \
intl \
mysqli \
opcache \
pcntl \
pdo_mysql \
zip; \
if [[ "${PHP_VERSION:0:3}" == "7.4" ]]; then \
docker-php-ext-configure gd \
--with-webp \
--with-freetype \
--with-jpeg; \
else \
docker-php-ext-configure gd \
--with-gd \
--with-webp-dir \
--with-freetype-dir=/usr/include/ \
--with-png-dir=/usr/include/ \
--with-jpeg-dir=/usr/include/; \
fi; \
NPROC=$(getconf _NPROCESSORS_ONLN) && \
docker-php-ext-install "-j${NPROC}" gd && \
pecl channel-update pecl.php.net && \
pecl install yaml-2.1.0 \
pdo_sqlsrv-5.8.1 \
sqlsrv-5.8.1 \
mcrypt-1.0.3 && \
docker-php-ext-enable yaml \
pdo_sqlsrv \
sqlsrv \
mcrypt && \
apk del --purge .php-build-deps && \
rm -rf \
/usr/src/php/ext/ast \
/usr/src/php/ext/uploadprogress \
/usr/include/php \
/usr/lib/php/build \
/tmp/* \
/root/.composer \
/var/cache/apk/*
USER www-data
FROM php-fpm-base as cli-base
USER root
RUN apk add --update --no-cache -t .build-deps \
git \
openssh-client \
ca-certificates \
patch \
mariadb-client
RUN wget -qO- https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer --version=1.10.16
RUN drush_launcher_url="https://github.com/drush-ops/drush-launcher/releases/download/0.6.0/drush.phar"; \
wget -O drush.phar "${drush_launcher_url}"; \
chmod +x drush.phar; \
mv drush.phar /usr/local/bin/drush
USER www-data
WORKDIR /var/www/html
ENTRYPOINT ["/bin/bash", "-c"]
CMD ["tail -f /dev/null"]
FROM cli-base as builder
COPY app/composer.json app/composer.lock /var/www/html/
COPY app/patches /var/www/html/patches
COPY app /var/www/html
FROM nginx-base as nginx
COPY --from=builder --chown=root:root /var/www/html/docroot /var/www/html/docroot
FROM php-fpm-base as php-fpm
COPY --from=builder --chown=root:root /var/www/html /var/www/html
FROM cli-base as cli
COPY --from=builder --chown=root:root /var/www/html /var/www/html
FROM php-fpm-base as php-fpm-local
USER root
RUN apk add --update --no-cache -t .php-build-deps \
g++ \
make \
autoconf && \
pecl install xdebug-2.9.8 && \
apk del --purge .php-build-deps && \
rm -rf \
/usr/src/php/ext/ast \
/usr/src/php/ext/uploadprogress \
/usr/include/php \
/usr/lib/php/build \
/tmp/* \
/root/.composer \
/var/cache/apk/*
COPY provision/docker-images/php-fpm-local/docker-entrypoint.sh /usr/local/bin/
ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]
CMD ["php-fpm"]
FROM cli-base as cli-local
USER root
COPY provision/docker-images/cli-local/docker-entrypoint.sh /usr/local/bin/
ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]
CMD ["tail","-f","/dev/null"]
# Composer template for Drupal projects
## Usage
### Project initialization
1. [Install docker](https://git.i20.biz/drupaljedi/localenv).
1. Clone the project: `git clone git@git.i20.biz:drupaljedi/project-template.git -b 9.x <project_name>`
1. Enter to the created project directory: `cd <project_name>`
1. Remove the old git repo: `rm -rf .git`
1. cd provision/local
1. cp ../.env.example ./.env
1. Edit .env file. Replace all entries of "project_name" with proper project name.
1. Optionally run "sudo gedit /etc/hosts". Add row 127.0.0.1 project_name.loc. But normally latest localenv leads all .loc domains to 127.0.0.1
1. Make sure that network is up in localenv project.
1. docker-compose up -d
1. sudo cp ../settings.inc.example ./docker-runtime/php-settings/project_name-settings.inc. "project_name" is the name of your project.
1. Create folder app/docroot/sites/default/files
1. chown -R 82:82 app/docroot/sites/default/files
1. run "docker-compose exec --user 1000 cli /bin/bash" from the provision/local folder.
1. run "composer install"
1. Edit sites/default/settings.php. Make sure there is proper path to the settings file specified in point 11.
1. Edit sites/prj-settings.inc. Replace all entries of "project_name" with your project name.
1. visit site by url http://project_name.loc
1. Install using "Import DrupalJedi configuration" (not standard)
### Joining to the existing project
1. [Install docker](https://git.i20.biz/drupaljedi/localenv).
1. Clone the your project
1. Execute the `make join project_name=example` command to join the project.
## What does the template do?
When installing the given `composer.json` some tasks are taken care of:
* Drupal will be installed in the `docroot`-directory.
* Autoloader is implemented to use the generated composer autoloader in `vendor/autoload.php`,
instead of the one provided by Drupal (`drupal/vendor/autoload.php`).
* Modules (packages of type `drupal-module`) will be placed in `docroot/modules/contrib/`
* Theme (packages of type `drupal-theme`) will be placed in `docroot/themes/contrib/`
* Profiles (packages of type `drupal-profile`) will be placed in `docroot/profiles/contrib/`
* Libraries (packages of type `drupal-library`) will be placed in `docroot/libraries/`
## Updating Drupal Core
This project will attempt to keep all of your Drupal Core files up-to-date; the
project [drupal-composer/drupal-scaffold](https://github.com/drupal-composer/drupal-scaffold)
is used to ensure that your scaffold files are updated every time drupal/core is
updated. If you customize any of the "scaffolding" files (commonly .htaccess),
you may need to merge conflicts if any of your modified files are updated in a
new release of Drupal core.
Follow the steps below to update your core files.
1. Run `composer update` to update Drupal core, contrib modules and its dependencies.
1. Run `git diff` to determine if any of the scaffolding files have changed.
Review the files for any changes and restore any customizations to
`.htaccess` or `robots.txt`.
1. Commit everything all together in a single commit, so `docroot` will remain in
sync with the `core` when checking out branches or running `git bisect`.
## CI Initialization
To initialize CI you need to:
1. Replace the placeholders in `tools/config.yml` file and check other settings in that file.
1. Check the configuration inside `tools/pipeline.j2` file.
1. Ask your STO to finish the initialization.
## FAQ
### How can I apply patches to downloaded modules?
To add a patch to drupal module foobar insert the patches section in the extra
section of composer.json:
```json
"extra": {
"patches": {
"drupal/foobar": {
"Patch description": "URL to patch"
}
}
}
```
# Drupal editor configuration normalization
# @see http://editorconfig.org/
# This is the top-most .editorconfig file; do not search in parent directories.
root = true
# All files.
[*]
end_of_line = LF
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[composer.{json,lock}]
indent_size = 4
# Drupal git normalization
# @see https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
# @see https://www.drupal.org/node/1542048
# Normally these settings would be done with macro attributes for improved
# readability and easier maintenance. However macros can only be defined at the
# repository root directory. Drupal avoids making any assumptions about where it
# is installed.
# Define text file attributes.
# - Treat them as text.
# - Ensure no CRLF line-endings, neither on checkout nor on checkin.
# - Detect whitespace errors.
# - Exposed by default in `git diff --color` on the CLI.
# - Validate with `git diff --check`.
# - Deny applying with `git apply --whitespace=error-all`.
# - Fix automatically with `git apply --whitespace=fix`.
*.config text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.css text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.dist text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.engine text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php
*.html text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=html
*.inc text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php
*.install text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php
*.js text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.json text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.lock text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.map text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.md text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.module text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php
*.php text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php
*.po text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.profile text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php
*.script text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.sh text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php
*.sql text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.svg text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.theme text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php
*.twig text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.txt text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.xml text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
*.yml text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
# Define binary file attributes.
# - Do not treat them as text.
# - Include binary diff in patches instead of "binary files differ."
*.eot -text diff
*.exe -text diff
*.gif -text diff
*.gz -text diff
*.ico -text diff
*.jpeg -text diff
*.jpg -text diff
*.otf -text diff
*.phar -text diff
*.png -text diff
*.svgz -text diff
*.ttf -text diff
*.woff -text diff
*.woff2 -text diff
{
"name": "drupaljedi/project",
"description": "Project template for Drupal 9 projects with composer",
"type": "project",
"license": "GPL-2.0+",
"authors": [
{
"name": "",
"role": ""
}
],
"require": {
"php": ">=7.3.0",
"composer/installers": "^1.2",
"cweagans/composer-patches": "^1.6",
"drupal/admin_toolbar": "^3.1",
"drupal/backup_migrate": "^5.0",
"drupal/better_exposed_filters": "^5.0",
"drupal/config_ignore": "^2.3",
"drupal/config_pages": "^2.9",
"drupal/core": "^9.1",
"drupal/core-composer-scaffold": "^9",
"drupal/devel": "^4.1",
"drupal/devel_php": "^1.5",
"drupal/entityreference_filter": "^1.4",
"drupal/facets": "^2.0",
"drupal/field_group": "^3.2",
"drupal/fontawesome_menu_icons": "^1.9",
"drupal/media_library_block": "^1.0",
"drupal/media_library_form_element": "^2.0",
"drupal/metatag": "^1.19",
"drupal/module_filter": "^3.2",
"drupal/paragraphs": "^1.14",
"drupal/pathauto": "^1.10",
"drupal/queue_ui": "^3.0",
"drupal/quick_node_clone": "^1.14",
"drupal/rabbit_hole": "^1.0@beta",
"drupal/recaptcha": "^3.0",
"drupal/redirect": "^1.7",
"drupal/search_api": "^1.23",
"drupal/search_api_autocomplete": "^1.6",
"drupal/search_api_exclude": "^2.0",
"drupal/shariff": "^1.7",
"drupal/simple_sitemap": "^4.1",
"drupal/smtp": "^1.0",
"drupal/twig_field_value": "^2.0",
"drupal/twig_tweak": "^3.1",
"drupal/ultimate_cron": "^2.0@alpha",
"drupal/verf": "^1.0",
"drupal/views_infinite_scroll": "^2.0",
"drupal/webform": "^6.1",
"drush/drush": "^10.3",
"hirak/prestissimo": "^0.3.7",
"webflo/drupal-finder": "^0|^1.0.0",
"wikimedia/composer-merge-plugin": "^1.4",
"zaporylie/composer-drupal-optimizations": "^1.1"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"discard-changes": true
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"scripts": {
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"post-install-cmd": [
"bash -c 'composer drupal-scaffold'"
],
"post-update-cmd": [
"bash -c 'composer drupal-scaffold'"
]
},
"extra": {
"installer-types": ["bower-asset", "npm-asset"],
"installer-paths": {
"docroot/core": ["type:drupal-core"],
"docroot/libraries/{$name}": ["type:drupal-library", "type:bower-asset", "type:npm-asset"],
"docroot/modules/contrib/{$name}": ["type:drupal-module"],
"docroot/modules/custom/{$name}": ["type:drupal-custom-module"],
"docroot/profiles/contrib/{$name}": ["type:drupal-profile"],
"docroot/themes/contrib/{$name}": ["type:drupal-theme"],
"docroot/themes/custom/{$name}": ["type:drupal-custom-theme"]
},
"merge-plugin": {
"require": []
},
"drupal-scaffold": {
"locations": {
"web-root": "./docroot"
}
}
}
}
This diff is collapsed.
# 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_php5.c>
php_flag engine off
</IfModule>
\ No newline at end of file
This directory contains configuration to be imported into your Drupal site. To make this configuration active, visit admin/config/development/configuration/sync. For information about deploying configuration between servers, see https://www.drupal.org/documentation/administer/config
\ No newline at end of file
_core:
default_config_hash: jvTSppzcgH5wnzBhX5xnAExcp2I1CzkQ_aky65XNfYI
langcode: ru
menu_depth: 4
_core:
default_config_hash: KF64Wh_DTqvvcH9nGm0bPcSwuigIFrakaPHHpGqaXiU
langcode: ru
max_bundle_number: 20
hoverintent_functionality: true
_core:
default_config_hash: fUksROt4FfkAU9BV4hV2XvhTBSS2nTNrZS4U7S-tKrs
langcode: ru
interval: 10800
uuid: cecf0104-c061-4200-8d72-bf3fcd2d2a38
langcode: ru
status: true
dependencies:
config:
- system.menu.account
module:
- system
theme:
- bartik
_core:
default_config_hash: jzu74Q7R0QWgw8IniA9HZRSb_a8RPak1M0q5J-VGkZI
id: bartik_account_menu
theme: bartik
region: secondary_menu
weight: 0
provider: null
plugin: 'system_menu_block:account'
settings:
id: 'system_menu_block:account'
label: 'User account menu'
label_display: '0'
provider: system
level: 1
depth: 1
expand_all_items: false
visibility: { }
uuid: 2dcb3848-c97f-42f6-ac91-6424af7debc6
langcode: ru
status: true
dependencies:
module:
- system
theme:
- bartik
_core:
default_config_hash: d-0emr1mEq7sFKDu5RHUJckvNk62hvIZdRwPEfnJyGg
id: bartik_branding
theme: bartik
region: header
weight: 0
provider: null
plugin: system_branding_block
settings:
id: system_branding_block
label: 'Site branding'
label_display: '0'
provider: system
use_site_logo: true
use_site_name: true
use_site_slogan: true
visibility: { }
uuid: e27a331c-31ea-4657-a017-d33ef91ad762
langcode: ru
status: true
dependencies:
module:
- system
theme:
- bartik
_core:
default_config_hash: y0bXRvKYQQKkf_RVxA3aOPGpIfKKsDOzzrWYCgjxJ9Y
id: bartik_breadcrumbs
theme: bartik
region: breadcrumb
weight: 0
provider: null
plugin: system_breadcrumb_block
settings:
id: system_breadcrumb_block
label: Breadcrumbs
label_display: '0'
provider: system
visibility: { }
uuid: be81a379-d208-4942-b78f-31b89b0cf978
langcode: ru
status: true
dependencies:
module:
- system
theme:
- bartik
_core:
default_config_hash: kigu8pTxXt1qGR2NJ5HHdC4G2G1wsDrIjLPKBT5wUBc
id: bartik_content
theme: bartik
region: content
weight: -4
provider: null
plugin: system_main_block
settings:
id: system_main_block
label: 'Main page content'
label_display: '0'
provider: system
visibility: { }
uuid: b639fcd3-7e77-4de7-ba8f-fde2a729c296
langcode: ru
status: true
dependencies:
config:
- system.menu.footer
module:
- system
theme:
- bartik
_core:
default_config_hash: pnCK21YFjH7iB4XDeokSq3N3XSr6qX8BsqMs9nmip6E
id: bartik_footer
theme: bartik
region: footer_fifth
weight: 0
provider: null
plugin: 'system_menu_block:footer'
settings:
id: 'system_menu_block:footer'
label: 'Footer menu'
label_display: '0'
provider: system
level: 1
depth: 0
expand_all_items: false
visibility: { }
uuid: 139a850a-e90c-45da-8abd-a91577037c8e
langcode: ru
status: true
dependencies:
module:
- help
theme:
- bartik
_core:
default_config_hash: '-laWx8WA-ikiIEH3NJQ0hVbjqk3iEuBms91LB0B4IQU'
id: bartik_help
theme: bartik
region: content
weight: -6
provider: null
plugin: help_block
settings:
id: help_block
label: Help
label_display: '0'
provider: help
visibility: { }
uuid: 0b863c83-7b05-4001-9e45-9eb1ff558ad0
langcode: ru
status: true
dependencies:
theme:
- bartik
_core:
default_config_hash: XRdb8LpbArVA6CpuuEZxzi50JIdjsJaCCZ5o3fH0Blk
id: bartik_local_actions
theme: bartik
region: content
weight: -5
provider: null
plugin: local_actions_block
settings:
id: local_actions_block
label: 'Primary admin actions'
label_display: '0'
provider: core
visibility: { }
uuid: 903bc349-f2e1-4a29-8b53-8692172a58f7
langcode: ru
status: true
dependencies:
theme:
- bartik
_core:
default_config_hash: Qf2BoIzd9py5AYXZj8fJzCYDyVk1-AWXcu-AqQeDZKA
id: bartik_local_tasks
theme: bartik
region: content
weight: -7
provider: null
plugin: local_tasks_block
settings:
id: local_tasks_block
label: Tabs
label_display: '0'
provider: core
primary: true
secondary: true
visibility: { }
uuid: 26b2b09b-0ff9-40aa-96b9-46642f746adf
langcode: ru
status: true
dependencies:
config:
- system.menu.main
module:
- system
theme:
- bartik
_core:
default_config_hash: _G1IfGESk7WqvVCi7B3VJxhSY0YICgv1OmuVPJqO8bE
id: bartik_main_menu
theme: bartik
region: primary_menu
weight: 0
provider: null
plugin: 'system_menu_block:main'
settings:
id: 'system_menu_block:main'
label: 'Main navigation'
label_display: '0'
provider: system
level: 1
depth: 1
expand_all_items: false
visibility: { }
uuid: c984e31c-6334-47a1-8965-53e84ab1f2dc
langcode: ru
status: true
dependencies:
module:
- system
theme:
- bartik
_core:
default_config_hash: KC12e0aosUnBBs5bd374JVcQjJaFNOSIHzu0dUGf22o
id: bartik_messages
theme: bartik
region: highlighted
weight: 0
provider: null
plugin: system_messages_block
settings:
id: system_messages_block
label: 'Status messages'
label_display: '0'
provider: system
visibility: { }
uuid: 316e3b74-8ee4-42a7-af26-241bb05ddd4c
langcode: ru
status: true
dependencies:
theme:
- bartik
_core:
default_config_hash: ItFhhiUOoeR7oIq73ZaCV7PAYrOwXZ-9fazMzF5DJXM
id: bartik_page_title
theme: bartik
region: content
weight: -9
provider: null
plugin: page_title_block
settings:
id: page_title_block
label: 'Page title'
label_display: '0'
provider: core
visibility: { }
uuid: e0f65dcc-3c8d-4eff-875d-d3fa625dd931
langcode: ru
status: true
dependencies:
module:
- system
theme:
- bartik
_core:
default_config_hash: I6Esh8cDlPdl2POZg4MOSRUrQNYA1UNCJCxL2yqT_wc
id: bartik_powered
theme: bartik
region: footer_fifth
weight: 10
provider: null
plugin: system_powered_by_block
settings:
id: system_powered_by_block
label: 'Powered by Drupal'
label_display: '0'
provider: system
visibility: { }
uuid: 6bc43aab-0045-4a43-a2fa-90048b67910f
langcode: ru
status: false
dependencies:
config:
- system.menu.tools
module:
- system
theme:
- bartik
_core:
default_config_hash: TszJ7dH_11Qjmo_OpMzqznaED4Bvy1XfVnBzTC9LZXE
id: bartik_tools
theme: bartik
region: sidebar_first
weight: 0
provider: null
plugin: 'system_menu_block:tools'
settings:
id: 'system_menu_block:tools'
label: Tools
label_display: visible
provider: system
level: 1
depth: 0
expand_all_items: false
visibility: { }
uuid: 6818e068-c0d5-46ea-9c37-bb739596df1a
langcode: en
status: true
dependencies:
config:
- facets.facet.hair_color
module:
- facets
- system
theme:
- bartik
id: hair_color
theme: bartik
region: sidebar_first
weight: 0
provider: null
plugin: 'facet_block:hair_color'
settings:
id: 'facet_block:hair_color'
label: 'Hair color'
label_display: visible
provider: facets
context_mapping: { }
block_id: hair_color
visibility:
request_path:
id: request_path
negate: false
pages: /search/people
uuid: 9ce51623-9de5-4427-9d81-0811cd3014bf
langcode: en
status: true
dependencies:
config:
- facets.facet.height
module:
- facets
- system
theme:
- bartik
id: height
theme: bartik
region: sidebar_first
weight: 0
provider: null
plugin: 'facet_block:height'
settings:
id: 'facet_block:height'
label: Height
label_display: visible
provider: facets
context_mapping: { }
block_id: height
visibility:
request_path:
id: request_path
negate: false
pages: /search/people
uuid: 3e1351d7-5fca-4c8c-b076-4f1fe5a38064
langcode: en
status: true
dependencies:
config:
- facets.facet.mass
module:
- facets
- system
theme:
- bartik
id: mass
theme: bartik
region: sidebar_first
weight: 0
provider: null
plugin: 'facet_block:mass'
settings:
id: 'facet_block:mass'
label: Mass
label_display: visible
provider: facets
context_mapping: { }
block_id: mass
visibility:
request_path:
id: request_path
negate: false
pages: /search/people
uuid: 808c2b08-4ba6-466a-a4d6-b572f8d923ca
langcode: ru
status: true
dependencies:
module:
- system
theme:
- seven
_core:
default_config_hash: 2rIN97Rd7-rjv3P4h0-xrZnAgPJHyXFEwrB--sS2_qE
id: seven_breadcrumbs
theme: seven
region: breadcrumb
weight: 0
provider: null
plugin: system_breadcrumb_block
settings:
id: system_breadcrumb_block
label: Breadcrumbs
label_display: '0'
provider: system
visibility: { }
uuid: cb3e0415-16ad-4767-9168-7214d709e4a7
langcode: ru
status: true
dependencies:
module:
- system
theme:
- seven
_core:
default_config_hash: 6_eJxtyfANKFE_nfriHKgrARRIPHH88sI6jvQ4EHbBc
id: seven_content
theme: seven
region: content
weight: 0
provider: null
plugin: system_main_block
settings:
id: system_main_block
label: 'Main page content'
label_display: '0'
provider: system
visibility: { }
uuid: 8a4cffca-886e-4b3a-a876-2ecda9fc0760
langcode: ru
status: true
dependencies:
module:
- help
theme:
- seven
_core:
default_config_hash: bYvyEzJ7UcmjXZAYLxb4Qb_J77K9bPbk4ealdap31FY
id: seven_help
theme: seven
region: help
weight: 0
provider: null
plugin: help_block
settings:
id: help_block
label: Help
label_display: '0'
provider: help
visibility: { }
uuid: 41731bd3-21de-4bbc-9f48-91377b55d726
langcode: ru
status: true
dependencies:
theme:
- seven
_core:
default_config_hash: gv5JXTvQXjlMY6PXrfxzcLMjMg4074WiEQCy7ZSMvK4
id: seven_local_actions
theme: seven
region: content
weight: -10
provider: null
plugin: local_actions_block
settings:
id: local_actions_block
label: 'Primary admin actions'
label_display: '0'
provider: core
visibility: { }
uuid: 9408472d-0c1b-43e1-a1e3-4ac9d3f7dfaf
langcode: ru
status: true
dependencies:
module:
- system
theme:
- seven
_core:
default_config_hash: bZvFlENVti4PpqT6kqoC86B5_lXp6aE-d4nrvLMU4CY
id: seven_messages
theme: seven
region: highlighted
weight: 0
provider: null
plugin: system_messages_block
settings:
id: system_messages_block
label: 'Status messages'
label_display: '0'
provider: system
visibility: { }
uuid: b31bb3fa-3906-456d-8a41-8fff9c5141a5
langcode: ru
status: true
dependencies:
theme:
- seven
_core:
default_config_hash: P-2PK2v3yJQRI4Mg1RqKQ0Ki0wP_UUErIvahd_MtMVc
id: seven_page_title
theme: seven
region: header
weight: -30
provider: null
plugin: page_title_block
settings:
id: page_title_block
label: 'Page title'
label_display: '0'
provider: core
visibility: { }
uuid: 4d52053b-a6ee-483c-8798-eca82b0273fc
langcode: ru
status: true
dependencies:
theme:
- seven
_core:
default_config_hash: ouwsNHI1V3bwV1G1vl0EcbWy8AB9V62vgLOSjTpoCSI
id: seven_primary_local_tasks
theme: seven
region: header
weight: 0
provider: null
plugin: local_tasks_block
settings:
id: local_tasks_block
label: 'Главные вкладки'
label_display: '0'
provider: core
primary: true
secondary: false
visibility: { }
uuid: b92c9335-2ca6-421c-a9dc-96e275d7130b
langcode: ru
status: true
dependencies:
theme:
- seven
_core:
default_config_hash: W8ripr8GQI0o3eaaD7lcd4687nUrcHoYdu4yIjzVN3o
id: seven_secondary_local_tasks
theme: seven
region: pre_content
weight: 0
provider: null
plugin: local_tasks_block
settings:
id: local_tasks_block
label: 'Secondary tabs'
label_display: '0'
provider: core
primary: false
secondary: true
visibility: { }
uuid: d318f9ca-50ba-43a8-9bbf-9c8c91813aef
langcode: en
status: true
dependencies:
config:
- facets.facet.skin_color
module:
- facets
- system
theme:
- bartik
id: skin_color
theme: bartik
region: sidebar_first
weight: 0
provider: null
plugin: 'facet_block:skin_color'
settings:
id: 'facet_block:skin_color'
label: 'Skin color'
label_display: visible
provider: facets
context_mapping: { }
block_id: skin_color
visibility:
request_path:
id: request_path
negate: false
pages: /search/people
uuid: c445853a-a4f7-4ef6-949c-799417a5c51e
langcode: en
status: true
dependencies:
config:
- facets.facet.starships_content_title
module:
- facets
- system
theme:
- bartik
id: starshipscontenttitle
theme: bartik
region: sidebar_first
weight: 0
provider: null
plugin: 'facet_block:starships_content_title'
settings:
id: 'facet_block:starships_content_title'
label: Starships
label_display: visible
provider: facets
context_mapping: { }
block_id: starshipscontenttitle
visibility:
request_path:
id: request_path
negate: false
pages: /search/people
uuid: d2bb9791-f0ce-4f1d-a85e-c9fba89ffaaa
langcode: ru
status: true
dependencies: { }
_core:
default_config_hash: zglzjmYxi0G0ag9MZ02y0LSJOdpWRwJxyP_OvFojFyo
id: basic
label: 'Базовый блок'
revision: 0
description: 'Базовый блок, содержащий заголовок и текст.'
_core:
default_config_hash: YNUW2Ij5uE7a4oaXp3i_2lvaFdYM1zNKPPfnEjB0jEc
langcode: ru
log_ip_addresses: false
uuid: 215773e5-951b-46c4-b372-51bf42a4b337
langcode: ru
status: true
dependencies: { }
_core:
default_config_hash: bqZsN31T2n0UjcbyCpOPi9D2iO0sAOHR7FnEs9qMvaA
id: comment
label: 'Комментарии по умолчанию'
target_entity_type_id: node
description: 'Позволить комментирование материалов'
uuid: a3f08c21-b421-4106-b423-81840e0c22fe
langcode: ru
status: true
dependencies: { }
_core:
default_config_hash: vymHlgJy26BuI5GGj9-IXjwR3dRC5C0tij4BpWJnoqw
id: feedback
label: 'Обратная связь с сайтом'
recipients:
- gorodkov.d@drupalsib.ru
reply: ''
weight: 0
message: 'Ваше сообщение отправлено.'
redirect: ''
uuid: 32df1540-0682-41d4-be3d-6cf7d914f385
langcode: ru
status: true
dependencies: { }
_core:
default_config_hash: jonvgt3CkUM2eMLTFwWfHileWWDC4YtXCuIlCahTk_I
id: personal
label: 'Персональная контактная форма'
recipients: { }
reply: ''
weight: 0
message: 'Ваше сообщение отправлено.'
redirect: ''
_core:
default_config_hash: U69DBeuvXuNVOC15rVNaBjDPK2fWFbo9v4takdYSSO8
langcode: ru
default_form: feedback
flood:
limit: 5
interval: 3600
user_default_enabled: true
uuid: cb141e75-c233-4b8e-bb0f-35d5fed6f347
langcode: ru
status: true
dependencies:
config:
- node.type.page
_core:
default_config_hash: fPUEnm4T5zfZRr3ttDUqq7yCDd2uW3clWD-pvos4tlQ
id: node.page.promote
field_name: promote
entity_type: node
bundle: page
label: 'Помещено на главную страницу'
description: ''
required: false
translatable: false
default_value:
-
value: 0
default_value_callback: ''
settings:
on_label: Вкл
off_label: Выкл
field_type: boolean
uuid: bf80e03a-2672-456f-b9dc-3ffe5b6f705a
langcode: ru
status: true
dependencies: { }
_core:
default_config_hash: 7klS5IWXrwzVaPpYZFAs6wcx8U2FF1X73OfrtTsvuvE
id: fallback
label: 'Резервный формат даты'
locked: true
pattern: 'D, m/d/Y - H:i'
uuid: aa36185f-4e46-426d-9384-8d3acf17ee32
langcode: ru
status: true
dependencies: { }
_core:
default_config_hash: EOQltUQPmgc6UQ2rcJ4Xi_leCEJj5ui0TR-12duS-Tk
id: html_date
label: 'Дата HTML'
locked: true
pattern: Y-m-d
uuid: 692286cd-2ef7-4692-b1f6-9ebb1498af31
langcode: ru
status: true
dependencies: { }
_core:
default_config_hash: jxfClwZIRXIdcvMrE--WkcZxDGUVoOIE3Sm2NRZlFuE
id: html_datetime
label: 'Дата и время HTML'
locked: true
pattern: 'Y-m-d\TH:i:sO'
uuid: 0a6e8158-4ae8-4236-a757-bfa76f6463df
langcode: ru
status: true
dependencies: { }
_core:
default_config_hash: Z7KuCUwM_WdTNvLcoltuX3_8d-s-8FZkTN6KgNwF0eM
id: html_month
label: 'HTML Месяц'
locked: true
pattern: Y-m
uuid: a7b43ae2-edc7-4be5-a3e3-2579cccd0ef4
langcode: ru
status: true
dependencies: { }
_core:
default_config_hash: M7yqicYkU36hRy5p9drAaGBBihhUD1OyujFrAaQ93ZE
id: html_time
label: 'HTML Время'
locked: true
pattern: 'H:i:s'
uuid: 81448cd7-ff02-448d-afc1-0b9036fc52ac
langcode: ru
status: true
dependencies: { }
_core:
default_config_hash: wKD4WsoV_wFgv2vgI4mcAAFSIzrye17ykzdwrnApkfY
id: html_week
label: 'HTML Неделя'
locked: true
pattern: Y-\WW
uuid: 2fbc0e3d-25fd-4726-aae5-3204a0464fa8
langcode: ru
status: true
dependencies: { }
_core:
default_config_hash: OjekiQuX9RbVQ2_8jOHBL94RgYLePqX7wpfNGgcQzrk
id: html_year
label: 'Год HTML'
locked: true
pattern: 'Y'
uuid: af1913a0-57f9-4b01-a729-d54b72260483
langcode: ru
status: true
dependencies: { }
_core:
default_config_hash: 5VpawMrKPEPCkoO4YpPa0TDFO2dgiIHfTziJtwlmUxc
id: html_yearless_date
label: 'Дата без года HTML'
locked: true
pattern: m-d
uuid: fc9f2ce0-3c8e-48cc-ba18-3e633bc3719f
langcode: ru
status: true
dependencies: { }
_core:
default_config_hash: og8sWXhBuHbLMw3CoiBEZjgqSyhFBFmcbUW_wLcfNbo
id: long
label: 'Длинная дата по умолчанию'
locked: false
pattern: 'l, F j, Y - H:i'
uuid: a57ec56f-4e1b-49bd-852f-cf8bd2ce7100
langcode: ru
status: true
dependencies: { }
_core:
default_config_hash: nzL5d024NjXIX_8TlT6uFAu973lmfkmHklJC-2i9rAE
id: medium
label: 'Средняя дата по умолчанию'
locked: false
pattern: 'D, m/d/Y - H:i'
uuid: 2caeba39-e639-4f77-877c-15b560afed4e
langcode: ru
status: true
dependencies: { }
_core:
default_config_hash: AlzeyytA8InBgxIG9H2UDJYs3CG98Zj6yRsDKmlbZwA
id: short
label: 'Короткая дата по умолчанию'
locked: false
pattern: 'm/d/Y - H:i'
uuid: ec92041f-470d-4d37-a2f1-60a230f66809
langcode: ru
status: true
dependencies:
config:
- block_content.type.basic
- field.field.block_content.basic.body
module:
- text
_core:
default_config_hash: jAps3FCxvKecABS_tgExbhCZrBLQB3bNPWw18WjE3ss
id: block_content.basic.default
targetEntityType: block_content
bundle: basic
mode: default
content:
body:
type: text_textarea_with_summary
weight: -4
region: content
settings:
rows: 9
summary_rows: 3
placeholder: ''
show_summary: false
third_party_settings: { }
info:
type: string_textfield
weight: -5
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
langcode:
type: language_select
weight: 2
region: content
settings:
include_locked: true
third_party_settings: { }
hidden: { }
uuid: 443bddd5-39ee-4203-ba68-49bbabe3f5df
langcode: ru
status: true
dependencies:
config:
- comment.type.comment
- field.field.comment.comment.comment_body
module:
- text
_core:
default_config_hash: I0Pa0aQvT_jawlPo9oz4FE3h_ickc55dYKTPl6gILes
id: comment.comment.default
targetEntityType: comment
bundle: comment
mode: default
content:
author:
weight: -2
region: content
comment_body:
type: text_textarea
weight: 11
region: content
settings:
rows: 5
placeholder: ''
third_party_settings: { }
langcode:
type: language_select
weight: 2
region: content
settings:
include_locked: true
third_party_settings: { }
subject:
type: string_textfield
weight: 10
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
hidden: { }
uuid: b224fa9d-1955-4d1a-9fb5-8d18ffe85819
langcode: en
status: true
dependencies:
config:
- contact.form.feedback
- field.field.contact_message.feedback.field_name
- field.field.contact_message.feedback.field_surname
id: contact_message.feedback.default
targetEntityType: contact_message
bundle: feedback
mode: default
content:
copy:
weight: 7
region: content
settings: { }
third_party_settings: { }
field_name:
type: string_textfield
weight: 1
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_surname:
type: string_textfield
weight: 2
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
langcode:
type: language_select
weight: 5
region: content
settings:
include_locked: true
third_party_settings: { }
mail:
weight: 0
region: content
settings: { }
third_party_settings: { }
message:
type: string_textarea
weight: 4
region: content
settings:
rows: 12
placeholder: ''
third_party_settings: { }
preview:
weight: 6
region: content
settings: { }
third_party_settings: { }
subject:
type: string_textfield
weight: 3
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
hidden:
name: true
uuid: 11fec1b7-bdaf-4e4a-97b0-b5a0f99be199
langcode: ru
status: true
dependencies:
config:
- field.field.media.audio.field_media_audio_file
- media.type.audio
module:
- file
- path
_core:
default_config_hash: G2_SKH3jmI9FQeXSUxo3KgQqiyF1hPDEkc7-3-rCSbc
id: media.audio.default
targetEntityType: media
bundle: audio
mode: default
content:
created:
type: datetime_timestamp
weight: 10
region: content
settings: { }
third_party_settings: { }
field_media_audio_file:
type: file_generic
weight: 0
region: content
settings:
progress_indicator: throbber
third_party_settings: { }
langcode:
type: language_select
weight: 2
region: content
settings:
include_locked: true
third_party_settings: { }
path:
type: path
weight: 30
region: content
settings: { }
third_party_settings: { }
status:
type: boolean_checkbox
weight: 100
region: content
settings:
display_label: true
third_party_settings: { }
uid:
type: entity_reference_autocomplete
weight: 5
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
hidden:
name: true
uuid: f4d190f3-2ae4-4bf7-a715-189dd111f354
langcode: ru
status: true
dependencies:
config:
- field.field.media.document.field_media_document
- media.type.document
module:
- file
- path
_core:
default_config_hash: aewrRkePgJzdD5kPOq8JeMcKHs6yat49nE7ZeCQzQZg
id: media.document.default
targetEntityType: media
bundle: document
mode: default
content:
created:
type: datetime_timestamp
weight: 10
region: content
settings: { }
third_party_settings: { }
field_media_document:
type: file_generic
weight: 0
region: content
settings:
progress_indicator: throbber
third_party_settings: { }
langcode:
type: language_select
weight: 2
region: content
settings:
include_locked: true
third_party_settings: { }
path:
type: path
weight: 30
region: content
settings: { }
third_party_settings: { }
status:
type: boolean_checkbox
weight: 100
region: content
settings:
display_label: true
third_party_settings: { }
uid:
type: entity_reference_autocomplete
weight: 5
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
hidden:
name: true
uuid: 4af422b6-21c9-4055-a801-85d0a080764c
langcode: ru
status: true
dependencies:
config:
- field.field.media.image.field_media_image
- image.style.thumbnail
- media.type.image
module:
- image
- path
_core:
default_config_hash: JSY4-JPyNZBiYYo6imdRYF6_SdtWQexPndrLvn3-vw4
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:
type: image_image
weight: 0
region: content
settings:
progress_indicator: throbber
preview_image_style: thumbnail
third_party_settings: { }
langcode:
type: language_select
weight: 2
region: content
settings:
include_locked: true
third_party_settings: { }
path:
type: path
weight: 30
region: content
settings: { }
third_party_settings: { }
status:
type: boolean_checkbox
weight: 100
region: content
settings:
display_label: true
third_party_settings: { }
uid:
type: entity_reference_autocomplete
weight: 5
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
hidden:
name: true
uuid: e256a02b-54da-4116-96a9-34725a709392
langcode: ru
status: true
dependencies:
config:
- field.field.media.remote_video.field_media_oembed_video
- media.type.remote_video
module:
- media
- path
_core:
default_config_hash: pM8mGlwfpvfG_y5tZn0lGAXFLXz2_yKkL7MvWZsRqdA
id: media.remote_video.default
targetEntityType: media
bundle: remote_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
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
langcode:
type: language_select
weight: 2
region: content
settings:
include_locked: true
third_party_settings: { }
path:
type: path
weight: 30
region: content
settings: { }
third_party_settings: { }
status:
type: boolean_checkbox
weight: 100
region: content
settings:
display_label: true
third_party_settings: { }
uid:
type: entity_reference_autocomplete
weight: 5
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
hidden:
name: true
uuid: e96c59b0-dd02-4b24-b86b-91b2bd6b5dd4
langcode: ru
status: true
dependencies:
config:
- field.field.media.video.field_media_video_file
- media.type.video
module:
- file
- path
_core:
default_config_hash: 0kIIaDTt6dixXy8TZkat2MNGZJ6vkRG8TaBWTy3E1bM
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_video_file:
type: file_generic
weight: 0
region: content
settings:
progress_indicator: throbber
third_party_settings: { }
langcode:
type: language_select
weight: 2
region: content
settings:
include_locked: true
third_party_settings: { }
path:
type: path
weight: 30
region: content
settings: { }
third_party_settings: { }
status:
type: boolean_checkbox
weight: 100
region: content
settings:
display_label: true
third_party_settings: { }
uid:
type: entity_reference_autocomplete
weight: 5
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
hidden:
name: true
uuid: 51f6e0f6-a415-45c0-a71b-b43bd6f1daef
langcode: ru
status: true
dependencies:
config:
- field.field.node.article.body
- field.field.node.article.comment
- field.field.node.article.field_image
- field.field.node.article.field_tags
- image.style.thumbnail
- node.type.article
module:
- comment
- image
- path
- text
_core:
default_config_hash: Pzq9mzrsfoPf775qgEU_SUbHSro9pv1ga-Euh1Ykd_k
id: node.article.default
targetEntityType: node
bundle: article
mode: default
content:
body:
type: text_textarea_with_summary
weight: 1
region: content
settings:
rows: 9
summary_rows: 3
placeholder: ''
show_summary: false
third_party_settings: { }
comment:
type: comment_default
weight: 20
region: content
settings: { }
third_party_settings: { }
created:
type: datetime_timestamp
weight: 10
region: content
settings: { }
third_party_settings: { }
field_image:
type: image_image
weight: 4
region: content
settings:
progress_indicator: throbber
preview_image_style: thumbnail
third_party_settings: { }
field_tags:
type: entity_reference_autocomplete_tags
weight: 3
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
langcode:
type: language_select
weight: 2
region: content
settings:
include_locked: true
third_party_settings: { }
path:
type: path
weight: 30
region: content
settings: { }
third_party_settings: { }
promote:
type: boolean_checkbox
weight: 15
region: content
settings:
display_label: true
third_party_settings: { }
status:
type: boolean_checkbox
weight: 120
region: content
settings:
display_label: true
third_party_settings: { }
sticky:
type: boolean_checkbox
weight: 16
region: content
settings:
display_label: true
third_party_settings: { }
title:
type: string_textfield
weight: 0
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
uid:
type: entity_reference_autocomplete
weight: 5
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
hidden: { }
uuid: 40e2ea39-7c3f-44e2-8800-0afef1201f12
langcode: ru
status: true
dependencies:
config:
- field.field.node.films.field_characters
- field.field.node.films.field_director
- field.field.node.films.field_edited
- field.field.node.films.field_episode_id
- field.field.node.films.field_opening_crawl
- field.field.node.films.field_planets
- field.field.node.films.field_producer
- field.field.node.films.field_release_date
- field.field.node.films.field_species
- field.field.node.films.field_starships
- field.field.node.films.field_swapi_id
- field.field.node.films.field_vehicles
- node.type.films
module:
- datetime
- path
id: node.films.default
targetEntityType: node
bundle: films
mode: default
content:
created:
type: datetime_timestamp
weight: 10
region: content
settings: { }
third_party_settings: { }
field_characters:
type: entity_reference_autocomplete
weight: 129
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
field_director:
type: string_textfield
weight: 123
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_edited:
type: string_textfield
weight: 132
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_episode_id:
type: number
weight: 121
region: content
settings:
placeholder: ''
third_party_settings: { }
field_opening_crawl:
type: string_textarea
weight: 122
region: content
settings:
rows: 5
placeholder: ''
third_party_settings: { }
field_planets:
type: entity_reference_autocomplete
weight: 130
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
field_producer:
type: string_textfield
weight: 124
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_release_date:
type: datetime_default
weight: 125
region: content
settings: { }
third_party_settings: { }
field_species:
type: entity_reference_autocomplete
weight: 126
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
field_starships:
type: entity_reference_autocomplete
weight: 127
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
field_swapi_id:
type: number
weight: 131
region: content
settings:
placeholder: ''
third_party_settings: { }
field_vehicles:
type: entity_reference_autocomplete
weight: 128
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
langcode:
type: language_select
weight: 2
region: content
settings:
include_locked: true
third_party_settings: { }
path:
type: path
weight: 30
region: content
settings: { }
third_party_settings: { }
promote:
type: boolean_checkbox
weight: 15
region: content
settings:
display_label: true
third_party_settings: { }
status:
type: boolean_checkbox
weight: 120
region: content
settings:
display_label: true
third_party_settings: { }
sticky:
type: boolean_checkbox
weight: 16
region: content
settings:
display_label: true
third_party_settings: { }
title:
type: string_textfield
weight: -5
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
uid:
type: entity_reference_autocomplete
weight: 5
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
hidden: { }
uuid: 606e42fb-d587-4aeb-8d0a-329eeef23539
langcode: ru
status: true
dependencies:
config:
- field.field.node.page.body
- node.type.page
module:
- path
- text
_core:
default_config_hash: SfpLhPExzvR0MgFp0Wp7CrmgEnhcqQ-fXIWFhbf4ue0
id: node.page.default
targetEntityType: node
bundle: page
mode: default
content:
body:
type: text_textarea_with_summary
weight: 31
region: content
settings:
rows: 9
summary_rows: 3
placeholder: ''
show_summary: false
third_party_settings: { }
created:
type: datetime_timestamp
weight: 10
region: content
settings: { }
third_party_settings: { }
langcode:
type: language_select
weight: 2
region: content
settings:
include_locked: true
third_party_settings: { }
path:
type: path
weight: 30
region: content
settings: { }
third_party_settings: { }
promote:
type: boolean_checkbox
weight: 15
region: content
settings:
display_label: true
third_party_settings: { }
status:
type: boolean_checkbox
weight: 120
region: content
settings:
display_label: true
third_party_settings: { }
sticky:
type: boolean_checkbox
weight: 16
region: content
settings:
display_label: true
third_party_settings: { }
title:
type: string_textfield
weight: -5
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
uid:
type: entity_reference_autocomplete
weight: 5
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
hidden: { }
uuid: 84d73e04-b636-483e-8aec-56eff88f8470
langcode: ru
status: true
dependencies:
config:
- field.field.node.people.field_birth_year
- field.field.node.people.field_edited
- field.field.node.people.field_eye_color
- field.field.node.people.field_films
- field.field.node.people.field_gender
- field.field.node.people.field_hair_color
- field.field.node.people.field_height
- field.field.node.people.field_homeworld
- field.field.node.people.field_mass
- field.field.node.people.field_skin_color
- field.field.node.people.field_species
- field.field.node.people.field_starships
- field.field.node.people.field_swapi_id
- field.field.node.people.field_vehicles
- node.type.people
module:
- path
id: node.people.default
targetEntityType: node
bundle: people
mode: default
content:
created:
type: datetime_timestamp
weight: 10
region: content
settings: { }
third_party_settings: { }
field_birth_year:
type: string_textfield
weight: 124
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_edited:
type: string_textfield
weight: 122
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_eye_color:
type: string_textfield
weight: 125
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_films:
type: entity_reference_autocomplete
weight: 132
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
field_gender:
type: string_textfield
weight: 126
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_hair_color:
type: string_textfield
weight: 127
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_height:
type: string_textfield
weight: 128
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_homeworld:
type: entity_reference_autocomplete
weight: 131
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
field_mass:
type: string_textfield
weight: 129
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_skin_color:
type: string_textfield
weight: 130
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_species:
type: entity_reference_autocomplete
weight: 133
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
field_starships:
type: entity_reference_autocomplete
weight: 134
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
field_swapi_id:
type: number
weight: 121
region: content
settings:
placeholder: ''
third_party_settings: { }
field_vehicles:
type: entity_reference_autocomplete
weight: 135
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
langcode:
type: language_select
weight: 2
region: content
settings:
include_locked: true
third_party_settings: { }
path:
type: path
weight: 30
region: content
settings: { }
third_party_settings: { }
promote:
type: boolean_checkbox
weight: 15
region: content
settings:
display_label: true
third_party_settings: { }
status:
type: boolean_checkbox
weight: 120
region: content
settings:
display_label: true
third_party_settings: { }
sticky:
type: boolean_checkbox
weight: 16
region: content
settings:
display_label: true
third_party_settings: { }
title:
type: string_textfield
weight: -5
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
uid:
type: entity_reference_autocomplete
weight: 5
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
hidden: { }
uuid: 6a294a6b-319f-443c-b2ca-6eac7a4e4df8
langcode: ru
status: true
dependencies:
config:
- field.field.node.planets.field_climate
- field.field.node.planets.field_diameter
- field.field.node.planets.field_edited
- field.field.node.planets.field_films
- field.field.node.planets.field_gravity
- field.field.node.planets.field_orbital_period
- field.field.node.planets.field_population
- field.field.node.planets.field_residents
- field.field.node.planets.field_rotation_period
- field.field.node.planets.field_surface_water
- field.field.node.planets.field_swapi_id
- field.field.node.planets.field_terrain
- node.type.planets
module:
- path
id: node.planets.default
targetEntityType: node
bundle: planets
mode: default
content:
created:
type: datetime_timestamp
weight: 10
region: content
settings: { }
third_party_settings: { }
field_climate:
type: string_textfield
weight: 126
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_diameter:
type: string_textfield
weight: 121
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_edited:
type: string_textfield
weight: 131
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_films:
type: entity_reference_autocomplete
weight: 130
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
field_gravity:
type: string_textfield
weight: 124
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_orbital_period:
type: string_textfield
weight: 123
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_population:
type: string_textfield
weight: 125
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_residents:
type: entity_reference_autocomplete
weight: 129
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
field_rotation_period:
type: string_textfield
weight: 122
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_surface_water:
type: string_textfield
weight: 128
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_swapi_id:
type: number
weight: 132
region: content
settings:
placeholder: ''
third_party_settings: { }
field_terrain:
type: string_textfield
weight: 127
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
langcode:
type: language_select
weight: 2
region: content
settings:
include_locked: true
third_party_settings: { }
path:
type: path
weight: 30
region: content
settings: { }
third_party_settings: { }
promote:
type: boolean_checkbox
weight: 15
region: content
settings:
display_label: true
third_party_settings: { }
status:
type: boolean_checkbox
weight: 120
region: content
settings:
display_label: true
third_party_settings: { }
sticky:
type: boolean_checkbox
weight: 16
region: content
settings:
display_label: true
third_party_settings: { }
title:
type: string_textfield
weight: -5
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
uid:
type: entity_reference_autocomplete
weight: 5
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
hidden: { }
uuid: 8dfe86a8-c2fc-4285-ae7e-456ebadc8f6c
langcode: ru
status: true
dependencies:
config:
- field.field.node.species.field_average_height
- field.field.node.species.field_average_lifespan
- field.field.node.species.field_classification
- field.field.node.species.field_designation
- field.field.node.species.field_edited
- field.field.node.species.field_eye_colors
- field.field.node.species.field_films
- field.field.node.species.field_hair_colors
- field.field.node.species.field_homeworld
- field.field.node.species.field_language
- field.field.node.species.field_people
- field.field.node.species.field_skin_colors
- field.field.node.species.field_swapi_id
- node.type.species
module:
- path
id: node.species.default
targetEntityType: node
bundle: species
mode: default
content:
created:
type: datetime_timestamp
weight: 10
region: content
settings: { }
third_party_settings: { }
field_average_height:
type: string_textfield
weight: 123
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_average_lifespan:
type: string_textfield
weight: 124
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_classification:
type: string_textfield
weight: 121
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_designation:
type: string_textfield
weight: 122
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_edited:
type: string_textfield
weight: 132
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_eye_colors:
type: string_textfield
weight: 125
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_films:
type: entity_reference_autocomplete
weight: 131
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
field_hair_colors:
type: string_textfield
weight: 126
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_homeworld:
type: entity_reference_autocomplete
weight: 129
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
field_language:
type: string_textfield
weight: 128
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_people:
type: entity_reference_autocomplete
weight: 130
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
field_skin_colors:
type: string_textfield
weight: 127
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_swapi_id:
type: number
weight: 133
region: content
settings:
placeholder: ''
third_party_settings: { }
langcode:
type: language_select
weight: 2
region: content
settings:
include_locked: true
third_party_settings: { }
path:
type: path
weight: 30
region: content
settings: { }
third_party_settings: { }
promote:
type: boolean_checkbox
weight: 15
region: content
settings:
display_label: true
third_party_settings: { }
status:
type: boolean_checkbox
weight: 120
region: content
settings:
display_label: true
third_party_settings: { }
sticky:
type: boolean_checkbox
weight: 16
region: content
settings:
display_label: true
third_party_settings: { }
title:
type: string_textfield
weight: -5
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
uid:
type: entity_reference_autocomplete
weight: 5
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
hidden: { }
uuid: b7c660ef-c8a5-48b2-8d33-e1a7135e52bc
langcode: ru
status: true
dependencies:
config:
- field.field.node.starships.field_cargo_capacity
- field.field.node.starships.field_consumables
- field.field.node.starships.field_cost_in_credits
- field.field.node.starships.field_crew
- field.field.node.starships.field_edited
- field.field.node.starships.field_films
- field.field.node.starships.field_hyperdrive_rating
- field.field.node.starships.field_length
- field.field.node.starships.field_manufacturer
- field.field.node.starships.field_max_atmosphering_speed
- field.field.node.starships.field_mglt
- field.field.node.starships.field_model
- field.field.node.starships.field_passengers
- field.field.node.starships.field_pilots
- field.field.node.starships.field_starship_class
- field.field.node.starships.field_swapi_id
- node.type.starships
module:
- path
id: node.starships.default
targetEntityType: node
bundle: starships
mode: default
content:
created:
type: datetime_timestamp
weight: 10
region: content
settings: { }
third_party_settings: { }
field_cargo_capacity:
type: string_textfield
weight: 131
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_consumables:
type: string_textfield
weight: 132
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_cost_in_credits:
type: string_textfield
weight: 124
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_crew:
type: string_textfield
weight: 126
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_edited:
type: string_textfield
weight: 135
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_films:
type: entity_reference_autocomplete
weight: 133
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
field_hyperdrive_rating:
type: string_textfield
weight: 129
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_length:
type: string_textfield
weight: 125
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_manufacturer:
type: string_textfield
weight: 123
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_max_atmosphering_speed:
type: string_textfield
weight: 128
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_mglt:
type: string_textfield
weight: 130
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_model:
type: string_textfield
weight: 121
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_passengers:
type: string_textfield
weight: 127
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_pilots:
type: entity_reference_autocomplete
weight: 134
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
field_starship_class:
type: string_textfield
weight: 122
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_swapi_id:
type: number
weight: 136
region: content
settings:
placeholder: ''
third_party_settings: { }
langcode:
type: language_select
weight: 2
region: content
settings:
include_locked: true
third_party_settings: { }
path:
type: path
weight: 30
region: content
settings: { }
third_party_settings: { }
promote:
type: boolean_checkbox
weight: 15
region: content
settings:
display_label: true
third_party_settings: { }
status:
type: boolean_checkbox
weight: 120
region: content
settings:
display_label: true
third_party_settings: { }
sticky:
type: boolean_checkbox
weight: 16
region: content
settings:
display_label: true
third_party_settings: { }
title:
type: string_textfield
weight: -5
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
uid:
type: entity_reference_autocomplete
weight: 5
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
hidden: { }
uuid: 2f75d9b0-46f0-4feb-ac13-c7b9bdec50d0
langcode: ru
status: true
dependencies:
config:
- field.field.node.vehicles.field_cargo_capacity
- field.field.node.vehicles.field_consumables
- field.field.node.vehicles.field_cost_in_credits
- field.field.node.vehicles.field_crew
- field.field.node.vehicles.field_edited
- field.field.node.vehicles.field_films
- field.field.node.vehicles.field_length
- field.field.node.vehicles.field_manufacturer
- field.field.node.vehicles.field_max_atmosphering_speed
- field.field.node.vehicles.field_model
- field.field.node.vehicles.field_passengers
- field.field.node.vehicles.field_pilots
- field.field.node.vehicles.field_swapi_id
- field.field.node.vehicles.field_vehicle_class
- node.type.vehicles
module:
- path
id: node.vehicles.default
targetEntityType: node
bundle: vehicles
mode: default
content:
created:
type: datetime_timestamp
weight: 10
region: content
settings: { }
third_party_settings: { }
field_cargo_capacity:
type: string_textfield
weight: 129
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_consumables:
type: string_textfield
weight: 130
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_cost_in_credits:
type: string_textfield
weight: 125
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_crew:
type: string_textfield
weight: 126
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_edited:
type: string_textfield
weight: 134
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_films:
type: entity_reference_autocomplete
weight: 131
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
field_length:
type: string_textfield
weight: 124
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_manufacturer:
type: string_textfield
weight: 123
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_max_atmosphering_speed:
type: string_textfield
weight: 128
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_model:
type: string_textfield
weight: 121
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_passengers:
type: string_textfield
weight: 127
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_pilots:
type: entity_reference_autocomplete
weight: 132
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
field_swapi_id:
type: number
weight: 133
region: content
settings:
placeholder: ''
third_party_settings: { }
field_vehicle_class:
type: string_textfield
weight: 122
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
langcode:
type: language_select
weight: 2
region: content
settings:
include_locked: true
third_party_settings: { }
path:
type: path
weight: 30
region: content
settings: { }
third_party_settings: { }
promote:
type: boolean_checkbox
weight: 15
region: content
settings:
display_label: true
third_party_settings: { }
status:
type: boolean_checkbox
weight: 120
region: content
settings:
display_label: true
third_party_settings: { }
sticky:
type: boolean_checkbox
weight: 16
region: content
settings:
display_label: true
third_party_settings: { }
title:
type: string_textfield
weight: -5
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
uid:
type: entity_reference_autocomplete
weight: 5
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
hidden: { }
uuid: f849e3e1-eeaf-4fe5-8f7a-54bc7fc5e905
langcode: ru
status: true
dependencies:
config:
- field.field.user.user.field_name
- field.field.user.user.field_surname
module:
- user
_core:
default_config_hash: FaQ9Ptcpxpg30AtiqRDtl_8zbJArHP1LPfug_s59TOA
id: user.user.default
targetEntityType: user
bundle: user
mode: default
content:
account:
weight: -10
region: content
contact:
weight: 5
region: content
field_name:
type: string_textfield
weight: 7
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
field_surname:
type: string_textfield
weight: 8
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
language:
weight: 0
region: content
timezone:
weight: 6
region: content
hidden:
langcode: true
uuid: fc047924-e979-4b75-b0c1-c946ff6ce53d
langcode: ru
status: true
dependencies:
module:
- user
_core:
default_config_hash: flXhTcp55yLcyy7ZLOhPGKGZobZQJdkAFVWV3LseiuI
id: user.register
label: Регистрация
targetEntityType: user
cache: true
uuid: 0f5a4cd0-7ec3-4968-b5de-7b494aed5f26
langcode: ru
status: true
dependencies:
config:
- block_content.type.basic
- field.field.block_content.basic.body
module:
- text
_core:
default_config_hash: hBNNDTFwakREOTa6GGMqN899Iyrii0hInwSJtQ7Kj30
id: block_content.basic.default
targetEntityType: block_content
bundle: basic
mode: default
content:
body:
type: text_default
label: hidden
settings: { }
third_party_settings: { }
weight: 0
region: content
hidden:
langcode: true
uuid: 783e3b89-7e82-4de4-876d-0779db02e360
langcode: ru
status: true
dependencies:
config:
- comment.type.comment
- field.field.comment.comment.comment_body
module:
- text
_core:
default_config_hash: aBQUGsQ46M4048fIlFuTXwl2zV0j2cJX89CTUobh9hA
id: comment.comment.default
targetEntityType: comment
bundle: comment
mode: default
content:
comment_body:
type: text_default
label: hidden
settings: { }
third_party_settings: { }
weight: 0
region: content
links:
weight: 100
region: content
hidden:
langcode: true
uuid: dfb427ae-c0d0-4e5b-a5e0-6b10aaa8b9bf
langcode: en
status: true
dependencies:
config:
- contact.form.feedback
- field.field.contact_message.feedback.field_name
- field.field.contact_message.feedback.field_surname
id: contact_message.feedback.default
targetEntityType: contact_message
bundle: feedback
mode: default
content:
field_name:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 0
region: content
field_surname:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 1
region: content
message:
type: basic_string
label: above
settings: { }
third_party_settings: { }
weight: 2
region: content
hidden:
langcode: true
search_api_excerpt: true
uuid: 022ef488-82d4-4e1d-8573-e482c6d80977
langcode: ru
status: true
dependencies:
config:
- field.field.media.audio.field_media_audio_file
- media.type.audio
module:
- file
_core:
default_config_hash: AS765MdDfNpK6K5eE7WVnBvpynClz_havy1R3bO3gVo
id: media.audio.default
targetEntityType: media
bundle: audio
mode: default
content:
field_media_audio_file:
type: file_audio
label: visually_hidden
settings:
controls: true
autoplay: false
loop: false
multiple_file_display_type: tags
third_party_settings: { }
weight: 0
region: content
hidden:
created: true
langcode: true
name: true
search_api_excerpt: true
thumbnail: true
uid: true
uuid: a571cfd1-9f73-43fb-95a6-462955e3287e
langcode: ru
status: true
dependencies:
config:
- field.field.media.document.field_media_document
- media.type.document
module:
- file
_core:
default_config_hash: XxUyhaTuM0OUUZpr8G6jdrFBEh5eag7auWxBKhm6cvY
id: media.document.default
targetEntityType: media
bundle: document
mode: default
content:
field_media_document:
type: file_default
label: visually_hidden
settings: { }
third_party_settings: { }
weight: 1
region: content
hidden:
created: true
langcode: true
name: true
search_api_excerpt: true
thumbnail: true
uid: true
uuid: db7b07d3-47b0-4c18-9452-29831e4ef586
langcode: ru
status: true
dependencies:
config:
- field.field.media.image.field_media_image
- image.style.large
- media.type.image
module:
- image
_core:
default_config_hash: whJrNezqUJ7Qhg7raMQj2Hz9JPiWxijezhWIEN9BVVk
id: media.image.default
targetEntityType: media
bundle: image
mode: default
content:
field_media_image:
type: image
label: visually_hidden
settings:
image_link: ''
image_style: large
third_party_settings: { }
weight: 1
region: content
hidden:
created: true
langcode: true
name: true
search_api_excerpt: true
thumbnail: true
uid: true
uuid: 53a5da3b-c8d6-4bf7-b7d9-d3a0474208c3
langcode: ru
status: true
dependencies:
config:
- field.field.media.remote_video.field_media_oembed_video
- media.type.remote_video
module:
- media
_core:
default_config_hash: zQoBQ0BtnMM_rlDdgftyu6eI4AVs9mo5K8xq7NFO2Zc
id: media.remote_video.default
targetEntityType: media
bundle: remote_video
mode: default
content:
field_media_oembed_video:
type: oembed
label: hidden
settings:
max_width: 0
max_height: 0
third_party_settings: { }
weight: 0
region: content
hidden:
created: true
langcode: true
name: true
search_api_excerpt: true
thumbnail: true
uid: true
uuid: 791c07ec-9221-4042-9d6a-f863e37f0f38
langcode: ru
status: true
dependencies:
config:
- field.field.media.video.field_media_video_file
- media.type.video
module:
- file
_core:
default_config_hash: SxvbuGh-6cQMxl9bBV27-hGI46u7ZvwlMm5ObaJMNnw
id: media.video.default
targetEntityType: media
bundle: video
mode: default
content:
field_media_video_file:
type: file_video
label: visually_hidden
settings:
controls: true
autoplay: false
loop: false
multiple_file_display_type: tags
muted: false
width: 640
height: 480
third_party_settings: { }
weight: 0
region: content
hidden:
created: true
langcode: true
name: true
search_api_excerpt: true
thumbnail: true
uid: true
uuid: 16d0a340-5a10-46f4-ab0f-5af923ea5faa
langcode: ru
status: true
dependencies:
config:
- core.entity_view_display.comment.comment.default
- field.field.node.article.body
- field.field.node.article.comment
- field.field.node.article.field_image
- field.field.node.article.field_tags
- image.style.large
- node.type.article
module:
- comment
- image
- text
- user
_core:
default_config_hash: b4RQ-Nfz-gOoG_jjftd_qDIz4lf_-OzlxoLHkRXjfrE
id: node.article.default
targetEntityType: node
bundle: article
mode: default
content:
body:
type: text_default
label: hidden
settings: { }
third_party_settings: { }
weight: 0
region: content
comment:
type: comment_default
label: above
settings:
view_mode: default
pager_id: 0
third_party_settings: { }
weight: 110
region: content
field_image:
type: image
label: hidden
settings:
image_link: ''
image_style: large
third_party_settings: { }
weight: -1
region: content
field_tags:
type: entity_reference_label
label: above
settings:
link: true
third_party_settings: { }
weight: 10
region: content
links:
settings: { }
third_party_settings: { }
weight: 100
region: content
hidden:
langcode: true
uuid: caae3ec1-9dda-4c0c-b743-901caadaac62
langcode: ru
status: true
dependencies:
config:
- core.entity_view_mode.node.rss
- field.field.node.article.body
- field.field.node.article.comment
- field.field.node.article.field_image
- field.field.node.article.field_tags
- node.type.article
module:
- user
_core:
default_config_hash: 2rIr6K5Q0UQ9khg0zE_CK-PtJH76UL-BDDZcZnZzwCc
id: node.article.rss
targetEntityType: node
bundle: article
mode: rss
content:
links:
weight: 100
region: content
hidden:
body: true
comment: true
field_image: true
field_tags: true
langcode: true
uuid: 2030e14d-aba8-4d81-bcad-462420998a97
langcode: ru
status: true
dependencies:
config:
- core.entity_view_display.comment.comment.default
- core.entity_view_mode.node.search_index
- field.field.node.article.body
- field.field.node.article.comment
- field.field.node.article.field_image
- field.field.node.article.field_tags
- node.type.article
module:
- comment
- text
- user
_core:
default_config_hash: UyS6h90lp_2z8y-boEip0WxzO-BGPHubSfeQYnjwg_4
id: node.article.search_index
targetEntityType: node
bundle: article
mode: search_index
content:
body:
type: text_default
label: hidden
settings: { }
third_party_settings: { }
weight: 0
region: content
comment:
type: comment_default
label: hidden
settings:
pager_id: 0
third_party_settings: { }
weight: 2
region: content
field_tags:
type: entity_reference_label
label: hidden
settings:
link: false
third_party_settings: { }
weight: 1
region: content
hidden:
field_image: true
langcode: true
links: true
search_api_excerpt: true
uuid: 9ff2e434-031a-46d5-91e2-ef2da90e36e2
langcode: ru
status: true
dependencies:
config:
- core.entity_view_mode.node.search_result
- field.field.node.article.body
- field.field.node.article.comment
- field.field.node.article.field_image
- field.field.node.article.field_tags
- image.style.thumbnail
- node.type.article
module:
- image
- text
- user
_core:
default_config_hash: uFyekWl4pl40ClJFmjk9tcyPJ-WFSXYsItJHB_XbQqs
id: node.article.search_result
targetEntityType: node
bundle: article
mode: search_result
content:
body:
type: text_summary_or_trimmed
label: hidden
settings:
trim_length: 300
third_party_settings: { }
weight: 1
region: content
field_image:
type: image
label: hidden
settings:
image_link: content
image_style: thumbnail
third_party_settings: { }
weight: 0
region: content
links:
settings: { }
third_party_settings: { }
weight: 2
region: content
hidden:
comment: true
field_tags: true
langcode: true
search_api_excerpt: true
uuid: e86fc2a0-179f-45d3-90c7-cbdca6fc1e35
langcode: ru
status: true
dependencies:
config:
- core.entity_view_mode.node.teaser
- field.field.node.article.body
- field.field.node.article.comment
- field.field.node.article.field_image
- field.field.node.article.field_tags
- image.style.medium
- node.type.article
module:
- image
- text
- user
_core:
default_config_hash: 0ur5-yZyR8pJ3lugC_Micbr6V_tpMWz-yHFhtuLcZo8
id: node.article.teaser
targetEntityType: node
bundle: article
mode: teaser
content:
body:
type: text_summary_or_trimmed
label: hidden
settings:
trim_length: 600
third_party_settings: { }
weight: 0
region: content
field_image:
type: image
label: hidden
settings:
image_link: content
image_style: medium
third_party_settings: { }
weight: -1
region: content
field_tags:
type: entity_reference_label
label: above
settings:
link: true
third_party_settings: { }
weight: 10
region: content
links:
weight: 100
region: content
hidden:
comment: true
field_image: true
field_tags: true
langcode: true
uuid: 3b173f09-4265-41d1-a7c9-0ee44b4a3088
langcode: ru
status: true
dependencies:
config:
- field.field.node.films.field_characters
- field.field.node.films.field_director
- field.field.node.films.field_edited
- field.field.node.films.field_episode_id
- field.field.node.films.field_opening_crawl
- field.field.node.films.field_planets
- field.field.node.films.field_producer
- field.field.node.films.field_release_date
- field.field.node.films.field_species
- field.field.node.films.field_starships
- field.field.node.films.field_swapi_id
- field.field.node.films.field_vehicles
- node.type.films
module:
- datetime
- user
id: node.films.default
targetEntityType: node
bundle: films
mode: default
content:
field_characters:
type: entity_reference_label
label: above
settings:
link: true
third_party_settings: { }
weight: 109
region: content
field_director:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 103
region: content
field_edited:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 112
region: content
field_episode_id:
type: number_integer
label: above
settings:
thousand_separator: ''
prefix_suffix: true
third_party_settings: { }
weight: 101
region: content
field_opening_crawl:
type: basic_string
label: above
settings: { }
third_party_settings: { }
weight: 102
region: content
field_planets:
type: entity_reference_label
label: above
settings:
link: true
third_party_settings: { }
weight: 110
region: content
field_producer:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 104
region: content
field_release_date:
type: datetime_default
label: above
settings:
timezone_override: ''
format_type: medium
third_party_settings: { }
weight: 105
region: content
field_species:
type: entity_reference_label
label: above
settings:
link: true
third_party_settings: { }
weight: 106
region: content
field_starships:
type: entity_reference_label
label: above
settings:
link: true
third_party_settings: { }
weight: 107
region: content
field_swapi_id:
type: number_integer
label: above
settings:
thousand_separator: ''
prefix_suffix: true
third_party_settings: { }
weight: 111
region: content
field_vehicles:
type: entity_reference_label
label: above
settings:
link: true
third_party_settings: { }
weight: 108
region: content
links:
settings: { }
third_party_settings: { }
weight: 100
region: content
hidden:
langcode: true
search_api_excerpt: true
uuid: af890cd7-b55a-4a15-86ec-a23553668f51
langcode: ru
status: true
dependencies:
config:
- core.entity_view_mode.node.teaser
- field.field.node.films.field_characters
- field.field.node.films.field_director
- field.field.node.films.field_edited
- field.field.node.films.field_episode_id
- field.field.node.films.field_opening_crawl
- field.field.node.films.field_planets
- field.field.node.films.field_producer
- field.field.node.films.field_release_date
- field.field.node.films.field_species
- field.field.node.films.field_starships
- field.field.node.films.field_swapi_id
- field.field.node.films.field_vehicles
- node.type.films
module:
- user
id: node.films.teaser
targetEntityType: node
bundle: films
mode: teaser
content:
links:
settings: { }
third_party_settings: { }
weight: 100
region: content
hidden:
field_characters: true
field_director: true
field_edited: true
field_episode_id: true
field_opening_crawl: true
field_planets: true
field_producer: true
field_release_date: true
field_species: true
field_starships: true
field_swapi_id: true
field_vehicles: true
langcode: true
search_api_excerpt: true
uuid: f5e34bee-0760-4953-8818-12a74242283d
langcode: ru
status: true
dependencies:
config:
- field.field.node.page.body
- node.type.page
module:
- text
- user
_core:
default_config_hash: M_Y8L5tfmhx7DR143E05YyZSpvgil6VFvqcfBWykalg
id: node.page.default
targetEntityType: node
bundle: page
mode: default
content:
body:
type: text_default
label: hidden
settings: { }
third_party_settings: { }
weight: 100
region: content
links:
weight: 101
region: content
hidden:
langcode: true
uuid: f33c1e82-17c8-4902-a3e2-93965b5b72aa
langcode: ru
status: true
dependencies:
config:
- core.entity_view_mode.node.search_index
- field.field.node.page.body
- node.type.page
module:
- text
- user
_core:
default_config_hash: xBTs8g0qAlUrHQcyKIdGpebgUBgF-FOb_c0Lyu71hVc
id: node.page.search_index
targetEntityType: node
bundle: page
mode: search_index
content:
body:
type: text_default
label: hidden
settings: { }
third_party_settings: { }
weight: 0
region: content
hidden:
langcode: true
links: true
search_api_excerpt: true
uuid: ebddd050-7444-4322-b22d-1aab4230079f
langcode: ru
status: true
dependencies:
config:
- core.entity_view_mode.node.search_result
- field.field.node.page.body
- node.type.page
module:
- text
- user
_core:
default_config_hash: gTB0Aw9yfUPvjMd_Pznb33eEqIGHqNQb5JtR3jZ18TE
id: node.page.search_result
targetEntityType: node
bundle: page
mode: search_result
content:
body:
type: text_summary_or_trimmed
label: hidden
settings:
trim_length: 300
third_party_settings: { }
weight: 100
region: content
links:
settings: { }
third_party_settings: { }
weight: 101
region: content
hidden:
langcode: true
search_api_excerpt: true
uuid: 30c5ed42-093e-445d-a357-ebcef608bce0
langcode: ru
status: true
dependencies:
config:
- core.entity_view_mode.node.teaser
- field.field.node.page.body
- node.type.page
module:
- text
- user
_core:
default_config_hash: 8BgdRtLbtQ0F__o0FHSH0Mx5fvXOra9tfT1GmNKbRYw
id: node.page.teaser
targetEntityType: node
bundle: page
mode: teaser
content:
body:
type: text_summary_or_trimmed
label: hidden
settings:
trim_length: 600
third_party_settings: { }
weight: 100
region: content
links:
weight: 101
region: content
hidden:
langcode: true
uuid: b48486b8-dffb-4c10-ba74-e18787f3e932
langcode: ru
status: true
dependencies:
config:
- field.field.node.people.field_birth_year
- field.field.node.people.field_edited
- field.field.node.people.field_eye_color
- field.field.node.people.field_films
- field.field.node.people.field_gender
- field.field.node.people.field_hair_color
- field.field.node.people.field_height
- field.field.node.people.field_homeworld
- field.field.node.people.field_mass
- field.field.node.people.field_skin_color
- field.field.node.people.field_species
- field.field.node.people.field_starships
- field.field.node.people.field_swapi_id
- field.field.node.people.field_vehicles
- node.type.people
module:
- user
id: node.people.default
targetEntityType: node
bundle: people
mode: default
content:
field_birth_year:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 104
region: content
field_edited:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 102
region: content
field_eye_color:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 105
region: content
field_films:
type: entity_reference_label
label: above
settings:
link: true
third_party_settings: { }
weight: 112
region: content
field_gender:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 106
region: content
field_hair_color:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 107
region: content
field_height:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 108
region: content
field_homeworld:
type: entity_reference_label
label: above
settings:
link: true
third_party_settings: { }
weight: 111
region: content
field_mass:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 109
region: content
field_skin_color:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 110
region: content
field_species:
type: entity_reference_label
label: above
settings:
link: true
third_party_settings: { }
weight: 113
region: content
field_starships:
type: entity_reference_label
label: above
settings:
link: true
third_party_settings: { }
weight: 114
region: content
field_swapi_id:
type: number_integer
label: above
settings:
thousand_separator: ''
prefix_suffix: true
third_party_settings: { }
weight: 101
region: content
field_vehicles:
type: entity_reference_label
label: above
settings:
link: true
third_party_settings: { }
weight: 115
region: content
links:
settings: { }
third_party_settings: { }
weight: 100
region: content
hidden:
langcode: true
search_api_excerpt: true
uuid: fffa5415-deb1-445c-812c-d9fcd37088cf
langcode: ru
status: true
dependencies:
config:
- core.entity_view_mode.node.teaser
- field.field.node.people.field_birth_year
- field.field.node.people.field_edited
- field.field.node.people.field_eye_color
- field.field.node.people.field_films
- field.field.node.people.field_gender
- field.field.node.people.field_hair_color
- field.field.node.people.field_height
- field.field.node.people.field_homeworld
- field.field.node.people.field_mass
- field.field.node.people.field_skin_color
- field.field.node.people.field_species
- field.field.node.people.field_starships
- field.field.node.people.field_swapi_id
- field.field.node.people.field_vehicles
- node.type.people
module:
- user
id: node.people.teaser
targetEntityType: node
bundle: people
mode: teaser
content:
links:
settings: { }
third_party_settings: { }
weight: 100
region: content
hidden:
field_birth_year: true
field_edited: true
field_eye_color: true
field_films: true
field_gender: true
field_hair_color: true
field_height: true
field_homeworld: true
field_mass: true
field_skin_color: true
field_species: true
field_starships: true
field_swapi_id: true
field_vehicles: true
langcode: true
search_api_excerpt: true
uuid: 80212a17-3ce5-4352-94f9-4f7b7e934473
langcode: ru
status: true
dependencies:
config:
- field.field.node.planets.field_climate
- field.field.node.planets.field_diameter
- field.field.node.planets.field_edited
- field.field.node.planets.field_films
- field.field.node.planets.field_gravity
- field.field.node.planets.field_orbital_period
- field.field.node.planets.field_population
- field.field.node.planets.field_residents
- field.field.node.planets.field_rotation_period
- field.field.node.planets.field_surface_water
- field.field.node.planets.field_swapi_id
- field.field.node.planets.field_terrain
- node.type.planets
module:
- user
id: node.planets.default
targetEntityType: node
bundle: planets
mode: default
content:
field_climate:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 106
region: content
field_diameter:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 101
region: content
field_edited:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 111
region: content
field_films:
type: entity_reference_label
label: above
settings:
link: true
third_party_settings: { }
weight: 110
region: content
field_gravity:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 104
region: content
field_orbital_period:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 103
region: content
field_population:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 105
region: content
field_residents:
type: entity_reference_label
label: above
settings:
link: true
third_party_settings: { }
weight: 109
region: content
field_rotation_period:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 102
region: content
field_surface_water:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 108
region: content
field_swapi_id:
type: number_integer
label: above
settings:
thousand_separator: ''
prefix_suffix: true
third_party_settings: { }
weight: 112
region: content
field_terrain:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 107
region: content
links:
settings: { }
third_party_settings: { }
weight: 100
region: content
hidden:
langcode: true
search_api_excerpt: true
uuid: a307ff45-6d48-401c-98f1-f1c999e3f0fd
langcode: ru
status: true
dependencies:
config:
- core.entity_view_mode.node.teaser
- field.field.node.planets.field_climate
- field.field.node.planets.field_diameter
- field.field.node.planets.field_edited
- field.field.node.planets.field_films
- field.field.node.planets.field_gravity
- field.field.node.planets.field_orbital_period
- field.field.node.planets.field_population
- field.field.node.planets.field_residents
- field.field.node.planets.field_rotation_period
- field.field.node.planets.field_surface_water
- field.field.node.planets.field_swapi_id
- field.field.node.planets.field_terrain
- node.type.planets
module:
- user
id: node.planets.teaser
targetEntityType: node
bundle: planets
mode: teaser
content:
links:
settings: { }
third_party_settings: { }
weight: 100
region: content
hidden:
field_climate: true
field_diameter: true
field_edited: true
field_films: true
field_gravity: true
field_orbital_period: true
field_population: true
field_residents: true
field_rotation_period: true
field_surface_water: true
field_swapi_id: true
field_terrain: true
langcode: true
search_api_excerpt: true
uuid: ffddb3ab-8945-43e0-8a1f-17a8e73ca1b2
langcode: ru
status: true
dependencies:
config:
- field.field.node.species.field_average_height
- field.field.node.species.field_average_lifespan
- field.field.node.species.field_classification
- field.field.node.species.field_designation
- field.field.node.species.field_edited
- field.field.node.species.field_eye_colors
- field.field.node.species.field_films
- field.field.node.species.field_hair_colors
- field.field.node.species.field_homeworld
- field.field.node.species.field_language
- field.field.node.species.field_people
- field.field.node.species.field_skin_colors
- field.field.node.species.field_swapi_id
- node.type.species
module:
- user
id: node.species.default
targetEntityType: node
bundle: species
mode: default
content:
field_average_height:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 103
region: content
field_average_lifespan:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 104
region: content
field_classification:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 101
region: content
field_designation:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 102
region: content
field_edited:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 112
region: content
field_eye_colors:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 105
region: content
field_films:
type: entity_reference_label
label: above
settings:
link: true
third_party_settings: { }
weight: 111
region: content
field_hair_colors:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 106
region: content
field_homeworld:
type: entity_reference_label
label: above
settings:
link: true
third_party_settings: { }
weight: 109
region: content
field_language:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 108
region: content
field_people:
type: entity_reference_label
label: above
settings:
link: true
third_party_settings: { }
weight: 110
region: content
field_skin_colors:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 107
region: content
field_swapi_id:
type: number_integer
label: above
settings:
thousand_separator: ''
prefix_suffix: true
third_party_settings: { }
weight: 113
region: content
links:
settings: { }
third_party_settings: { }
weight: 100
region: content
hidden:
langcode: true
search_api_excerpt: true
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment