Merge branch 'gitlab-ci' into 'main'
Adding gitlab ci file. See merge request dan612/dchadwick!2
This commit is contained in:
commit
5ff8b4b357
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,3 +1,6 @@
|
||||
vendor/
|
||||
web/modules/contrib
|
||||
web/core
|
||||
web/sites/default/files
|
||||
web/sites/default/files/*
|
||||
web/sites/default/settings.local.php
|
||||
|
||||
62
.gitlab-ci.yml
Normal file
62
.gitlab-ci.yml
Normal file
@ -0,0 +1,62 @@
|
||||
# This file is a template, and might need editing before it works on your project.
|
||||
# This is a sample GitLab CI/CD configuration file that should run without any modifications.
|
||||
# It demonstrates a basic 3 stage CI/CD pipeline. Instead of real tests or scripts,
|
||||
# it uses echo commands to simulate the pipeline execution.
|
||||
#
|
||||
# A pipeline is composed of independent jobs that run scripts, grouped into stages.
|
||||
# Stages run in sequential order, but jobs within stages run in parallel.
|
||||
#
|
||||
# For more information, see: https://docs.gitlab.com/ee/ci/yaml/index.html#stages
|
||||
#
|
||||
# You can copy and paste this template into a new `.gitlab-ci.yml` file.
|
||||
# You should not add this template to an existing `.gitlab-ci.yml` file by using the `include:` keyword.
|
||||
#
|
||||
# To contribute improvements to CI/CD templates, please follow the Development guide at:
|
||||
# https://docs.gitlab.com/ee/development/cicd/templates.html
|
||||
# This specific template is located at:
|
||||
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Getting-Started.gitlab-ci.yml
|
||||
|
||||
image: ubuntu:23.10
|
||||
|
||||
stages: # List of stages for jobs, and their order of execution
|
||||
- build
|
||||
- test
|
||||
- deploy
|
||||
|
||||
build-job: # This job runs in the build stage, which runs first.
|
||||
stage: build
|
||||
before_script:
|
||||
- apt-get update -y
|
||||
- apt-get install rsync php php-curl php-zip curl -y
|
||||
- curl -sS https://getcomposer.org/installer -o composer-setup.php
|
||||
- php composer-setup.php --install-dir=/usr/local/bin --filename=composer
|
||||
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
|
||||
- mkdir -p ~/.ssh
|
||||
- eval $(ssh-agent -s)
|
||||
- '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
|
||||
script:
|
||||
- ssh-add <(echo "$ZOIDBERG")
|
||||
- ssh -o StrictHostKeyChecking=no dan@164.92.85.112 'cd /var/www/html/dchadwick/web && ls -lah'
|
||||
- composer install --ignore-platform-reqs --no-dev --optimize-autoloader --no-ansi --no-interaction
|
||||
# - rsync -r ./ dan@164.92.85.112:/var/www/html/dchadwick/
|
||||
unit-test-job: # This job runs in the test stage.
|
||||
stage: test # It only starts when the job in the build stage completes successfully.
|
||||
script:
|
||||
- echo "Running unit tests... This will take about 60 seconds."
|
||||
- sleep 60
|
||||
- echo "Code coverage is 90%"
|
||||
|
||||
lint-test-job: # This job also runs in the test stage.
|
||||
stage: test # It can run at the same time as unit-test-job (in parallel).
|
||||
script:
|
||||
- echo "Linting code... This will take about 10 seconds."
|
||||
- sleep 10
|
||||
- echo "No lint issues found."
|
||||
|
||||
deploy-job: # This job runs in the deploy stage.
|
||||
stage: deploy # It only runs when *both* jobs in the test stage complete successfully.
|
||||
environment: production
|
||||
script:
|
||||
#- rsync -r ./ dan@164.92.85.112:/var/www/html/dchadwick/
|
||||
- echo "Deploying application..."
|
||||
- echo "Application successfully deployed."
|
||||
97
README.md
97
README.md
@ -1,93 +1,6 @@
|
||||
# dchadwick
|
||||
### Todo
|
||||
|
||||
|
||||
|
||||
## Getting started
|
||||
|
||||
To make it easy for you to get started with GitLab, here's a list of recommended next steps.
|
||||
|
||||
Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)!
|
||||
|
||||
## Add your files
|
||||
|
||||
- [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files
|
||||
- [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command:
|
||||
|
||||
```
|
||||
cd existing_repo
|
||||
git remote add origin https://gitlab.com/dan612/dchadwick.git
|
||||
git branch -M main
|
||||
git push -uf origin main
|
||||
```
|
||||
|
||||
## Integrate with your tools
|
||||
|
||||
- [ ] [Set up project integrations](https://gitlab.com/dan612/dchadwick/-/settings/integrations)
|
||||
|
||||
## Collaborate with your team
|
||||
|
||||
- [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/)
|
||||
- [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)
|
||||
- [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically)
|
||||
- [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/)
|
||||
- [ ] [Set auto-merge](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html)
|
||||
|
||||
## Test and Deploy
|
||||
|
||||
Use the built-in continuous integration in GitLab.
|
||||
|
||||
- [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html)
|
||||
- [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing (SAST)](https://docs.gitlab.com/ee/user/application_security/sast/)
|
||||
- [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html)
|
||||
- [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/)
|
||||
- [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html)
|
||||
|
||||
***
|
||||
|
||||
# Editing this README
|
||||
|
||||
When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thanks to [makeareadme.com](https://www.makeareadme.com/) for this template.
|
||||
|
||||
## Suggestions for a good README
|
||||
|
||||
Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information.
|
||||
|
||||
## Name
|
||||
Choose a self-explaining name for your project.
|
||||
|
||||
## Description
|
||||
Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors.
|
||||
|
||||
## Badges
|
||||
On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge.
|
||||
|
||||
## Visuals
|
||||
Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method.
|
||||
|
||||
## Installation
|
||||
Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection.
|
||||
|
||||
## Usage
|
||||
Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README.
|
||||
|
||||
## Support
|
||||
Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc.
|
||||
|
||||
## Roadmap
|
||||
If you have ideas for releases in the future, it is a good idea to list them in the README.
|
||||
|
||||
## Contributing
|
||||
State if you are open to contributions and what your requirements are for accepting them.
|
||||
|
||||
For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self.
|
||||
|
||||
You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser.
|
||||
|
||||
## Authors and acknowledgment
|
||||
Show your appreciation to those who have contributed to the project.
|
||||
|
||||
## License
|
||||
For open source projects, say how it is licensed.
|
||||
|
||||
## Project status
|
||||
If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
|
||||
1.) Create gitlab ci pipeline to deploy to digital ocean server
|
||||
2.) run rust to do some bground processing
|
||||
3.) set up automateds test in pipelines
|
||||
4.)
|
||||
|
||||
@ -18,12 +18,20 @@
|
||||
"composer/installers": "^2.0",
|
||||
"drupal/core-composer-scaffold": "^10.2",
|
||||
"drupal/core-project-message": "^10.2",
|
||||
"drupal/core-recommended": "^10.2"
|
||||
"drupal/core-recommended": "^10.2",
|
||||
"drupal/migrate_plus": "^6.0",
|
||||
"drupal/migrate_tools": "^6.0",
|
||||
"drupal/views_json_source": "^2.0",
|
||||
"drush/drush": "^12.4",
|
||||
"symfony/polyfill-iconv": "1.28",
|
||||
"symfony/polyfill-php80": "^1.29",
|
||||
"symfony/polyfill-php81": "^1.29",
|
||||
"symfony/polyfill-php82": "^1.29"
|
||||
},
|
||||
"conflict": {
|
||||
"drupal/drupal": "*"
|
||||
},
|
||||
"minimum-stability": "stable",
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true,
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
@ -93,4 +101,4 @@
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
1749
composer.lock
generated
1749
composer.lock
generated
File diff suppressed because it is too large
Load Diff
24
config/default/.htaccess
Normal file
24
config/default/.htaccess
Normal file
@ -0,0 +1,24 @@
|
||||
# Deny all requests from Apache 2.4+.
|
||||
<IfModule mod_authz_core.c>
|
||||
Require all denied
|
||||
</IfModule>
|
||||
|
||||
# Deny all requests from Apache 2.0-2.2.
|
||||
<IfModule !mod_authz_core.c>
|
||||
Deny from all
|
||||
</IfModule>
|
||||
|
||||
# Turn off all options we don't need.
|
||||
Options -Indexes -ExecCGI -Includes -MultiViews
|
||||
|
||||
# Set the catch-all handler to prevent scripts from being executed.
|
||||
SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
|
||||
<Files *>
|
||||
# Override the handler again if we're run later in the evaluation list.
|
||||
SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
|
||||
</Files>
|
||||
|
||||
# If we know how to do it safely, disable the PHP engine entirely.
|
||||
<IfModule mod_php.c>
|
||||
php_flag engine off
|
||||
</IfModule>
|
||||
5
config/default/announcements_feed.settings.yml
Normal file
5
config/default/announcements_feed.settings.yml
Normal file
@ -0,0 +1,5 @@
|
||||
_core:
|
||||
default_config_hash: 0G5pZBcxbg8ONYzNLd1RJIsvuFFewm9htnS4I-ABKJ8
|
||||
max_age: 86400
|
||||
cron_interval: 21600
|
||||
limit: 10
|
||||
3
config/default/automated_cron.settings.yml
Normal file
3
config/default/automated_cron.settings.yml
Normal file
@ -0,0 +1,3 @@
|
||||
_core:
|
||||
default_config_hash: fUksROt4FfkAU9BV4hV2XvhTBSS2nTNrZS4U7S-tKrs
|
||||
interval: 10800
|
||||
22
config/default/block.block.claro_breadcrumbs.yml
Normal file
22
config/default/block.block.claro_breadcrumbs.yml
Normal file
@ -0,0 +1,22 @@
|
||||
uuid: 8112fd91-5e62-412d-94ef-ffb728336048
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: NjcxOBrPOiK5-38t56DwFBDVY4yer7YSlbRWXFuHe7A
|
||||
id: claro_breadcrumbs
|
||||
theme: claro
|
||||
region: breadcrumb
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_breadcrumb_block
|
||||
settings:
|
||||
id: system_breadcrumb_block
|
||||
label: Breadcrumbs
|
||||
label_display: '0'
|
||||
provider: system
|
||||
visibility: { }
|
||||
22
config/default/block.block.claro_content.yml
Normal file
22
config/default/block.block.claro_content.yml
Normal file
@ -0,0 +1,22 @@
|
||||
uuid: 9d3128ce-7e05-43ba-9c21-d821761548af
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: a0Yyx1GeyKarZ4T_yXQBR_ZFKnXiFLtxAb6gWLd8nr0
|
||||
id: claro_content
|
||||
theme: claro
|
||||
region: content
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_main_block
|
||||
settings:
|
||||
id: system_main_block
|
||||
label: 'Main page content'
|
||||
label_display: '0'
|
||||
provider: system
|
||||
visibility: { }
|
||||
22
config/default/block.block.claro_help.yml
Normal file
22
config/default/block.block.claro_help.yml
Normal file
@ -0,0 +1,22 @@
|
||||
uuid: af5be99d-055d-4b60-8ada-01a510a80051
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- help
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: jccFSSVqV0WCDb6NtML1VWAWTtDbZ-zn5YgTRMgMrIM
|
||||
id: claro_help
|
||||
theme: claro
|
||||
region: help
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: help_block
|
||||
settings:
|
||||
id: help_block
|
||||
label: Help
|
||||
label_display: '0'
|
||||
provider: help
|
||||
visibility: { }
|
||||
32
config/default/block.block.claro_help_search.yml
Normal file
32
config/default/block.block.claro_help_search.yml
Normal file
@ -0,0 +1,32 @@
|
||||
uuid: 5b64eb83-0e4d-4567-887d-9716f6588154
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- search
|
||||
- system
|
||||
theme:
|
||||
- claro
|
||||
enforced:
|
||||
config:
|
||||
- search.page.help_search
|
||||
_core:
|
||||
default_config_hash: 2ToeZLvlHKTeFY74gpgu1PejLoFyCECLO_gw6rAZwqw
|
||||
id: claro_help_search
|
||||
theme: claro
|
||||
region: help
|
||||
weight: -4
|
||||
provider: null
|
||||
plugin: search_form_block
|
||||
settings:
|
||||
id: search_form_block
|
||||
label: 'Search help'
|
||||
label_display: visible
|
||||
provider: search
|
||||
page_id: help_search
|
||||
visibility:
|
||||
request_path:
|
||||
id: request_path
|
||||
negate: false
|
||||
context_mapping: { }
|
||||
pages: /admin/help
|
||||
20
config/default/block.block.claro_local_actions.yml
Normal file
20
config/default/block.block.claro_local_actions.yml
Normal file
@ -0,0 +1,20 @@
|
||||
uuid: fa2f06b4-62c4-44e5-a7c6-23773462e674
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: CdXfDmRgAvms7EQovxxWPdYi0GitxeRbVtScYK16ZH0
|
||||
id: claro_local_actions
|
||||
theme: claro
|
||||
region: content
|
||||
weight: -10
|
||||
provider: null
|
||||
plugin: local_actions_block
|
||||
settings:
|
||||
id: local_actions_block
|
||||
label: 'Primary admin actions'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
visibility: { }
|
||||
22
config/default/block.block.claro_messages.yml
Normal file
22
config/default/block.block.claro_messages.yml
Normal file
@ -0,0 +1,22 @@
|
||||
uuid: 683ef4d6-8dc1-43f7-90bf-54a56b25157b
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: '-Ac3ISpIT0PQ-whzD7_dw0SdKi6dAbRFNWdSjOiVDqg'
|
||||
id: claro_messages
|
||||
theme: claro
|
||||
region: highlighted
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_messages_block
|
||||
settings:
|
||||
id: system_messages_block
|
||||
label: 'Status messages'
|
||||
label_display: '0'
|
||||
provider: system
|
||||
visibility: { }
|
||||
20
config/default/block.block.claro_page_title.yml
Normal file
20
config/default/block.block.claro_page_title.yml
Normal file
@ -0,0 +1,20 @@
|
||||
uuid: aaaa254e-2776-4adc-8329-7480e8790a9d
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: fNwDdW063tk_ktzSWzZVeQS9wzvLooVO280BQ9WrsIs
|
||||
id: claro_page_title
|
||||
theme: claro
|
||||
region: header
|
||||
weight: -30
|
||||
provider: null
|
||||
plugin: page_title_block
|
||||
settings:
|
||||
id: page_title_block
|
||||
label: 'Page title'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
visibility: { }
|
||||
22
config/default/block.block.claro_primary_local_tasks.yml
Normal file
22
config/default/block.block.claro_primary_local_tasks.yml
Normal file
@ -0,0 +1,22 @@
|
||||
uuid: e95a78ec-0216-44ad-8960-4582e7ddc858
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: ACjBZI5shAMiiUpsz-inLYVXDqNNXRnSzAWV3kV_8Hw
|
||||
id: claro_primary_local_tasks
|
||||
theme: claro
|
||||
region: header
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: local_tasks_block
|
||||
settings:
|
||||
id: local_tasks_block
|
||||
label: 'Primary tabs'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
primary: true
|
||||
secondary: false
|
||||
visibility: { }
|
||||
22
config/default/block.block.claro_secondary_local_tasks.yml
Normal file
22
config/default/block.block.claro_secondary_local_tasks.yml
Normal file
@ -0,0 +1,22 @@
|
||||
uuid: f3716202-dff3-4e24-b947-7ea4961121f2
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- claro
|
||||
_core:
|
||||
default_config_hash: 2L0geP-ixCbCkEpW6BVF6H7vDUZN4ea07_Y9CociQm4
|
||||
id: claro_secondary_local_tasks
|
||||
theme: claro
|
||||
region: pre_content
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: local_tasks_block
|
||||
settings:
|
||||
id: local_tasks_block
|
||||
label: 'Secondary tabs'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
primary: false
|
||||
secondary: true
|
||||
visibility: { }
|
||||
27
config/default/block.block.dchadwick_account_menu.yml
Normal file
27
config/default/block.block.dchadwick_account_menu.yml
Normal file
@ -0,0 +1,27 @@
|
||||
uuid: 192e9e9a-98b0-4bec-9192-ffae83808cdc
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.account
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- dchadwick
|
||||
_core:
|
||||
default_config_hash: gmxYWWHmgbe0Pnv8y48ZLSLH5mEHejOjAP6RLxUfdzU
|
||||
id: dchadwick_account_menu
|
||||
theme: dchadwick
|
||||
region: footer_bottom
|
||||
weight: -4
|
||||
provider: null
|
||||
plugin: 'system_menu_block:account'
|
||||
settings:
|
||||
id: 'system_menu_block:account'
|
||||
label: 'User account menu'
|
||||
label_display: '0'
|
||||
provider: system
|
||||
level: 1
|
||||
depth: 1
|
||||
expand_all_items: false
|
||||
visibility: { }
|
||||
22
config/default/block.block.dchadwick_breadcrumbs.yml
Normal file
22
config/default/block.block.dchadwick_breadcrumbs.yml
Normal file
@ -0,0 +1,22 @@
|
||||
uuid: 4b85edb7-ba0c-4618-9193-05f3f6303475
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- dchadwick
|
||||
_core:
|
||||
default_config_hash: VhBzWb7lMRtIOg9G7VSw_0uopi-7zXeHq4vXqqV1HFE
|
||||
id: dchadwick_breadcrumbs
|
||||
theme: dchadwick
|
||||
region: content
|
||||
weight: -3
|
||||
provider: null
|
||||
plugin: system_breadcrumb_block
|
||||
settings:
|
||||
id: system_breadcrumb_block
|
||||
label: Breadcrumbs
|
||||
label_display: '0'
|
||||
provider: system
|
||||
visibility: { }
|
||||
22
config/default/block.block.dchadwick_content.yml
Normal file
22
config/default/block.block.dchadwick_content.yml
Normal file
@ -0,0 +1,22 @@
|
||||
uuid: 1cd11bf5-a6d0-4630-a13d-596b150c6249
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- dchadwick
|
||||
_core:
|
||||
default_config_hash: erQSEZF2XUjNmgTl0uNRBzmg18ZGXwUcw2FhApoeuHk
|
||||
id: dchadwick_content
|
||||
theme: dchadwick
|
||||
region: content
|
||||
weight: -1
|
||||
provider: null
|
||||
plugin: system_main_block
|
||||
settings:
|
||||
id: system_main_block
|
||||
label: 'Main page content'
|
||||
label_display: '0'
|
||||
provider: system
|
||||
visibility: { }
|
||||
27
config/default/block.block.dchadwick_main_menu.yml
Normal file
27
config/default/block.block.dchadwick_main_menu.yml
Normal file
@ -0,0 +1,27 @@
|
||||
uuid: 59c7eadc-a488-4845-a02f-12596b692828
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.main
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- dchadwick
|
||||
_core:
|
||||
default_config_hash: KWAiziL39uEzmOJEql_wbUP2RtqGceL3WM2CfxhMelE
|
||||
id: dchadwick_main_menu
|
||||
theme: dchadwick
|
||||
region: navigation
|
||||
weight: -5
|
||||
provider: null
|
||||
plugin: 'system_menu_block:main'
|
||||
settings:
|
||||
id: 'system_menu_block:main'
|
||||
label: 'Main navigation'
|
||||
label_display: '0'
|
||||
provider: system
|
||||
level: 1
|
||||
depth: 2
|
||||
expand_all_items: true
|
||||
visibility: { }
|
||||
22
config/default/block.block.dchadwick_messages.yml
Normal file
22
config/default/block.block.dchadwick_messages.yml
Normal file
@ -0,0 +1,22 @@
|
||||
uuid: a533c3a2-dc70-473f-bc43-c0364e52fbec
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- dchadwick
|
||||
_core:
|
||||
default_config_hash: BZ5tpW7H8X4PVGRm3MImTIHd2tN0eF7zOtp4SpRYUA0
|
||||
id: dchadwick_messages
|
||||
theme: dchadwick
|
||||
region: navigation
|
||||
weight: -2
|
||||
provider: null
|
||||
plugin: system_messages_block
|
||||
settings:
|
||||
id: system_messages_block
|
||||
label: 'Status messages'
|
||||
label_display: '0'
|
||||
provider: system
|
||||
visibility: { }
|
||||
20
config/default/block.block.dchadwick_page_title.yml
Normal file
20
config/default/block.block.dchadwick_page_title.yml
Normal file
@ -0,0 +1,20 @@
|
||||
uuid: c459f506-b9a2-409b-a0d9-cd4a1d6533da
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- dchadwick
|
||||
_core:
|
||||
default_config_hash: 6aOgWsNTXjqrDm98TXSAjP6qd2nCijD1xw45MrnbK-Y
|
||||
id: dchadwick_page_title
|
||||
theme: dchadwick
|
||||
region: content
|
||||
weight: -2
|
||||
provider: null
|
||||
plugin: page_title_block
|
||||
settings:
|
||||
id: page_title_block
|
||||
label: 'Page title'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
visibility: { }
|
||||
@ -0,0 +1,20 @@
|
||||
uuid: 228045a8-09c3-45d2-ac7f-95dce918776c
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- dchadwick
|
||||
_core:
|
||||
default_config_hash: Q9_2whdOj1YIomfvsIfopROW4FT_X5pY0DjdOiOaQ5U
|
||||
id: dchadwick_primary_admin_actions
|
||||
theme: dchadwick
|
||||
region: navigation
|
||||
weight: -4
|
||||
provider: null
|
||||
plugin: local_actions_block
|
||||
settings:
|
||||
id: local_actions_block
|
||||
label: 'Primary admin actions'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
visibility: { }
|
||||
22
config/default/block.block.dchadwick_primary_local_tasks.yml
Normal file
22
config/default/block.block.dchadwick_primary_local_tasks.yml
Normal file
@ -0,0 +1,22 @@
|
||||
uuid: 9d77b799-920f-4646-aac9-bd01d3ff15c5
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- dchadwick
|
||||
_core:
|
||||
default_config_hash: nGE3EoPQQaQCuqTUtZgw0-KIzmrqdKDzdNQf2JyPUt4
|
||||
id: dchadwick_primary_local_tasks
|
||||
theme: dchadwick
|
||||
region: content
|
||||
weight: -4
|
||||
provider: null
|
||||
plugin: local_tasks_block
|
||||
settings:
|
||||
id: local_tasks_block
|
||||
label: 'Primary tabs'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
primary: true
|
||||
secondary: false
|
||||
visibility: { }
|
||||
@ -0,0 +1,22 @@
|
||||
uuid: f130fc5a-9d5a-4118-a444-d3ca72e08e92
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- dchadwick
|
||||
_core:
|
||||
default_config_hash: ydSxdq7R66I8UMC460rOzlfzvlUL4VRbdwc6z9DWaUI
|
||||
id: dchadwick_secondary_local_tasks
|
||||
theme: dchadwick
|
||||
region: navigation
|
||||
weight: -3
|
||||
provider: null
|
||||
plugin: local_tasks_block
|
||||
settings:
|
||||
id: local_tasks_block
|
||||
label: 'Secondary tabs'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
primary: false
|
||||
secondary: true
|
||||
visibility: { }
|
||||
27
config/default/block.block.stark_account_menu.yml
Normal file
27
config/default/block.block.stark_account_menu.yml
Normal file
@ -0,0 +1,27 @@
|
||||
uuid: 24b5bbe5-d40c-4b80-9ef5-308b3fb3992a
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.account
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- stark
|
||||
_core:
|
||||
default_config_hash: gmxYWWHmgbe0Pnv8y48ZLSLH5mEHejOjAP6RLxUfdzU
|
||||
id: stark_account_menu
|
||||
theme: stark
|
||||
region: secondary_menu
|
||||
weight: -4
|
||||
provider: null
|
||||
plugin: 'system_menu_block:account'
|
||||
settings:
|
||||
id: 'system_menu_block:account'
|
||||
label: 'User account menu'
|
||||
label_display: '0'
|
||||
provider: system
|
||||
level: 1
|
||||
depth: 1
|
||||
expand_all_items: false
|
||||
visibility: { }
|
||||
22
config/default/block.block.stark_breadcrumbs.yml
Normal file
22
config/default/block.block.stark_breadcrumbs.yml
Normal file
@ -0,0 +1,22 @@
|
||||
uuid: 20226358-bd41-4e6b-aa70-a1c43865b86d
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- stark
|
||||
_core:
|
||||
default_config_hash: VhBzWb7lMRtIOg9G7VSw_0uopi-7zXeHq4vXqqV1HFE
|
||||
id: stark_breadcrumbs
|
||||
theme: stark
|
||||
region: breadcrumb
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_breadcrumb_block
|
||||
settings:
|
||||
id: system_breadcrumb_block
|
||||
label: Breadcrumbs
|
||||
label_display: '0'
|
||||
provider: system
|
||||
visibility: { }
|
||||
22
config/default/block.block.stark_content.yml
Normal file
22
config/default/block.block.stark_content.yml
Normal file
@ -0,0 +1,22 @@
|
||||
uuid: 5fda7ef3-d5ac-4c64-8b74-a607164c2cfc
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- stark
|
||||
_core:
|
||||
default_config_hash: erQSEZF2XUjNmgTl0uNRBzmg18ZGXwUcw2FhApoeuHk
|
||||
id: stark_content
|
||||
theme: stark
|
||||
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: { }
|
||||
27
config/default/block.block.stark_main_menu.yml
Normal file
27
config/default/block.block.stark_main_menu.yml
Normal file
@ -0,0 +1,27 @@
|
||||
uuid: bb614193-b83d-48b8-a329-270abb75dd0f
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.main
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- stark
|
||||
_core:
|
||||
default_config_hash: KWAiziL39uEzmOJEql_wbUP2RtqGceL3WM2CfxhMelE
|
||||
id: stark_main_menu
|
||||
theme: stark
|
||||
region: primary_menu
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'system_menu_block:main'
|
||||
settings:
|
||||
id: 'system_menu_block:main'
|
||||
label: 'Main navigation'
|
||||
label_display: '0'
|
||||
provider: system
|
||||
level: 1
|
||||
depth: 2
|
||||
expand_all_items: true
|
||||
visibility: { }
|
||||
22
config/default/block.block.stark_messages.yml
Normal file
22
config/default/block.block.stark_messages.yml
Normal file
@ -0,0 +1,22 @@
|
||||
uuid: c27f09e6-33b4-40ba-a55c-f8bb942fa3b9
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- stark
|
||||
_core:
|
||||
default_config_hash: BZ5tpW7H8X4PVGRm3MImTIHd2tN0eF7zOtp4SpRYUA0
|
||||
id: stark_messages
|
||||
theme: stark
|
||||
region: highlighted
|
||||
weight: -5
|
||||
provider: null
|
||||
plugin: system_messages_block
|
||||
settings:
|
||||
id: system_messages_block
|
||||
label: 'Status messages'
|
||||
label_display: '0'
|
||||
provider: system
|
||||
visibility: { }
|
||||
20
config/default/block.block.stark_page_title.yml
Normal file
20
config/default/block.block.stark_page_title.yml
Normal file
@ -0,0 +1,20 @@
|
||||
uuid: 8c525159-b05c-485d-8a24-6f1cbfa64f90
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- stark
|
||||
_core:
|
||||
default_config_hash: 6aOgWsNTXjqrDm98TXSAjP6qd2nCijD1xw45MrnbK-Y
|
||||
id: stark_page_title
|
||||
theme: stark
|
||||
region: content
|
||||
weight: -5
|
||||
provider: null
|
||||
plugin: page_title_block
|
||||
settings:
|
||||
id: page_title_block
|
||||
label: 'Page title'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
visibility: { }
|
||||
20
config/default/block.block.stark_primary_admin_actions.yml
Normal file
20
config/default/block.block.stark_primary_admin_actions.yml
Normal file
@ -0,0 +1,20 @@
|
||||
uuid: f23bafa8-1243-4662-8b6a-e7f19115a6bb
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- stark
|
||||
_core:
|
||||
default_config_hash: Q9_2whdOj1YIomfvsIfopROW4FT_X5pY0DjdOiOaQ5U
|
||||
id: stark_primary_admin_actions
|
||||
theme: stark
|
||||
region: highlighted
|
||||
weight: -5
|
||||
provider: null
|
||||
plugin: local_actions_block
|
||||
settings:
|
||||
id: local_actions_block
|
||||
label: 'Primary admin actions'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
visibility: { }
|
||||
22
config/default/block.block.stark_primary_local_tasks.yml
Normal file
22
config/default/block.block.stark_primary_local_tasks.yml
Normal file
@ -0,0 +1,22 @@
|
||||
uuid: 04fc3ba2-3c28-49f6-9261-b47f02049d2c
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- stark
|
||||
_core:
|
||||
default_config_hash: nGE3EoPQQaQCuqTUtZgw0-KIzmrqdKDzdNQf2JyPUt4
|
||||
id: stark_primary_local_tasks
|
||||
theme: stark
|
||||
region: highlighted
|
||||
weight: -4
|
||||
provider: null
|
||||
plugin: local_tasks_block
|
||||
settings:
|
||||
id: local_tasks_block
|
||||
label: 'Primary tabs'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
primary: true
|
||||
secondary: false
|
||||
visibility: { }
|
||||
23
config/default/block.block.stark_search_form_narrow.yml
Normal file
23
config/default/block.block.stark_search_form_narrow.yml
Normal file
@ -0,0 +1,23 @@
|
||||
uuid: 12ee9a95-898f-459f-83e7-593bd6eb103c
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- search
|
||||
theme:
|
||||
- stark
|
||||
_core:
|
||||
default_config_hash: yEBET0cqDbk8dkWzaJw-8CKft0961VBflsISoSR6Lj8
|
||||
id: stark_search_form_narrow
|
||||
theme: stark
|
||||
region: primary_menu
|
||||
weight: -4
|
||||
provider: null
|
||||
plugin: search_form_block
|
||||
settings:
|
||||
id: search_form_block
|
||||
label: 'Search form (narrow)'
|
||||
label_display: '0'
|
||||
provider: search
|
||||
page_id: ''
|
||||
visibility: { }
|
||||
23
config/default/block.block.stark_search_form_wide.yml
Normal file
23
config/default/block.block.stark_search_form_wide.yml
Normal file
@ -0,0 +1,23 @@
|
||||
uuid: efecb0e7-2b8b-421a-9703-9b93d2e13f06
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- search
|
||||
theme:
|
||||
- stark
|
||||
_core:
|
||||
default_config_hash: imMyHD6LYci0gtXq56qr9ZKGHzbEG9uFydrN5EhKtSU
|
||||
id: stark_search_form_wide
|
||||
theme: stark
|
||||
region: secondary_menu
|
||||
weight: -5
|
||||
provider: null
|
||||
plugin: search_form_block
|
||||
settings:
|
||||
id: search_form_block
|
||||
label: 'Search form (wide)'
|
||||
label_display: '0'
|
||||
provider: search
|
||||
page_id: ''
|
||||
visibility: { }
|
||||
22
config/default/block.block.stark_secondary_local_tasks.yml
Normal file
22
config/default/block.block.stark_secondary_local_tasks.yml
Normal file
@ -0,0 +1,22 @@
|
||||
uuid: 47c43eff-1232-4caf-b00f-663c8b3ce3f9
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- stark
|
||||
_core:
|
||||
default_config_hash: ydSxdq7R66I8UMC460rOzlfzvlUL4VRbdwc6z9DWaUI
|
||||
id: stark_secondary_local_tasks
|
||||
theme: stark
|
||||
region: highlighted
|
||||
weight: -2
|
||||
provider: null
|
||||
plugin: local_tasks_block
|
||||
settings:
|
||||
id: local_tasks_block
|
||||
label: 'Secondary tabs'
|
||||
label_display: '0'
|
||||
provider: core
|
||||
primary: false
|
||||
secondary: true
|
||||
visibility: { }
|
||||
25
config/default/block.block.stark_site_branding.yml
Normal file
25
config/default/block.block.stark_site_branding.yml
Normal file
@ -0,0 +1,25 @@
|
||||
uuid: 66cfb654-f5d6-4202-9be7-8b28af3db633
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- stark
|
||||
_core:
|
||||
default_config_hash: n_nlgjggHVfQt2H__zvLOKB2YtjPDbQ5tHijF9LE1aM
|
||||
id: stark_site_branding
|
||||
theme: stark
|
||||
region: header
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_branding_block
|
||||
settings:
|
||||
id: system_branding_block
|
||||
label: 'Site branding'
|
||||
label_display: '0'
|
||||
provider: system
|
||||
use_site_logo: true
|
||||
use_site_name: true
|
||||
use_site_slogan: false
|
||||
visibility: { }
|
||||
10
config/default/block_content.type.basic.yml
Normal file
10
config/default/block_content.type.basic.yml
Normal file
@ -0,0 +1,10 @@
|
||||
uuid: 0441e2a0-b598-4a89-8a52-7c8bdf817be4
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: pQP5iQy4SdhAMVcjDUncCfkJmTofnHVtXrsMzx4k6Yk
|
||||
id: basic
|
||||
label: 'Basic block'
|
||||
revision: false
|
||||
description: 'A basic block contains a title and a body.'
|
||||
3
config/default/claro.settings.yml
Normal file
3
config/default/claro.settings.yml
Normal file
@ -0,0 +1,3 @@
|
||||
third_party_settings:
|
||||
shortcut:
|
||||
module_link: true
|
||||
3
config/default/comment.settings.yml
Normal file
3
config/default/comment.settings.yml
Normal file
@ -0,0 +1,3 @@
|
||||
_core:
|
||||
default_config_hash: YNUW2Ij5uE7a4oaXp3i_2lvaFdYM1zNKPPfnEjB0jEc
|
||||
log_ip_addresses: false
|
||||
10
config/default/comment.type.comment.yml
Normal file
10
config/default/comment.type.comment.yml
Normal file
@ -0,0 +1,10 @@
|
||||
uuid: 8de515d7-a087-4323-8af8-a7abefdffd74
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: bqZsN31T2n0UjcbyCpOPi9D2iO0sAOHR7FnEs9qMvaA
|
||||
id: comment
|
||||
label: 'Default comments'
|
||||
target_entity_type_id: node
|
||||
description: 'Allows commenting on content'
|
||||
14
config/default/contact.form.feedback.yml
Normal file
14
config/default/contact.form.feedback.yml
Normal file
@ -0,0 +1,14 @@
|
||||
uuid: 4a1a5bbb-224b-4b27-a68d-9e057ae0ea61
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: vymHlgJy26BuI5GGj9-IXjwR3dRC5C0tij4BpWJnoqw
|
||||
id: feedback
|
||||
label: 'Website feedback'
|
||||
recipients:
|
||||
- admin@example.com
|
||||
reply: ''
|
||||
weight: 0
|
||||
message: 'Your message has been sent.'
|
||||
redirect: ''
|
||||
13
config/default/contact.form.personal.yml
Normal file
13
config/default/contact.form.personal.yml
Normal file
@ -0,0 +1,13 @@
|
||||
uuid: 50507bde-ec40-4eed-a638-6c75e5aed931
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: jonvgt3CkUM2eMLTFwWfHileWWDC4YtXCuIlCahTk_I
|
||||
id: personal
|
||||
label: 'Personal contact form'
|
||||
recipients: { }
|
||||
reply: ''
|
||||
weight: 0
|
||||
message: 'Your message has been sent.'
|
||||
redirect: ''
|
||||
7
config/default/contact.settings.yml
Normal file
7
config/default/contact.settings.yml
Normal file
@ -0,0 +1,7 @@
|
||||
_core:
|
||||
default_config_hash: U69DBeuvXuNVOC15rVNaBjDPK2fWFbo9v4takdYSSO8
|
||||
default_form: feedback
|
||||
flood:
|
||||
limit: 5
|
||||
interval: 3600
|
||||
user_default_enabled: true
|
||||
@ -0,0 +1,24 @@
|
||||
uuid: 42d68e82-8ec6-4bf0-8dc9-51384da0c723
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- node.type.page
|
||||
_core:
|
||||
default_config_hash: fPUEnm4T5zfZRr3ttDUqq7yCDd2uW3clWD-pvos4tlQ
|
||||
id: node.page.promote
|
||||
field_name: promote
|
||||
entity_type: node
|
||||
bundle: page
|
||||
label: 'Promoted to front page'
|
||||
description: ''
|
||||
required: false
|
||||
translatable: false
|
||||
default_value:
|
||||
-
|
||||
value: 0
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
on_label: 'On'
|
||||
off_label: 'Off'
|
||||
field_type: boolean
|
||||
10
config/default/core.date_format.fallback.yml
Normal file
10
config/default/core.date_format.fallback.yml
Normal file
@ -0,0 +1,10 @@
|
||||
uuid: 598cc275-81c2-4065-bb47-91715704ed3f
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: 7klS5IWXrwzVaPpYZFAs6wcx8U2FF1X73OfrtTsvuvE
|
||||
id: fallback
|
||||
label: 'Fallback date format'
|
||||
locked: true
|
||||
pattern: 'D, m/d/Y - H:i'
|
||||
10
config/default/core.date_format.html_date.yml
Normal file
10
config/default/core.date_format.html_date.yml
Normal file
@ -0,0 +1,10 @@
|
||||
uuid: 3cead576-010c-4955-af9b-384477c83ced
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: EOQltUQPmgc6UQ2rcJ4Xi_leCEJj5ui0TR-12duS-Tk
|
||||
id: html_date
|
||||
label: 'HTML Date'
|
||||
locked: true
|
||||
pattern: Y-m-d
|
||||
10
config/default/core.date_format.html_datetime.yml
Normal file
10
config/default/core.date_format.html_datetime.yml
Normal file
@ -0,0 +1,10 @@
|
||||
uuid: 7bcc6fd3-cd7e-4224-9cda-218b174287d3
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: jxfClwZIRXIdcvMrE--WkcZxDGUVoOIE3Sm2NRZlFuE
|
||||
id: html_datetime
|
||||
label: 'HTML Datetime'
|
||||
locked: true
|
||||
pattern: 'Y-m-d\TH:i:sO'
|
||||
10
config/default/core.date_format.html_month.yml
Normal file
10
config/default/core.date_format.html_month.yml
Normal file
@ -0,0 +1,10 @@
|
||||
uuid: 10cbbf2c-8edf-4071-afb8-1e7f93777acd
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: Z7KuCUwM_WdTNvLcoltuX3_8d-s-8FZkTN6KgNwF0eM
|
||||
id: html_month
|
||||
label: 'HTML Month'
|
||||
locked: true
|
||||
pattern: Y-m
|
||||
10
config/default/core.date_format.html_time.yml
Normal file
10
config/default/core.date_format.html_time.yml
Normal file
@ -0,0 +1,10 @@
|
||||
uuid: 291b4e87-8766-4c33-977d-3f4d7d87e4d2
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: M7yqicYkU36hRy5p9drAaGBBihhUD1OyujFrAaQ93ZE
|
||||
id: html_time
|
||||
label: 'HTML Time'
|
||||
locked: true
|
||||
pattern: 'H:i:s'
|
||||
10
config/default/core.date_format.html_week.yml
Normal file
10
config/default/core.date_format.html_week.yml
Normal file
@ -0,0 +1,10 @@
|
||||
uuid: 369de7f4-ecdc-4f17-b66a-3907b22f72d7
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: wKD4WsoV_wFgv2vgI4mcAAFSIzrye17ykzdwrnApkfY
|
||||
id: html_week
|
||||
label: 'HTML Week'
|
||||
locked: true
|
||||
pattern: Y-\WW
|
||||
10
config/default/core.date_format.html_year.yml
Normal file
10
config/default/core.date_format.html_year.yml
Normal file
@ -0,0 +1,10 @@
|
||||
uuid: 3dcbae28-3f93-4519-b950-2c9b338c7560
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: OjekiQuX9RbVQ2_8jOHBL94RgYLePqX7wpfNGgcQzrk
|
||||
id: html_year
|
||||
label: 'HTML Year'
|
||||
locked: true
|
||||
pattern: 'Y'
|
||||
10
config/default/core.date_format.html_yearless_date.yml
Normal file
10
config/default/core.date_format.html_yearless_date.yml
Normal file
@ -0,0 +1,10 @@
|
||||
uuid: 4f7e369d-de2c-46b2-a14d-e6d6a9af36fa
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: 5VpawMrKPEPCkoO4YpPa0TDFO2dgiIHfTziJtwlmUxc
|
||||
id: html_yearless_date
|
||||
label: 'HTML Yearless date'
|
||||
locked: true
|
||||
pattern: m-d
|
||||
10
config/default/core.date_format.long.yml
Normal file
10
config/default/core.date_format.long.yml
Normal file
@ -0,0 +1,10 @@
|
||||
uuid: f8cb0323-6236-4365-8410-bc47d0436ebf
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: og8sWXhBuHbLMw3CoiBEZjgqSyhFBFmcbUW_wLcfNbo
|
||||
id: long
|
||||
label: 'Default long date'
|
||||
locked: false
|
||||
pattern: 'l, F j, Y - H:i'
|
||||
10
config/default/core.date_format.medium.yml
Normal file
10
config/default/core.date_format.medium.yml
Normal file
@ -0,0 +1,10 @@
|
||||
uuid: 64a33b5a-7964-42a4-93ea-08241bd8e7a2
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: nzL5d024NjXIX_8TlT6uFAu973lmfkmHklJC-2i9rAE
|
||||
id: medium
|
||||
label: 'Default medium date'
|
||||
locked: false
|
||||
pattern: 'D, m/d/Y - H:i'
|
||||
10
config/default/core.date_format.short.yml
Normal file
10
config/default/core.date_format.short.yml
Normal file
@ -0,0 +1,10 @@
|
||||
uuid: 45aaf3d0-b08f-42a9-9ee6-56ead4a27a07
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: AlzeyytA8InBgxIG9H2UDJYs3CG98Zj6yRsDKmlbZwA
|
||||
id: short
|
||||
label: 'Default short date'
|
||||
locked: false
|
||||
pattern: 'm/d/Y - H:i'
|
||||
@ -0,0 +1,35 @@
|
||||
uuid: 5d0f9a63-1888-49f7-ba05-504adb4db697
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_content.type.basic
|
||||
- field.field.block_content.basic.body
|
||||
module:
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: jAps3FCxvKecABS_tgExbhCZrBLQB3bNPWw18WjE3ss
|
||||
id: block_content.basic.default
|
||||
targetEntityType: block_content
|
||||
bundle: basic
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
type: text_textarea_with_summary
|
||||
weight: -4
|
||||
region: content
|
||||
settings:
|
||||
rows: 9
|
||||
summary_rows: 3
|
||||
placeholder: ''
|
||||
show_summary: false
|
||||
third_party_settings: { }
|
||||
info:
|
||||
type: string_textfield
|
||||
weight: -5
|
||||
region: content
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
hidden: { }
|
||||
@ -0,0 +1,36 @@
|
||||
uuid: 2ce264bd-ae18-46d0-a499-202c277a40c9
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- comment.type.comment
|
||||
- field.field.comment.comment.comment_body
|
||||
module:
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: I0Pa0aQvT_jawlPo9oz4FE3h_ickc55dYKTPl6gILes
|
||||
id: comment.comment.default
|
||||
targetEntityType: comment
|
||||
bundle: comment
|
||||
mode: default
|
||||
content:
|
||||
author:
|
||||
weight: -2
|
||||
region: content
|
||||
comment_body:
|
||||
type: text_textarea
|
||||
weight: 11
|
||||
region: content
|
||||
settings:
|
||||
rows: 5
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
subject:
|
||||
type: string_textfield
|
||||
weight: 10
|
||||
region: content
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
hidden: { }
|
||||
109
config/default/core.entity_form_display.node.article.default.yml
Normal file
109
config/default/core.entity_form_display.node.article.default.yml
Normal file
@ -0,0 +1,109 @@
|
||||
uuid: 64d39ca6-91f0-4a0a-9322-031ac399970b
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.node.article.body
|
||||
- field.field.node.article.comment
|
||||
- field.field.node.article.field_image
|
||||
- field.field.node.article.field_tags
|
||||
- image.style.thumbnail
|
||||
- node.type.article
|
||||
module:
|
||||
- comment
|
||||
- image
|
||||
- path
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: ewbd6G2uX456-bgwseM2Q-KQG3RkASoyHmTh-XR3oLU
|
||||
id: node.article.default
|
||||
targetEntityType: node
|
||||
bundle: article
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
type: text_textarea_with_summary
|
||||
weight: 2
|
||||
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: 1
|
||||
region: content
|
||||
settings:
|
||||
progress_indicator: throbber
|
||||
preview_image_style: thumbnail
|
||||
third_party_settings: { }
|
||||
field_tags:
|
||||
type: entity_reference_autocomplete_tags
|
||||
weight: 3
|
||||
region: content
|
||||
settings:
|
||||
match_operator: CONTAINS
|
||||
match_limit: 10
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
path:
|
||||
type: path
|
||||
weight: 30
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
promote:
|
||||
type: boolean_checkbox
|
||||
weight: 15
|
||||
region: content
|
||||
settings:
|
||||
display_label: true
|
||||
third_party_settings: { }
|
||||
status:
|
||||
type: boolean_checkbox
|
||||
weight: 120
|
||||
region: content
|
||||
settings:
|
||||
display_label: true
|
||||
third_party_settings: { }
|
||||
sticky:
|
||||
type: boolean_checkbox
|
||||
weight: 16
|
||||
region: content
|
||||
settings:
|
||||
display_label: true
|
||||
third_party_settings: { }
|
||||
title:
|
||||
type: string_textfield
|
||||
weight: 0
|
||||
region: content
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
uid:
|
||||
type: entity_reference_autocomplete
|
||||
weight: 5
|
||||
region: content
|
||||
settings:
|
||||
match_operator: CONTAINS
|
||||
match_limit: 10
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
hidden: { }
|
||||
@ -0,0 +1,79 @@
|
||||
uuid: ea248c42-f4c2-493a-bf6c-53c9b97104ad
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.node.page.body
|
||||
- node.type.page
|
||||
module:
|
||||
- path
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: SfpLhPExzvR0MgFp0Wp7CrmgEnhcqQ-fXIWFhbf4ue0
|
||||
id: node.page.default
|
||||
targetEntityType: node
|
||||
bundle: page
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
type: text_textarea_with_summary
|
||||
weight: 31
|
||||
region: content
|
||||
settings:
|
||||
rows: 9
|
||||
summary_rows: 3
|
||||
placeholder: ''
|
||||
show_summary: false
|
||||
third_party_settings: { }
|
||||
created:
|
||||
type: datetime_timestamp
|
||||
weight: 10
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
path:
|
||||
type: path
|
||||
weight: 30
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
promote:
|
||||
type: boolean_checkbox
|
||||
weight: 15
|
||||
region: content
|
||||
settings:
|
||||
display_label: true
|
||||
third_party_settings: { }
|
||||
status:
|
||||
type: boolean_checkbox
|
||||
weight: 120
|
||||
region: content
|
||||
settings:
|
||||
display_label: true
|
||||
third_party_settings: { }
|
||||
sticky:
|
||||
type: boolean_checkbox
|
||||
weight: 16
|
||||
region: content
|
||||
settings:
|
||||
display_label: true
|
||||
third_party_settings: { }
|
||||
title:
|
||||
type: string_textfield
|
||||
weight: -5
|
||||
region: content
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
uid:
|
||||
type: entity_reference_autocomplete
|
||||
weight: 5
|
||||
region: content
|
||||
settings:
|
||||
match_operator: CONTAINS
|
||||
match_limit: 10
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
hidden: { }
|
||||
@ -0,0 +1,38 @@
|
||||
uuid: b46819e1-2e0e-439a-8040-fddcfaf7a656
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.user.user.user_picture
|
||||
- image.style.thumbnail
|
||||
module:
|
||||
- image
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: FaQ9Ptcpxpg30AtiqRDtl_8zbJArHP1LPfug_s59TOA
|
||||
id: user.user.default
|
||||
targetEntityType: user
|
||||
bundle: user
|
||||
mode: default
|
||||
content:
|
||||
account:
|
||||
weight: -10
|
||||
region: content
|
||||
contact:
|
||||
weight: 5
|
||||
region: content
|
||||
language:
|
||||
weight: 0
|
||||
region: content
|
||||
timezone:
|
||||
weight: 6
|
||||
region: content
|
||||
user_picture:
|
||||
type: image_image
|
||||
weight: -1
|
||||
region: content
|
||||
settings:
|
||||
progress_indicator: throbber
|
||||
preview_image_style: thumbnail
|
||||
third_party_settings: { }
|
||||
hidden: { }
|
||||
13
config/default/core.entity_form_mode.user.register.yml
Normal file
13
config/default/core.entity_form_mode.user.register.yml
Normal file
@ -0,0 +1,13 @@
|
||||
uuid: a2344efc-c9dc-4fdb-9474-e5c567474ece
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: 5pE_4hurqtIlZN3XDi7eTo5RG13BMG0Rh9HYlRI3h8U
|
||||
id: user.register
|
||||
label: Register
|
||||
description: ''
|
||||
targetEntityType: user
|
||||
cache: true
|
||||
@ -0,0 +1,24 @@
|
||||
uuid: a3e8ba22-70d5-4273-9b8c-91618e294a2f
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_content.type.basic
|
||||
- field.field.block_content.basic.body
|
||||
module:
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: hBNNDTFwakREOTa6GGMqN899Iyrii0hInwSJtQ7Kj30
|
||||
id: block_content.basic.default
|
||||
targetEntityType: block_content
|
||||
bundle: basic
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
type: text_default
|
||||
label: hidden
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
weight: 0
|
||||
region: content
|
||||
hidden: { }
|
||||
@ -0,0 +1,27 @@
|
||||
uuid: 727d5355-7b2f-4326-8dc6-a4267b2f70de
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- comment.type.comment
|
||||
- field.field.comment.comment.comment_body
|
||||
module:
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: aBQUGsQ46M4048fIlFuTXwl2zV0j2cJX89CTUobh9hA
|
||||
id: comment.comment.default
|
||||
targetEntityType: comment
|
||||
bundle: comment
|
||||
mode: default
|
||||
content:
|
||||
comment_body:
|
||||
type: text_default
|
||||
label: hidden
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
weight: 0
|
||||
region: content
|
||||
links:
|
||||
weight: 100
|
||||
region: content
|
||||
hidden: { }
|
||||
@ -0,0 +1,65 @@
|
||||
uuid: bae0405a-a2db-4250-ae92-2551c32f1b2d
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- core.entity_view_display.comment.comment.default
|
||||
- field.field.node.article.body
|
||||
- field.field.node.article.comment
|
||||
- field.field.node.article.field_image
|
||||
- field.field.node.article.field_tags
|
||||
- image.style.wide
|
||||
- node.type.article
|
||||
module:
|
||||
- comment
|
||||
- image
|
||||
- text
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: br6izr-iGEu--JvNbCJNtOBpRnxpFLXfoV5y61U9Nqc
|
||||
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: wide
|
||||
image_loading:
|
||||
attribute: eager
|
||||
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: { }
|
||||
28
config/default/core.entity_view_display.node.article.rss.yml
Normal file
28
config/default/core.entity_view_display.node.article.rss.yml
Normal file
@ -0,0 +1,28 @@
|
||||
uuid: 2ab5c278-08cb-4e29-bd0f-3e8428fb7e80
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- core.entity_view_mode.node.rss
|
||||
- field.field.node.article.body
|
||||
- field.field.node.article.comment
|
||||
- field.field.node.article.field_image
|
||||
- field.field.node.article.field_tags
|
||||
- node.type.article
|
||||
module:
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: 2rIr6K5Q0UQ9khg0zE_CK-PtJH76UL-BDDZcZnZzwCc
|
||||
id: node.article.rss
|
||||
targetEntityType: node
|
||||
bundle: article
|
||||
mode: rss
|
||||
content:
|
||||
links:
|
||||
weight: 100
|
||||
region: content
|
||||
hidden:
|
||||
body: true
|
||||
comment: true
|
||||
field_image: true
|
||||
field_tags: true
|
||||
@ -0,0 +1,57 @@
|
||||
uuid: 4a8066b6-3e26-48bd-9427-4cf7dfd37e71
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- core.entity_view_mode.node.teaser
|
||||
- field.field.node.article.body
|
||||
- field.field.node.article.comment
|
||||
- field.field.node.article.field_image
|
||||
- field.field.node.article.field_tags
|
||||
- image.style.medium
|
||||
- node.type.article
|
||||
module:
|
||||
- image
|
||||
- text
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: 83jX5ChAGdMzOxiDA_B1NjgebVMuD8lNVDgClg_QVP8
|
||||
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_style: medium
|
||||
image_link: content
|
||||
image_loading:
|
||||
attribute: lazy
|
||||
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
|
||||
@ -0,0 +1,28 @@
|
||||
uuid: 8a9da811-9832-4c2f-8d94-34a109c4fdbc
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.node.page.body
|
||||
- node.type.page
|
||||
module:
|
||||
- text
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: M_Y8L5tfmhx7DR143E05YyZSpvgil6VFvqcfBWykalg
|
||||
id: node.page.default
|
||||
targetEntityType: node
|
||||
bundle: page
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
type: text_default
|
||||
label: hidden
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
weight: 100
|
||||
region: content
|
||||
links:
|
||||
weight: 101
|
||||
region: content
|
||||
hidden: { }
|
||||
30
config/default/core.entity_view_display.node.page.teaser.yml
Normal file
30
config/default/core.entity_view_display.node.page.teaser.yml
Normal file
@ -0,0 +1,30 @@
|
||||
uuid: 2d14e348-fbb1-46d7-8095-acb5b363f152
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- core.entity_view_mode.node.teaser
|
||||
- field.field.node.page.body
|
||||
- node.type.page
|
||||
module:
|
||||
- text
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: 8BgdRtLbtQ0F__o0FHSH0Mx5fvXOra9tfT1GmNKbRYw
|
||||
id: node.page.teaser
|
||||
targetEntityType: node
|
||||
bundle: page
|
||||
mode: teaser
|
||||
content:
|
||||
body:
|
||||
type: text_summary_or_trimmed
|
||||
label: hidden
|
||||
settings:
|
||||
trim_length: 600
|
||||
third_party_settings: { }
|
||||
weight: 100
|
||||
region: content
|
||||
links:
|
||||
weight: 101
|
||||
region: content
|
||||
hidden: { }
|
||||
@ -0,0 +1,31 @@
|
||||
uuid: c8f466de-d9b1-4bc5-80e8-59e298eff14e
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- core.entity_view_mode.user.compact
|
||||
- field.field.user.user.user_picture
|
||||
- image.style.thumbnail
|
||||
module:
|
||||
- image
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: 00zr_RBdTjPjBGITD3h4c1ESQZimjdVCcHGt1trLqIY
|
||||
id: user.user.compact
|
||||
targetEntityType: user
|
||||
bundle: user
|
||||
mode: compact
|
||||
content:
|
||||
user_picture:
|
||||
type: image
|
||||
label: hidden
|
||||
settings:
|
||||
image_style: thumbnail
|
||||
image_link: content
|
||||
image_loading:
|
||||
attribute: lazy
|
||||
third_party_settings: { }
|
||||
weight: 0
|
||||
region: content
|
||||
hidden:
|
||||
member_for: true
|
||||
@ -0,0 +1,32 @@
|
||||
uuid: efd9e89c-9e97-4c80-80a4-d0e85cb8e695
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.user.user.user_picture
|
||||
- image.style.thumbnail
|
||||
module:
|
||||
- image
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: mZLyuWM9CQx2ZJVqFGSbzgFnHzudVbHBYmdU256A5Wk
|
||||
id: user.user.default
|
||||
targetEntityType: user
|
||||
bundle: user
|
||||
mode: default
|
||||
content:
|
||||
member_for:
|
||||
weight: 5
|
||||
region: content
|
||||
user_picture:
|
||||
type: image
|
||||
label: hidden
|
||||
settings:
|
||||
image_style: thumbnail
|
||||
image_link: content
|
||||
image_loading:
|
||||
attribute: lazy
|
||||
third_party_settings: { }
|
||||
weight: 0
|
||||
region: content
|
||||
hidden: { }
|
||||
13
config/default/core.entity_view_mode.block_content.full.yml
Normal file
13
config/default/core.entity_view_mode.block_content.full.yml
Normal file
@ -0,0 +1,13 @@
|
||||
uuid: 8089f903-c0ae-438e-a920-1e8420d395b9
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- block_content
|
||||
_core:
|
||||
default_config_hash: Q7yUUYeRLByl-MCGveKKF_KhAtNICLCMJuKWfugCvso
|
||||
id: block_content.full
|
||||
label: Full
|
||||
description: ''
|
||||
targetEntityType: block_content
|
||||
cache: true
|
||||
13
config/default/core.entity_view_mode.comment.full.yml
Normal file
13
config/default/core.entity_view_mode.comment.full.yml
Normal file
@ -0,0 +1,13 @@
|
||||
uuid: 4ac8ff57-d2cb-4ffa-aa72-f4531a9b2597
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- comment
|
||||
_core:
|
||||
default_config_hash: N4mUjXpPckUkVRY1PbKw4GGoL1i2ECU7PL3EreiKStk
|
||||
id: comment.full
|
||||
label: 'Full comment'
|
||||
description: ''
|
||||
targetEntityType: comment
|
||||
cache: true
|
||||
13
config/default/core.entity_view_mode.node.full.yml
Normal file
13
config/default/core.entity_view_mode.node.full.yml
Normal file
@ -0,0 +1,13 @@
|
||||
uuid: a4707506-0bef-450b-9120-8145e00b5cde
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: QJ2aZ1xfVf59aq6Pz5X7fyUOa2HxuCoTwQ_RQjoulAU
|
||||
id: node.full
|
||||
label: 'Full content'
|
||||
description: ''
|
||||
targetEntityType: node
|
||||
cache: true
|
||||
13
config/default/core.entity_view_mode.node.rss.yml
Normal file
13
config/default/core.entity_view_mode.node.rss.yml
Normal file
@ -0,0 +1,13 @@
|
||||
uuid: a21998f6-a126-45d2-a2d1-a1647fb6deeb
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: l8fiAFE3Kng_6bhLlUDnVTkTDzXWxzYFrCWTrngVXEA
|
||||
id: node.rss
|
||||
label: RSS
|
||||
description: ''
|
||||
targetEntityType: node
|
||||
cache: true
|
||||
13
config/default/core.entity_view_mode.node.search_index.yml
Normal file
13
config/default/core.entity_view_mode.node.search_index.yml
Normal file
@ -0,0 +1,13 @@
|
||||
uuid: 90916760-9a6c-4911-a1e0-1c03266f598a
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: r_A0T3aTqGDwLyvoH7wLps-0PM--RHlS8UsiJe_Ac64
|
||||
id: node.search_index
|
||||
label: 'Search index'
|
||||
description: ''
|
||||
targetEntityType: node
|
||||
cache: true
|
||||
13
config/default/core.entity_view_mode.node.search_result.yml
Normal file
13
config/default/core.entity_view_mode.node.search_result.yml
Normal file
@ -0,0 +1,13 @@
|
||||
uuid: 45887461-546e-4327-ba51-37c925ab8709
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: d8wBEm7XvJ6H3S0IneDD9PfTBklPIH7GMpxElVemPf8
|
||||
id: node.search_result
|
||||
label: 'Search result highlighting input'
|
||||
description: ''
|
||||
targetEntityType: node
|
||||
cache: true
|
||||
13
config/default/core.entity_view_mode.node.teaser.yml
Normal file
13
config/default/core.entity_view_mode.node.teaser.yml
Normal file
@ -0,0 +1,13 @@
|
||||
uuid: e01a6cff-3417-4186-b6d8-f4440ec445d2
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: KgGJDZFpMaz_8bTv6fN1bXS3Qi5LWmRJI9R53kEGsNQ
|
||||
id: node.teaser
|
||||
label: Teaser
|
||||
description: ''
|
||||
targetEntityType: node
|
||||
cache: true
|
||||
13
config/default/core.entity_view_mode.taxonomy_term.full.yml
Normal file
13
config/default/core.entity_view_mode.taxonomy_term.full.yml
Normal file
@ -0,0 +1,13 @@
|
||||
uuid: 85128683-6e59-460f-acb6-d7ff12c17355
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- taxonomy
|
||||
_core:
|
||||
default_config_hash: iukUENpf8CFvjZbGGacKX_Ges0-lU9z6zvsd32P6kbo
|
||||
id: taxonomy_term.full
|
||||
label: 'Taxonomy term page'
|
||||
description: ''
|
||||
targetEntityType: taxonomy_term
|
||||
cache: true
|
||||
13
config/default/core.entity_view_mode.user.compact.yml
Normal file
13
config/default/core.entity_view_mode.user.compact.yml
Normal file
@ -0,0 +1,13 @@
|
||||
uuid: 82744379-ab07-42d2-8bcd-a29f9c3180b3
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: TtD7OuGskOsQfoGyxXkrdtllBpR37J19d5BMQDZWJgA
|
||||
id: user.compact
|
||||
label: Compact
|
||||
description: ''
|
||||
targetEntityType: user
|
||||
cache: true
|
||||
13
config/default/core.entity_view_mode.user.full.yml
Normal file
13
config/default/core.entity_view_mode.user.full.yml
Normal file
@ -0,0 +1,13 @@
|
||||
uuid: 30099fd3-eace-4171-b2ec-d0137c91d7ba
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: ZbXunWS_xAvMZXFfinyvClDAb_RCVLt7gAzE3v16E-Q
|
||||
id: user.full
|
||||
label: 'User account'
|
||||
description: ''
|
||||
targetEntityType: user
|
||||
cache: true
|
||||
50
config/default/core.extension.yml
Normal file
50
config/default/core.extension.yml
Normal file
@ -0,0 +1,50 @@
|
||||
_core:
|
||||
default_config_hash: R4IF-ClDHXxblLcG0L7MgsLvfBIMAvi_skumNFQwkDc
|
||||
module:
|
||||
announcements_feed: 0
|
||||
automated_cron: 0
|
||||
big_pipe: 0
|
||||
block: 0
|
||||
block_content: 0
|
||||
breakpoint: 0
|
||||
ckeditor5: 0
|
||||
comment: 0
|
||||
config: 0
|
||||
contact: 0
|
||||
contextual: 0
|
||||
datetime: 0
|
||||
dblog: 0
|
||||
dynamic_page_cache: 0
|
||||
editor: 0
|
||||
field: 0
|
||||
field_ui: 0
|
||||
file: 0
|
||||
filter: 0
|
||||
help: 0
|
||||
history: 0
|
||||
image: 0
|
||||
link: 0
|
||||
menu_link_content: 0
|
||||
menu_ui: 0
|
||||
mysql: 0
|
||||
node: 0
|
||||
options: 0
|
||||
page_cache: 0
|
||||
path: 0
|
||||
path_alias: 0
|
||||
search: 0
|
||||
shortcut: 0
|
||||
system: 0
|
||||
taxonomy: 0
|
||||
text: 0
|
||||
toolbar: 0
|
||||
update: 0
|
||||
user: 0
|
||||
views_ui: 0
|
||||
views: 10
|
||||
standard: 1000
|
||||
theme:
|
||||
claro: 0
|
||||
stark: 0
|
||||
dchadwick: 0
|
||||
profile: standard
|
||||
9
config/default/core.menu.static_menu_link_overrides.yml
Normal file
9
config/default/core.menu.static_menu_link_overrides.yml
Normal file
@ -0,0 +1,9 @@
|
||||
_core:
|
||||
default_config_hash: CXhei_vpaZk-3f_Mj2cH0YmpK-ZpKHoSzVA3yZrDq0g
|
||||
definitions:
|
||||
contact__site_page:
|
||||
menu_name: footer
|
||||
parent: ''
|
||||
weight: 0
|
||||
expanded: false
|
||||
enabled: true
|
||||
4
config/default/dblog.settings.yml
Normal file
4
config/default/dblog.settings.yml
Normal file
@ -0,0 +1,4 @@
|
||||
_core:
|
||||
default_config_hash: h3AUhuSRR33I9KMv1eHZW9ijex_li0bs-HY6-Vlc64Y
|
||||
langcode: en
|
||||
row_limit: 1000
|
||||
68
config/default/editor.editor.basic_html.yml
Normal file
68
config/default/editor.editor.basic_html.yml
Normal file
@ -0,0 +1,68 @@
|
||||
uuid: 2f2bad7d-8741-4406-8e15-9956f8079f8d
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- filter.format.basic_html
|
||||
module:
|
||||
- ckeditor5
|
||||
_core:
|
||||
default_config_hash: Qi2tIe-L97EutlMmhEvhsNxZOpOoA-RH82c4BQb5n4A
|
||||
format: basic_html
|
||||
editor: ckeditor5
|
||||
settings:
|
||||
toolbar:
|
||||
items:
|
||||
- bold
|
||||
- italic
|
||||
- '|'
|
||||
- link
|
||||
- '|'
|
||||
- bulletedList
|
||||
- numberedList
|
||||
- '|'
|
||||
- blockQuote
|
||||
- drupalInsertImage
|
||||
- '|'
|
||||
- heading
|
||||
- code
|
||||
- '|'
|
||||
- sourceEditing
|
||||
plugins:
|
||||
ckeditor5_heading:
|
||||
enabled_headings:
|
||||
- heading2
|
||||
- heading3
|
||||
- heading4
|
||||
- heading5
|
||||
- heading6
|
||||
ckeditor5_imageResize:
|
||||
allow_resize: true
|
||||
ckeditor5_list:
|
||||
properties:
|
||||
reversed: false
|
||||
startIndex: true
|
||||
multiBlock: true
|
||||
ckeditor5_sourceEditing:
|
||||
allowed_tags:
|
||||
- '<cite>'
|
||||
- '<dl>'
|
||||
- '<dt>'
|
||||
- '<dd>'
|
||||
- '<a hreflang>'
|
||||
- '<blockquote cite>'
|
||||
- '<ul type>'
|
||||
- '<ol type>'
|
||||
- '<h2 id>'
|
||||
- '<h3 id>'
|
||||
- '<h4 id>'
|
||||
- '<h5 id>'
|
||||
- '<h6 id>'
|
||||
image_upload:
|
||||
status: true
|
||||
scheme: public
|
||||
directory: inline-images
|
||||
max_size: null
|
||||
max_dimensions:
|
||||
width: null
|
||||
height: null
|
||||
105
config/default/editor.editor.full_html.yml
Normal file
105
config/default/editor.editor.full_html.yml
Normal file
@ -0,0 +1,105 @@
|
||||
uuid: 9e448e30-d8f6-4fcd-88eb-0fc00fc4029d
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- filter.format.full_html
|
||||
module:
|
||||
- ckeditor5
|
||||
_core:
|
||||
default_config_hash: lurcn8yf33g3Dkzdc55cTfJa9salGp9ytSYyG1s7QMI
|
||||
format: full_html
|
||||
editor: ckeditor5
|
||||
settings:
|
||||
toolbar:
|
||||
items:
|
||||
- bold
|
||||
- italic
|
||||
- strikethrough
|
||||
- superscript
|
||||
- subscript
|
||||
- removeFormat
|
||||
- '|'
|
||||
- link
|
||||
- '|'
|
||||
- bulletedList
|
||||
- numberedList
|
||||
- '|'
|
||||
- blockQuote
|
||||
- drupalInsertImage
|
||||
- insertTable
|
||||
- horizontalLine
|
||||
- '|'
|
||||
- heading
|
||||
- codeBlock
|
||||
- '|'
|
||||
- sourceEditing
|
||||
plugins:
|
||||
ckeditor5_codeBlock:
|
||||
languages:
|
||||
-
|
||||
label: 'Plain text'
|
||||
language: plaintext
|
||||
-
|
||||
label: C
|
||||
language: c
|
||||
-
|
||||
label: 'C#'
|
||||
language: cs
|
||||
-
|
||||
label: C++
|
||||
language: cpp
|
||||
-
|
||||
label: CSS
|
||||
language: css
|
||||
-
|
||||
label: Diff
|
||||
language: diff
|
||||
-
|
||||
label: HTML
|
||||
language: html
|
||||
-
|
||||
label: Java
|
||||
language: java
|
||||
-
|
||||
label: JavaScript
|
||||
language: javascript
|
||||
-
|
||||
label: PHP
|
||||
language: php
|
||||
-
|
||||
label: Python
|
||||
language: python
|
||||
-
|
||||
label: Ruby
|
||||
language: ruby
|
||||
-
|
||||
label: TypeScript
|
||||
language: typescript
|
||||
-
|
||||
label: XML
|
||||
language: xml
|
||||
ckeditor5_heading:
|
||||
enabled_headings:
|
||||
- heading2
|
||||
- heading3
|
||||
- heading4
|
||||
- heading5
|
||||
- heading6
|
||||
ckeditor5_imageResize:
|
||||
allow_resize: true
|
||||
ckeditor5_list:
|
||||
properties:
|
||||
reversed: true
|
||||
startIndex: true
|
||||
multiBlock: true
|
||||
ckeditor5_sourceEditing:
|
||||
allowed_tags: { }
|
||||
image_upload:
|
||||
status: true
|
||||
scheme: public
|
||||
directory: inline-images
|
||||
max_size: null
|
||||
max_dimensions:
|
||||
width: null
|
||||
height: null
|
||||
26
config/default/field.field.block_content.basic.body.yml
Normal file
26
config/default/field.field.block_content.basic.body.yml
Normal file
@ -0,0 +1,26 @@
|
||||
uuid: 063ac8d4-8f19-4c0b-b216-9f7ecd4b06f5
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_content.type.basic
|
||||
- field.storage.block_content.body
|
||||
module:
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: j00Gfs9AFqwK4x9RIsISLbPO7vA12psPR4s60wOIwQo
|
||||
id: block_content.basic.body
|
||||
field_name: body
|
||||
entity_type: block_content
|
||||
bundle: basic
|
||||
label: Body
|
||||
description: ''
|
||||
required: false
|
||||
translatable: true
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
display_summary: false
|
||||
required_summary: false
|
||||
allowed_formats: { }
|
||||
field_type: text_with_summary
|
||||
24
config/default/field.field.comment.comment.comment_body.yml
Normal file
24
config/default/field.field.comment.comment.comment_body.yml
Normal file
@ -0,0 +1,24 @@
|
||||
uuid: 7594379f-22c8-455e-8ac5-4bcf631c6811
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- comment.type.comment
|
||||
- field.storage.comment.comment_body
|
||||
module:
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: 62rlTOx3sPVrYhBnSBHZStXwiO02v1UpHSMrhWDsuG8
|
||||
id: comment.comment.comment_body
|
||||
field_name: comment_body
|
||||
entity_type: comment
|
||||
bundle: comment
|
||||
label: Comment
|
||||
description: ''
|
||||
required: true
|
||||
translatable: true
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
allowed_formats: { }
|
||||
field_type: text_long
|
||||
26
config/default/field.field.node.article.body.yml
Normal file
26
config/default/field.field.node.article.body.yml
Normal file
@ -0,0 +1,26 @@
|
||||
uuid: fcd645a6-6dff-4a7e-9568-c94737705324
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.node.body
|
||||
- node.type.article
|
||||
module:
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: 4Wxs1LseZ8JsNwD9uJVIbzZqG35yQXN8Eo1Hub6NMuI
|
||||
id: node.article.body
|
||||
field_name: body
|
||||
entity_type: node
|
||||
bundle: article
|
||||
label: Body
|
||||
description: ''
|
||||
required: false
|
||||
translatable: true
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
display_summary: true
|
||||
required_summary: false
|
||||
allowed_formats: { }
|
||||
field_type: text_with_summary
|
||||
35
config/default/field.field.node.article.comment.yml
Normal file
35
config/default/field.field.node.article.comment.yml
Normal file
@ -0,0 +1,35 @@
|
||||
uuid: ae8de7f6-11b2-498b-a50b-83f305d461c9
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.node.comment
|
||||
- node.type.article
|
||||
module:
|
||||
- comment
|
||||
_core:
|
||||
default_config_hash: UqXlkKC4v2-bDfWx4zcXQrD5YIi3d5byENEmWv-G_Uc
|
||||
id: node.article.comment
|
||||
field_name: comment
|
||||
entity_type: node
|
||||
bundle: article
|
||||
label: Comments
|
||||
description: ''
|
||||
required: false
|
||||
translatable: true
|
||||
default_value:
|
||||
-
|
||||
status: 2
|
||||
cid: 0
|
||||
last_comment_timestamp: 0
|
||||
last_comment_name: null
|
||||
last_comment_uid: 0
|
||||
comment_count: 0
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
default_mode: 1
|
||||
per_page: 50
|
||||
anonymous: 0
|
||||
form_location: true
|
||||
preview: 1
|
||||
field_type: comment
|
||||
40
config/default/field.field.node.article.field_image.yml
Normal file
40
config/default/field.field.node.article.field_image.yml
Normal file
@ -0,0 +1,40 @@
|
||||
uuid: ee694a4d-4ae6-4985-a2ca-470e49e15d28
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.node.field_image
|
||||
- node.type.article
|
||||
module:
|
||||
- image
|
||||
_core:
|
||||
default_config_hash: j0riO_-77ZFWNLtj0iJ31HnohiNjdn8HUL86RueCF-M
|
||||
id: node.article.field_image
|
||||
field_name: field_image
|
||||
entity_type: node
|
||||
bundle: article
|
||||
label: Image
|
||||
description: ''
|
||||
required: false
|
||||
translatable: true
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
handler: 'default:file'
|
||||
handler_settings: { }
|
||||
file_directory: '[date:custom:Y]-[date:custom:m]'
|
||||
file_extensions: 'png gif jpg jpeg webp'
|
||||
max_filesize: ''
|
||||
max_resolution: ''
|
||||
min_resolution: ''
|
||||
alt_field: true
|
||||
alt_field_required: true
|
||||
title_field: false
|
||||
title_field_required: false
|
||||
default_image:
|
||||
uuid: null
|
||||
alt: ''
|
||||
title: ''
|
||||
width: null
|
||||
height: null
|
||||
field_type: image
|
||||
29
config/default/field.field.node.article.field_tags.yml
Normal file
29
config/default/field.field.node.article.field_tags.yml
Normal file
@ -0,0 +1,29 @@
|
||||
uuid: 6290f050-ac40-42eb-a555-01f9e6b72ac0
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.node.field_tags
|
||||
- node.type.article
|
||||
- taxonomy.vocabulary.tags
|
||||
_core:
|
||||
default_config_hash: QdUgf_beeoaPiyKorFv0q1fcJpWH_uZTqe_xoVJacrw
|
||||
id: node.article.field_tags
|
||||
field_name: field_tags
|
||||
entity_type: node
|
||||
bundle: article
|
||||
label: Tags
|
||||
description: 'Enter a comma-separated list. For example: Amsterdam, Mexico City, "Cleveland, Ohio"'
|
||||
required: false
|
||||
translatable: true
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
handler: 'default:taxonomy_term'
|
||||
handler_settings:
|
||||
target_bundles:
|
||||
tags: tags
|
||||
sort:
|
||||
field: _none
|
||||
auto_create: true
|
||||
field_type: entity_reference
|
||||
26
config/default/field.field.node.page.body.yml
Normal file
26
config/default/field.field.node.page.body.yml
Normal file
@ -0,0 +1,26 @@
|
||||
uuid: 3081827f-c821-4196-93db-f06c9d62fb12
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.node.body
|
||||
- node.type.page
|
||||
module:
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: KHu9I-pR4FnP79crRJ5gVD_1mKGSZcJsdIm9bn64iFg
|
||||
id: node.page.body
|
||||
field_name: body
|
||||
entity_type: node
|
||||
bundle: page
|
||||
label: Body
|
||||
description: ''
|
||||
required: false
|
||||
translatable: true
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
display_summary: true
|
||||
required_summary: false
|
||||
allowed_formats: { }
|
||||
field_type: text_with_summary
|
||||
40
config/default/field.field.user.user.user_picture.yml
Normal file
40
config/default/field.field.user.user.user_picture.yml
Normal file
@ -0,0 +1,40 @@
|
||||
uuid: bb0bad90-2a0a-453c-b136-987562a273bc
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.user.user_picture
|
||||
module:
|
||||
- image
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: TE3gYVzd6g0deXqUl8SEu2azHwVG-SdXm3kwbrz0kHw
|
||||
id: user.user.user_picture
|
||||
field_name: user_picture
|
||||
entity_type: user
|
||||
bundle: user
|
||||
label: Picture
|
||||
description: 'Your virtual face or picture.'
|
||||
required: false
|
||||
translatable: true
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
handler: 'default:file'
|
||||
handler_settings: { }
|
||||
file_directory: 'pictures/[date:custom:Y]-[date:custom:m]'
|
||||
file_extensions: 'png gif jpg jpeg webp'
|
||||
max_filesize: ''
|
||||
max_resolution: ''
|
||||
min_resolution: ''
|
||||
alt_field: false
|
||||
alt_field_required: false
|
||||
title_field: false
|
||||
title_field_required: false
|
||||
default_image:
|
||||
uuid: null
|
||||
alt: ''
|
||||
title: ''
|
||||
width: null
|
||||
height: null
|
||||
field_type: image
|
||||
3
config/default/field.settings.yml
Normal file
3
config/default/field.settings.yml
Normal file
@ -0,0 +1,3 @@
|
||||
_core:
|
||||
default_config_hash: nJk0TAQBzlNo52ehiHI7bIEPLGi0BYqZvPdEn7Chfu0
|
||||
purge_batch_size: 50
|
||||
21
config/default/field.storage.block_content.body.yml
Normal file
21
config/default/field.storage.block_content.body.yml
Normal file
@ -0,0 +1,21 @@
|
||||
uuid: 2b9e0e96-1a30-4b9f-b2a6-b722783a562b
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- block_content
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: eS0snV_L3dx9shtWRTzm5eblwOJ7qKWC9IE-4GMTDFc
|
||||
id: block_content.body
|
||||
field_name: body
|
||||
entity_type: block_content
|
||||
type: text_with_summary
|
||||
settings: { }
|
||||
module: text
|
||||
locked: false
|
||||
cardinality: 1
|
||||
translatable: true
|
||||
indexes: { }
|
||||
persist_with_no_fields: true
|
||||
custom_storage: false
|
||||
21
config/default/field.storage.comment.comment_body.yml
Normal file
21
config/default/field.storage.comment.comment_body.yml
Normal file
@ -0,0 +1,21 @@
|
||||
uuid: 99d87206-832b-44dc-8e1f-b1ed697d066e
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- comment
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: swYoCch_hY8QO5uwr4FURplfnUCUlpPB4idF8WGVCpw
|
||||
id: comment.comment_body
|
||||
field_name: comment_body
|
||||
entity_type: comment
|
||||
type: text_long
|
||||
settings: { }
|
||||
module: text
|
||||
locked: false
|
||||
cardinality: 1
|
||||
translatable: true
|
||||
indexes: { }
|
||||
persist_with_no_fields: true
|
||||
custom_storage: false
|
||||
21
config/default/field.storage.node.body.yml
Normal file
21
config/default/field.storage.node.body.yml
Normal file
@ -0,0 +1,21 @@
|
||||
uuid: 9370c0f2-41bf-402e-bfe4-99c21ddc9882
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: EBUo7qOWqaiZaQ_RC9sLY5IoDKphS34v77VIHSACmVY
|
||||
id: node.body
|
||||
field_name: body
|
||||
entity_type: node
|
||||
type: text_with_summary
|
||||
settings: { }
|
||||
module: text
|
||||
locked: false
|
||||
cardinality: 1
|
||||
translatable: true
|
||||
indexes: { }
|
||||
persist_with_no_fields: true
|
||||
custom_storage: false
|
||||
22
config/default/field.storage.node.comment.yml
Normal file
22
config/default/field.storage.node.comment.yml
Normal file
@ -0,0 +1,22 @@
|
||||
uuid: e96c7e00-f091-4d8d-b2da-01153ea9a302
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- comment
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: ktCna9xmWvYZIUfOCUyDQvedn5RtnS4CRmEIwNmvYjc
|
||||
id: node.comment
|
||||
field_name: comment
|
||||
entity_type: node
|
||||
type: comment
|
||||
settings:
|
||||
comment_type: comment
|
||||
module: comment
|
||||
locked: false
|
||||
cardinality: 1
|
||||
translatable: true
|
||||
indexes: { }
|
||||
persist_with_no_fields: false
|
||||
custom_storage: false
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user