drupal 9 is working, started content archi
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
# Drupal editor configuration normalization
|
||||
# @see http://editorconfig.org/
|
||||
|
||||
# This is the top-most .editorconfig file; do not search in parent directories.
|
||||
root = true
|
||||
|
||||
# All files.
|
||||
[*]
|
||||
end_of_line = LF
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
||||
|
||||
[composer.{json,lock}]
|
||||
indent_size = 4
|
||||
@@ -0,0 +1,61 @@
|
||||
# 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
|
||||
@@ -0,0 +1,42 @@
|
||||
# Ignore directories generated by Composer
|
||||
/drush/contrib/
|
||||
/vendor/
|
||||
/web/core/
|
||||
/web/modules/contrib/
|
||||
/web/themes/contrib/
|
||||
/web/profiles/contrib/
|
||||
/web/libraries/
|
||||
|
||||
# Ignore sensitive information
|
||||
/web/sites/*/settings.php
|
||||
/web/sites/*/settings.local.php
|
||||
/web/sites/*/services*.yml
|
||||
|
||||
# Ignore Drupal's file directory
|
||||
/web/sites/*/files/
|
||||
|
||||
# Ignore SimpleTest multi-site environment.
|
||||
/web/sites/simpletest
|
||||
|
||||
# Ignore files generated by PhpStorm
|
||||
/.idea/
|
||||
|
||||
# Ignore .env files as they are personal
|
||||
/.env
|
||||
|
||||
# npm
|
||||
node_modules/
|
||||
|
||||
*.patch
|
||||
/.csslintrc
|
||||
/.eslintrc.json
|
||||
/.ht.router.php
|
||||
/.htaccess
|
||||
/INSTALL.txt
|
||||
/README.txt
|
||||
/autoload.php
|
||||
/example.gitignore
|
||||
/index.php
|
||||
/robots.txt
|
||||
/update.php
|
||||
/web.config
|
||||
@@ -0,0 +1,97 @@
|
||||
{
|
||||
"name": "drupal/recommended-project",
|
||||
"description": "Project template for Drupal 9 projects with a relocated document root",
|
||||
"type": "project",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"homepage": "https://www.drupal.org/project/drupal",
|
||||
"support": {
|
||||
"docs": "https://www.drupal.org/docs/user_guide/en/index.html",
|
||||
"chat": "https://www.drupal.org/node/314178"
|
||||
},
|
||||
"repositories": [
|
||||
{
|
||||
"type": "composer",
|
||||
"url": "https://packages.drupal.org/8"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"composer/installers": "^1.9",
|
||||
"drupal/core-composer-scaffold": "^9.1",
|
||||
"drupal/core-project-message": "^9.1",
|
||||
"drupal/core-recommended": "^9.1",
|
||||
"wikimedia/composer-merge-plugin": "^1.4"
|
||||
},
|
||||
"conflict": {
|
||||
"drupal/drupal": "*"
|
||||
},
|
||||
"minimum-stability": "stable",
|
||||
"prefer-stable": true,
|
||||
"config": {
|
||||
"sort-packages": true
|
||||
},
|
||||
"extra": {
|
||||
"drupal-scaffold": {
|
||||
"locations": {
|
||||
"web-root": "web/"
|
||||
}
|
||||
},
|
||||
"installer-paths": {
|
||||
"web/core": [
|
||||
"type:drupal-core"
|
||||
],
|
||||
"web/libraries/{$name}": [
|
||||
"type:drupal-library"
|
||||
],
|
||||
"web/modules/contrib/{$name}": [
|
||||
"type:drupal-module"
|
||||
],
|
||||
"web/profiles/contrib/{$name}": [
|
||||
"type:drupal-profile"
|
||||
],
|
||||
"web/themes/contrib/{$name}": [
|
||||
"type:drupal-theme"
|
||||
],
|
||||
"drush/Commands/contrib/{$name}": [
|
||||
"type:drupal-drush"
|
||||
],
|
||||
"web/modules/custom/{$name}": [
|
||||
"type:drupal-custom-module"
|
||||
],
|
||||
"web/profiles/custom/{$name}": [
|
||||
"type:drupal-custom-profile"
|
||||
],
|
||||
"web/themes/custom/{$name}": [
|
||||
"type:drupal-custom-theme"
|
||||
]
|
||||
},
|
||||
"merge-plugin": {
|
||||
"include": [
|
||||
"web/profiles/d8-starterkit-profile/composer.json"
|
||||
],
|
||||
"recurse": true,
|
||||
"replace": false,
|
||||
"merge-extra": true
|
||||
},
|
||||
"drupal-core-project-message": {
|
||||
"include-keys": [
|
||||
"homepage",
|
||||
"support"
|
||||
],
|
||||
"post-create-project-cmd-message": [
|
||||
"<bg=blue;fg=white> </>",
|
||||
"<bg=blue;fg=white> Congratulations, you’ve installed the Drupal codebase </>",
|
||||
"<bg=blue;fg=white> from the drupal/recommended-project template! </>",
|
||||
"<bg=blue;fg=white> </>",
|
||||
"",
|
||||
"<bg=yellow;fg=black>Next steps</>:",
|
||||
" * Install the site: https://www.drupal.org/docs/8/install",
|
||||
" * Read the user guide: https://www.drupal.org/docs/user_guide/en/index.html",
|
||||
" * Get support: https://www.drupal.org/support",
|
||||
" * Get involved with the Drupal community:",
|
||||
" https://www.drupal.org/getting-involved",
|
||||
" * Remove the plugin that prints this message:",
|
||||
" composer remove drupal/core-project-message"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
Generated
+12480
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,24 @@
|
||||
# Deny all requests from Apache 2.4+.
|
||||
<IfModule mod_authz_core.c>
|
||||
Require all denied
|
||||
</IfModule>
|
||||
|
||||
# Deny all requests from Apache 2.0-2.2.
|
||||
<IfModule !mod_authz_core.c>
|
||||
Deny from all
|
||||
</IfModule>
|
||||
|
||||
# Turn off all options we don't need.
|
||||
Options -Indexes -ExecCGI -Includes -MultiViews
|
||||
|
||||
# Set the catch-all handler to prevent scripts from being executed.
|
||||
SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
|
||||
<Files *>
|
||||
# Override the handler again if we're run later in the evaluation list.
|
||||
SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
|
||||
</Files>
|
||||
|
||||
# If we know how to do it safely, disable the PHP engine entirely.
|
||||
<IfModule mod_php7.c>
|
||||
php_flag engine off
|
||||
</IfModule>
|
||||
@@ -0,0 +1,10 @@
|
||||
features:
|
||||
node_user_picture: false
|
||||
comment_user_picture: true
|
||||
comment_user_verification: true
|
||||
favicon: 1
|
||||
logo:
|
||||
use_default: 1
|
||||
_core:
|
||||
default_config_hash: Pawk313dlmTas62LfDspeCxjQbNtOVl3_Uyi3REvu1A
|
||||
langcode: fr
|
||||
@@ -0,0 +1,5 @@
|
||||
enabled: true
|
||||
timeout: 172800
|
||||
_core:
|
||||
default_config_hash: Oe-fB2enOwHHacGGf5HLP31RdU9bEsQZ19YQ6AS8pjw
|
||||
langcode: fr
|
||||
@@ -0,0 +1,5 @@
|
||||
enabled: false
|
||||
timeout: null
|
||||
_core:
|
||||
default_config_hash: kxyrVqZ2uewqW3PUFj1ZDShD6MUbz5Yqnl3xyO3VXos
|
||||
langcode: fr
|
||||
@@ -0,0 +1,5 @@
|
||||
enabled: true
|
||||
timeout: 172800
|
||||
_core:
|
||||
default_config_hash: Oe-fB2enOwHHacGGf5HLP31RdU9bEsQZ19YQ6AS8pjw
|
||||
langcode: fr
|
||||
@@ -0,0 +1,5 @@
|
||||
enabled: false
|
||||
timeout: null
|
||||
_core:
|
||||
default_config_hash: kxyrVqZ2uewqW3PUFj1ZDShD6MUbz5Yqnl3xyO3VXos
|
||||
langcode: fr
|
||||
@@ -0,0 +1,16 @@
|
||||
timeout: 1800
|
||||
max_timeout: 172800
|
||||
padding: 20
|
||||
role_logout: false
|
||||
redirect_url: /
|
||||
no_dialog: true
|
||||
message: 'Your session is about to expire. Do you want to reset it?'
|
||||
inactivity_message: 'You have been logged out due to inactivity.'
|
||||
enforce_admin: false
|
||||
jstimer_format: '%hours%:%mins%:%secs%'
|
||||
jstimer_js_load_option: false
|
||||
use_alt_logout_method: false
|
||||
use_watchdog: true
|
||||
langcode: fr
|
||||
_core:
|
||||
default_config_hash: m2pxH8tc4KIlh127R5TYim65W7NBY9gpYQnIXlvDp0M
|
||||
@@ -0,0 +1,23 @@
|
||||
browser_sync:
|
||||
enabled: false
|
||||
host: localhost
|
||||
port: 3000
|
||||
clear_registry: false
|
||||
ie_enabled: false
|
||||
ie_enabled_versions:
|
||||
ie8: false
|
||||
ie9: false
|
||||
langcode: fr
|
||||
features:
|
||||
node_user_picture: false
|
||||
comment_user_picture: true
|
||||
comment_user_verification: true
|
||||
favicon: true
|
||||
logo:
|
||||
use_default: false
|
||||
path: ''
|
||||
favicon:
|
||||
use_default: false
|
||||
path: ''
|
||||
_core:
|
||||
default_config_hash: mZYodhyp0QyNLZuDuZzbHDHQU4Hzg4WeX61Fbu3e1qg
|
||||
@@ -0,0 +1,22 @@
|
||||
uuid: 42bf29b8-9adf-4c0c-9ea7-c15a42ec0471
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- adminimal_theme
|
||||
_core:
|
||||
default_config_hash: 8by5KRsb7ZpmjHj0ms1d7xAG_xH54AWsOX6spDLJ59U
|
||||
id: adminimal_theme_breadcrumbs
|
||||
theme: adminimal_theme
|
||||
region: breadcrumb
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_breadcrumb_block
|
||||
settings:
|
||||
id: system_breadcrumb_block
|
||||
label: 'Fils d''ariane'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
||||
@@ -0,0 +1,22 @@
|
||||
uuid: 34f6ec2f-d168-4e72-8afa-8ab9f7e233a3
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- adminimal_theme
|
||||
_core:
|
||||
default_config_hash: 80N66GdzEvwqi1m-_GZ-ulkk8AJG9beoXcZ4-pMVKjI
|
||||
id: adminimal_theme_content
|
||||
theme: adminimal_theme
|
||||
region: content
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_main_block
|
||||
settings:
|
||||
id: system_main_block
|
||||
label: 'Contenu de la page principale'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
||||
@@ -0,0 +1,22 @@
|
||||
uuid: c9d33745-5c2a-49b9-ae6c-f7f22d8f0bee
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- help
|
||||
theme:
|
||||
- adminimal_theme
|
||||
_core:
|
||||
default_config_hash: PfozGAnWQRNy00G6KEnZjIu9b2lGuWg-j-GT_-Ejglc
|
||||
id: adminimal_theme_help
|
||||
theme: adminimal_theme
|
||||
region: help
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: help_block
|
||||
settings:
|
||||
id: help_block
|
||||
label: Aide
|
||||
provider: help
|
||||
label_display: '0'
|
||||
visibility: { }
|
||||
@@ -0,0 +1,20 @@
|
||||
uuid: 85847304-40be-45e6-9d96-25a8b8cb8341
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- adminimal_theme
|
||||
_core:
|
||||
default_config_hash: ik4PTMlBD0MWansnSMpSXq5SUlWRJ1IVVt6C7AIbQmc
|
||||
id: adminimal_theme_local_actions
|
||||
theme: adminimal_theme
|
||||
region: content
|
||||
weight: -10
|
||||
provider: null
|
||||
plugin: local_actions_block
|
||||
settings:
|
||||
id: local_actions_block
|
||||
label: 'Actions d''administration principales'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
visibility: { }
|
||||
@@ -0,0 +1,22 @@
|
||||
uuid: 0f220615-cccf-4c1b-a0c3-3b33e91cc24a
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- user
|
||||
theme:
|
||||
- adminimal_theme
|
||||
_core:
|
||||
default_config_hash: 862sIulDdHmF0vBU1s2j2_a_CwkxursrL0pIrMDzzOg
|
||||
id: adminimal_theme_login
|
||||
theme: adminimal_theme
|
||||
region: content
|
||||
weight: 10
|
||||
provider: null
|
||||
plugin: user_login_block
|
||||
settings:
|
||||
id: user_login_block
|
||||
label: 'Connexion utilisateur'
|
||||
provider: user
|
||||
label_display: visible
|
||||
visibility: { }
|
||||
@@ -0,0 +1,22 @@
|
||||
uuid: 2ebed473-f8ae-4ca9-bf87-b809c94df078
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- system
|
||||
theme:
|
||||
- adminimal_theme
|
||||
_core:
|
||||
default_config_hash: YqKTtloWJ8FjLtfVNfrHaK6kVgxT67lC1cJ3j6i6WLo
|
||||
id: adminimal_theme_messages
|
||||
theme: adminimal_theme
|
||||
region: highlighted
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: system_messages_block
|
||||
settings:
|
||||
id: system_messages_block
|
||||
label: 'Messages de statut'
|
||||
provider: system
|
||||
label_display: '0'
|
||||
visibility: { }
|
||||
@@ -0,0 +1,20 @@
|
||||
uuid: 43bd76fb-a55b-478d-bb9f-0b4c8f2ce610
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- adminimal_theme
|
||||
_core:
|
||||
default_config_hash: Z3nlZUh2mSJP3apMrJWt-duS-aLyP79rcfu_0wpPmDs
|
||||
id: adminimal_theme_page_title
|
||||
theme: adminimal_theme
|
||||
region: header
|
||||
weight: -30
|
||||
provider: null
|
||||
plugin: page_title_block
|
||||
settings:
|
||||
id: page_title_block
|
||||
label: 'Titre de page'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
visibility: { }
|
||||
@@ -0,0 +1,22 @@
|
||||
uuid: 297bec07-40ce-4ca4-9a76-54227698d4a2
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- adminimal_theme
|
||||
_core:
|
||||
default_config_hash: CyX_aDKAka2_eihevNLscCHDYrzDgIqwWzFVEFRKIww
|
||||
id: adminimal_theme_primary_local_tasks
|
||||
theme: adminimal_theme
|
||||
region: header
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: local_tasks_block
|
||||
settings:
|
||||
id: local_tasks_block
|
||||
label: 'Onglets principaux'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
primary: true
|
||||
secondary: false
|
||||
visibility: { }
|
||||
@@ -0,0 +1,22 @@
|
||||
uuid: a39bad15-a90f-4b6c-b443-d21e2587810d
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
theme:
|
||||
- adminimal_theme
|
||||
_core:
|
||||
default_config_hash: DJ7Om1C2xWr2GI8CjZaZtyWpP-0S3hRR3oROZl1oesc
|
||||
id: adminimal_theme_secondary_local_tasks
|
||||
theme: adminimal_theme
|
||||
region: pre_content
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: local_tasks_block
|
||||
settings:
|
||||
id: local_tasks_block
|
||||
label: 'Onglets secondaires'
|
||||
provider: core
|
||||
label_display: '0'
|
||||
primary: false
|
||||
secondary: true
|
||||
visibility: { }
|
||||
@@ -0,0 +1,5 @@
|
||||
auto_import: { }
|
||||
auto_export: { }
|
||||
langcode: fr
|
||||
_core:
|
||||
default_config_hash: AF4cxceuiw6dhwOrF9ZgpyKC4xsWt4Yhvohb3WNgn8o
|
||||
@@ -0,0 +1,4 @@
|
||||
ignored_config_entities: { }
|
||||
_core:
|
||||
default_config_hash: UVH1aJ4b44UM-VdPVN7hNNuuVqfReJxwfVeDQH1Hvsk
|
||||
langcode: fr
|
||||
@@ -0,0 +1,13 @@
|
||||
uuid: 640d1d25-c910-491a-ac1f-2edac0c06fd4
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: jonvgt3CkUM2eMLTFwWfHileWWDC4YtXCuIlCahTk_I
|
||||
id: personal
|
||||
label: 'Formulaire de contact personnel'
|
||||
recipients: { }
|
||||
reply: ''
|
||||
weight: 0
|
||||
message: 'Votre message a été envoyé.'
|
||||
redirect: ''
|
||||
@@ -0,0 +1,8 @@
|
||||
default_form: feedback
|
||||
flood:
|
||||
limit: 5
|
||||
interval: 3600
|
||||
user_default_enabled: true
|
||||
_core:
|
||||
default_config_hash: U69DBeuvXuNVOC15rVNaBjDPK2fWFbo9v4takdYSSO8
|
||||
langcode: fr
|
||||
@@ -0,0 +1,51 @@
|
||||
verbose: 0
|
||||
types:
|
||||
contact_message: { }
|
||||
file:
|
||||
'*': '*'
|
||||
node:
|
||||
'*': '*'
|
||||
redirect: { }
|
||||
search_api_task: { }
|
||||
taxonomy_term:
|
||||
'*': '*'
|
||||
user: { }
|
||||
workflow_transition: { }
|
||||
workflow_scheduled_transition: { }
|
||||
menu_link_content: { }
|
||||
types_translation_lock: { }
|
||||
types_js_lock: { }
|
||||
form_op_lock:
|
||||
contact_message:
|
||||
mode: 0
|
||||
values: { }
|
||||
file:
|
||||
mode: null
|
||||
values: { }
|
||||
node:
|
||||
mode: 0
|
||||
values: { }
|
||||
redirect:
|
||||
mode: 0
|
||||
values: { }
|
||||
search_api_task:
|
||||
mode: null
|
||||
values: { }
|
||||
taxonomy_term:
|
||||
mode: 0
|
||||
values: { }
|
||||
user:
|
||||
mode: 0
|
||||
values: { }
|
||||
workflow_transition:
|
||||
mode: 0
|
||||
values: { }
|
||||
workflow_scheduled_transition:
|
||||
mode: 0
|
||||
values: { }
|
||||
menu_link_content:
|
||||
mode: 0
|
||||
values: { }
|
||||
_core:
|
||||
default_config_hash: NDkHK4I7-fpBSVP6pPMg_MLvHZcjgriRzCSGA4vnpi8
|
||||
langcode: fr
|
||||
@@ -0,0 +1,5 @@
|
||||
content_lock_timeout_minutes: '30'
|
||||
content_lock_timeout_on_edit: 0
|
||||
_core:
|
||||
default_config_hash: X-PFa6GhUhVBudfnAsBqaWn_qhxq0xTtg76HCEoibeQ
|
||||
langcode: fr
|
||||
@@ -0,0 +1,24 @@
|
||||
uuid: 1fb364f2-4079-4fad-9f24-0e4cf4b46095
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- node.type.static
|
||||
_core:
|
||||
default_config_hash: 7TrRPYNkHBYk7tGEoz-ettea8VXXmk8Jur5I-OSLPT8
|
||||
id: node.static.promote
|
||||
field_name: promote
|
||||
entity_type: node
|
||||
bundle: static
|
||||
label: 'Promu en page d''accueil'
|
||||
description: ''
|
||||
required: false
|
||||
translatable: true
|
||||
default_value:
|
||||
-
|
||||
value: 0
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
on_label: Activé
|
||||
off_label: Désactivé
|
||||
field_type: boolean
|
||||
@@ -0,0 +1,22 @@
|
||||
uuid: b3d2d2a9-290b-495f-a525-1dfafbec425f
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- node.type.texte
|
||||
id: node.texte.promote
|
||||
field_name: promote
|
||||
entity_type: node
|
||||
bundle: texte
|
||||
label: 'Promu en page d''accueil'
|
||||
description: ''
|
||||
required: false
|
||||
translatable: true
|
||||
default_value:
|
||||
-
|
||||
value: 0
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
on_label: Activé
|
||||
off_label: Désactivé
|
||||
field_type: boolean
|
||||
@@ -0,0 +1,10 @@
|
||||
uuid: 6836d189-5e69-4566-89a3-af21a2c9438e
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: 7klS5IWXrwzVaPpYZFAs6wcx8U2FF1X73OfrtTsvuvE
|
||||
id: fallback
|
||||
label: 'Format de date de repli'
|
||||
locked: true
|
||||
pattern: 'D, m/d/Y - H:i'
|
||||
@@ -0,0 +1,10 @@
|
||||
uuid: 5a789057-f240-49d0-83dc-8143595e0f1e
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: EOQltUQPmgc6UQ2rcJ4Xi_leCEJj5ui0TR-12duS-Tk
|
||||
id: html_date
|
||||
label: 'Date HTML'
|
||||
locked: true
|
||||
pattern: Y-m-d
|
||||
@@ -0,0 +1,10 @@
|
||||
uuid: c6357e54-6045-4b09-a9b8-91be25c28f40
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: jxfClwZIRXIdcvMrE--WkcZxDGUVoOIE3Sm2NRZlFuE
|
||||
id: html_datetime
|
||||
label: 'Date et heure HTML'
|
||||
locked: true
|
||||
pattern: 'Y-m-d\TH:i:sO'
|
||||
@@ -0,0 +1,10 @@
|
||||
uuid: ebda2561-aae8-48f7-aa24-acd06c6958b6
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: Z7KuCUwM_WdTNvLcoltuX3_8d-s-8FZkTN6KgNwF0eM
|
||||
id: html_month
|
||||
label: 'Mois HTML'
|
||||
locked: true
|
||||
pattern: Y-m
|
||||
@@ -0,0 +1,10 @@
|
||||
uuid: 525d23b4-1ba9-48e0-85e6-969e46871eb4
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: M7yqicYkU36hRy5p9drAaGBBihhUD1OyujFrAaQ93ZE
|
||||
id: html_time
|
||||
label: 'Heure HTML'
|
||||
locked: true
|
||||
pattern: 'H:i:s'
|
||||
@@ -0,0 +1,10 @@
|
||||
uuid: 20753c11-9758-4987-a215-9d37ee8d072a
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: wKD4WsoV_wFgv2vgI4mcAAFSIzrye17ykzdwrnApkfY
|
||||
id: html_week
|
||||
label: 'Semaine HTML'
|
||||
locked: true
|
||||
pattern: Y-\WW
|
||||
@@ -0,0 +1,10 @@
|
||||
uuid: c6ddee35-4fd0-44c3-874d-2a97ab0a6cc7
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: OjekiQuX9RbVQ2_8jOHBL94RgYLePqX7wpfNGgcQzrk
|
||||
id: html_year
|
||||
label: 'Année HTML'
|
||||
locked: true
|
||||
pattern: 'Y'
|
||||
@@ -0,0 +1,10 @@
|
||||
uuid: 34fb90d6-1a2c-4130-bd7b-8c108c9fed09
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: 5VpawMrKPEPCkoO4YpPa0TDFO2dgiIHfTziJtwlmUxc
|
||||
id: html_yearless_date
|
||||
label: 'Date HTML sans année'
|
||||
locked: true
|
||||
pattern: m-d
|
||||
@@ -0,0 +1,10 @@
|
||||
uuid: f5ee3f8e-cedf-4659-8c83-a5927ffff794
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: og8sWXhBuHbLMw3CoiBEZjgqSyhFBFmcbUW_wLcfNbo
|
||||
id: long
|
||||
label: 'Date longue par défaut'
|
||||
locked: false
|
||||
pattern: 'l j F Y - H:i'
|
||||
@@ -0,0 +1,10 @@
|
||||
uuid: 3f668bd0-3d0b-408b-ad01-30fc554a7346
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: nzL5d024NjXIX_8TlT6uFAu973lmfkmHklJC-2i9rAE
|
||||
id: medium
|
||||
label: 'Date moyenne par défaut'
|
||||
locked: false
|
||||
pattern: 'D d/m/Y - H:i'
|
||||
@@ -0,0 +1,10 @@
|
||||
uuid: 5528ac05-ad74-4ad9-a682-b9af44d873b8
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies: { }
|
||||
_core:
|
||||
default_config_hash: AlzeyytA8InBgxIG9H2UDJYs3CG98Zj6yRsDKmlbZwA
|
||||
id: short
|
||||
label: 'Date courte par défaut'
|
||||
locked: false
|
||||
pattern: 'd/m/Y - H:i'
|
||||
@@ -0,0 +1,259 @@
|
||||
uuid: 7465a423-4bc8-4e72-833a-e30ede66567e
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.node.texte.body
|
||||
- field.field.node.texte.field_autheurs
|
||||
- field.field.node.texte.field_citation
|
||||
- field.field.node.texte.field_date
|
||||
- field.field.node.texte.field_degres_detrangement
|
||||
- field.field.node.texte.field_edition
|
||||
- field.field.node.texte.field_images
|
||||
- field.field.node.texte.field_lien_direct
|
||||
- field.field.node.texte.field_texte_en_rebond
|
||||
- field.field.node.texte.field_videos
|
||||
- image.style.thumbnail
|
||||
- node.type.texte
|
||||
module:
|
||||
- datetime
|
||||
- field_group
|
||||
- image
|
||||
- path
|
||||
- text
|
||||
- video_embed_field
|
||||
third_party_settings:
|
||||
field_group:
|
||||
group_tabs:
|
||||
children:
|
||||
- group_contenus
|
||||
- group_infos
|
||||
- group_liens
|
||||
- group_media
|
||||
parent_name: ''
|
||||
weight: 0
|
||||
format_type: tabs
|
||||
region: content
|
||||
format_settings:
|
||||
id: ''
|
||||
classes: ''
|
||||
direction: vertical
|
||||
label: tabs
|
||||
group_contenus:
|
||||
children:
|
||||
- title
|
||||
- body
|
||||
parent_name: group_tabs
|
||||
weight: 5
|
||||
format_type: tab
|
||||
region: hidden
|
||||
format_settings:
|
||||
id: ''
|
||||
classes: ''
|
||||
description: ''
|
||||
formatter: open
|
||||
required_fields: true
|
||||
label: Contenus
|
||||
group_infos:
|
||||
children:
|
||||
- field_autheurs
|
||||
- field_date
|
||||
- field_edition
|
||||
- field_degres_detrangement
|
||||
parent_name: group_tabs
|
||||
weight: 6
|
||||
format_type: tab
|
||||
region: hidden
|
||||
format_settings:
|
||||
id: ''
|
||||
classes: ''
|
||||
description: ''
|
||||
formatter: closed
|
||||
required_fields: true
|
||||
label: Infos
|
||||
group_media:
|
||||
children:
|
||||
- field_images
|
||||
- field_videos
|
||||
parent_name: group_tabs
|
||||
weight: 8
|
||||
format_type: tab
|
||||
region: hidden
|
||||
format_settings:
|
||||
id: ''
|
||||
classes: ''
|
||||
description: ''
|
||||
formatter: closed
|
||||
required_fields: true
|
||||
label: Media
|
||||
group_liens:
|
||||
children:
|
||||
- field_lien_direct
|
||||
- field_citation
|
||||
- field_texte_en_rebond
|
||||
parent_name: group_tabs
|
||||
weight: 7
|
||||
format_type: tab
|
||||
region: hidden
|
||||
format_settings:
|
||||
id: ''
|
||||
classes: ''
|
||||
description: ''
|
||||
formatter: closed
|
||||
required_fields: true
|
||||
label: Liens
|
||||
id: node.texte.default
|
||||
targetEntityType: node
|
||||
bundle: texte
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
type: text_textarea_with_summary
|
||||
weight: 2
|
||||
settings:
|
||||
rows: 9
|
||||
summary_rows: 3
|
||||
placeholder: ''
|
||||
show_summary: false
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
created:
|
||||
type: datetime_timestamp
|
||||
weight: 3
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
field_autheurs:
|
||||
weight: 11
|
||||
settings:
|
||||
match_operator: CONTAINS
|
||||
match_limit: 10
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
type: entity_reference_autocomplete
|
||||
region: content
|
||||
field_citation:
|
||||
weight: 14
|
||||
settings:
|
||||
match_operator: CONTAINS
|
||||
match_limit: 10
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
type: entity_reference_autocomplete
|
||||
region: content
|
||||
field_date:
|
||||
weight: 12
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
type: datetime_default
|
||||
region: content
|
||||
field_degres_detrangement:
|
||||
weight: 14
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
type: options_select
|
||||
region: content
|
||||
field_edition:
|
||||
weight: 13
|
||||
settings:
|
||||
match_operator: CONTAINS
|
||||
match_limit: 10
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
type: entity_reference_autocomplete
|
||||
region: content
|
||||
field_images:
|
||||
weight: 5
|
||||
settings:
|
||||
progress_indicator: throbber
|
||||
preview_image_style: thumbnail
|
||||
third_party_settings: { }
|
||||
type: image_image
|
||||
region: content
|
||||
field_lien_direct:
|
||||
weight: 13
|
||||
settings:
|
||||
match_operator: CONTAINS
|
||||
match_limit: 10
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
type: entity_reference_autocomplete
|
||||
region: content
|
||||
field_texte_en_rebond:
|
||||
weight: 15
|
||||
settings:
|
||||
match_operator: CONTAINS
|
||||
match_limit: 10
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
type: entity_reference_autocomplete
|
||||
region: content
|
||||
field_videos:
|
||||
weight: 6
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
type: video_embed_field_textfield
|
||||
region: content
|
||||
langcode:
|
||||
type: language_select
|
||||
weight: 1
|
||||
region: content
|
||||
settings:
|
||||
include_locked: true
|
||||
third_party_settings: { }
|
||||
path:
|
||||
type: path
|
||||
weight: 10
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
promote:
|
||||
type: boolean_checkbox
|
||||
settings:
|
||||
display_label: true
|
||||
weight: 4
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
status:
|
||||
type: boolean_checkbox
|
||||
settings:
|
||||
display_label: true
|
||||
weight: 12
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
sticky:
|
||||
type: boolean_checkbox
|
||||
settings:
|
||||
display_label: true
|
||||
weight: 9
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
title:
|
||||
type: string_textfield
|
||||
weight: 1
|
||||
region: content
|
||||
settings:
|
||||
size: 60
|
||||
placeholder: ''
|
||||
third_party_settings: { }
|
||||
uid:
|
||||
type: entity_reference_autocomplete
|
||||
weight: 2
|
||||
settings:
|
||||
match_operator: CONTAINS
|
||||
size: 60
|
||||
placeholder: ''
|
||||
match_limit: 10
|
||||
region: content
|
||||
third_party_settings: { }
|
||||
url_redirects:
|
||||
weight: 11
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
hidden: { }
|
||||
@@ -0,0 +1,12 @@
|
||||
uuid: 94d50b98-201c-49eb-bba7-8345d63294dc
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: flXhTcp55yLcyy7ZLOhPGKGZobZQJdkAFVWV3LseiuI
|
||||
id: user.register
|
||||
label: 'S''inscrire'
|
||||
targetEntityType: user
|
||||
cache: true
|
||||
@@ -0,0 +1,32 @@
|
||||
uuid: 3eff2cc5-3268-4b61-9c5e-d295e9c58767
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.node.static.body
|
||||
- node.type.static
|
||||
module:
|
||||
- text
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: oGSMA6gtfWJ1AlOJQfaQ3Qpi7ZarWaHqInUX9DaJLzo
|
||||
id: node.static.default
|
||||
targetEntityType: node
|
||||
bundle: static
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
label: hidden
|
||||
type: text_default
|
||||
weight: 0
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
links:
|
||||
weight: 1
|
||||
region: content
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
hidden:
|
||||
langcode: true
|
||||
search_api_excerpt: true
|
||||
@@ -0,0 +1,119 @@
|
||||
uuid: d8ccb980-1fe5-4404-b81c-c4fe68c0b184
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.field.node.texte.body
|
||||
- field.field.node.texte.field_autheurs
|
||||
- field.field.node.texte.field_citation
|
||||
- field.field.node.texte.field_date
|
||||
- field.field.node.texte.field_degres_detrangement
|
||||
- field.field.node.texte.field_edition
|
||||
- field.field.node.texte.field_images
|
||||
- field.field.node.texte.field_lien_direct
|
||||
- field.field.node.texte.field_texte_en_rebond
|
||||
- field.field.node.texte.field_videos
|
||||
- node.type.texte
|
||||
module:
|
||||
- datetime
|
||||
- image
|
||||
- options
|
||||
- text
|
||||
- user
|
||||
- video_embed_field
|
||||
id: node.texte.default
|
||||
targetEntityType: node
|
||||
bundle: texte
|
||||
mode: default
|
||||
content:
|
||||
body:
|
||||
label: hidden
|
||||
type: text_default
|
||||
weight: 101
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
field_autheurs:
|
||||
weight: 102
|
||||
label: above
|
||||
settings:
|
||||
link: true
|
||||
third_party_settings: { }
|
||||
type: entity_reference_label
|
||||
region: content
|
||||
field_citation:
|
||||
weight: 107
|
||||
label: above
|
||||
settings:
|
||||
link: true
|
||||
third_party_settings: { }
|
||||
type: entity_reference_label
|
||||
region: content
|
||||
field_date:
|
||||
weight: 103
|
||||
label: above
|
||||
settings:
|
||||
format_type: medium
|
||||
timezone_override: ''
|
||||
third_party_settings: { }
|
||||
type: datetime_default
|
||||
region: content
|
||||
field_degres_detrangement:
|
||||
weight: 105
|
||||
label: above
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
type: list_default
|
||||
region: content
|
||||
field_edition:
|
||||
weight: 104
|
||||
label: above
|
||||
settings:
|
||||
link: true
|
||||
third_party_settings: { }
|
||||
type: entity_reference_label
|
||||
region: content
|
||||
field_images:
|
||||
weight: 109
|
||||
label: above
|
||||
settings:
|
||||
image_style: ''
|
||||
image_link: ''
|
||||
third_party_settings: { }
|
||||
type: image
|
||||
region: content
|
||||
field_lien_direct:
|
||||
weight: 106
|
||||
label: above
|
||||
settings:
|
||||
link: true
|
||||
third_party_settings: { }
|
||||
type: entity_reference_label
|
||||
region: content
|
||||
field_texte_en_rebond:
|
||||
weight: 108
|
||||
label: above
|
||||
settings:
|
||||
link: true
|
||||
third_party_settings: { }
|
||||
type: entity_reference_label
|
||||
region: content
|
||||
field_videos:
|
||||
weight: 110
|
||||
label: above
|
||||
settings:
|
||||
responsive: true
|
||||
width: 854
|
||||
height: 480
|
||||
autoplay: true
|
||||
third_party_settings: { }
|
||||
type: video_embed_field_video
|
||||
region: content
|
||||
links:
|
||||
weight: 100
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
hidden:
|
||||
langcode: true
|
||||
search_api_excerpt: true
|
||||
@@ -0,0 +1,50 @@
|
||||
uuid: 50c15b78-6a8a-444f-906a-0622b4603570
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- core.entity_view_mode.node.teaser
|
||||
- field.field.node.texte.body
|
||||
- field.field.node.texte.field_autheurs
|
||||
- field.field.node.texte.field_citation
|
||||
- field.field.node.texte.field_date
|
||||
- field.field.node.texte.field_degres_detrangement
|
||||
- field.field.node.texte.field_edition
|
||||
- field.field.node.texte.field_images
|
||||
- field.field.node.texte.field_lien_direct
|
||||
- field.field.node.texte.field_texte_en_rebond
|
||||
- field.field.node.texte.field_videos
|
||||
- node.type.texte
|
||||
module:
|
||||
- text
|
||||
- user
|
||||
id: node.texte.teaser
|
||||
targetEntityType: node
|
||||
bundle: texte
|
||||
mode: teaser
|
||||
content:
|
||||
body:
|
||||
label: hidden
|
||||
type: text_summary_or_trimmed
|
||||
weight: 101
|
||||
settings:
|
||||
trim_length: 600
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
links:
|
||||
weight: 100
|
||||
settings: { }
|
||||
third_party_settings: { }
|
||||
region: content
|
||||
hidden:
|
||||
field_autheurs: true
|
||||
field_citation: true
|
||||
field_date: true
|
||||
field_degres_detrangement: true
|
||||
field_edition: true
|
||||
field_images: true
|
||||
field_lien_direct: true
|
||||
field_texte_en_rebond: true
|
||||
field_videos: true
|
||||
langcode: true
|
||||
search_api_excerpt: true
|
||||
@@ -0,0 +1,12 @@
|
||||
uuid: 69c950f4-3781-4dd1-91e5-58ae33762723
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- block
|
||||
_core:
|
||||
default_config_hash: AJ4KPUipTz1VsDPfMT_D9pamgbfXUJBgvYVel4P1DHE
|
||||
id: block.token
|
||||
label: 'Jeton (token)'
|
||||
targetEntityType: block
|
||||
cache: true
|
||||
@@ -0,0 +1,12 @@
|
||||
uuid: 569e381d-5d0d-4bd6-b159-08ef54ec34db
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- contact
|
||||
_core:
|
||||
default_config_hash: X-u-oHfskJg3f8koTCKJndfJyBWavJ5aWeHGYn2arnE
|
||||
id: contact_message.token
|
||||
label: 'Jeton (token)'
|
||||
targetEntityType: contact_message
|
||||
cache: true
|
||||
@@ -0,0 +1,12 @@
|
||||
uuid: 8bcaad9d-d207-4313-8a7b-72fb5e62312c
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- file
|
||||
_core:
|
||||
default_config_hash: T6IiNXJhdrBudWJ_guxnUz3p71T0lFcidLSTM9VlFl8
|
||||
id: file.token
|
||||
label: 'Jeton (token)'
|
||||
targetEntityType: file
|
||||
cache: true
|
||||
@@ -0,0 +1,12 @@
|
||||
uuid: 0bed4059-ee1f-40fd-9769-d5edd1151130
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- menu_link_content
|
||||
_core:
|
||||
default_config_hash: TTHbJnnmzx02KP2FNkAlzqP_BFdKZwAVb8hfUbRbxuk
|
||||
id: menu_link_content.token
|
||||
label: 'Jeton (token)'
|
||||
targetEntityType: menu_link_content
|
||||
cache: true
|
||||
@@ -0,0 +1,12 @@
|
||||
uuid: 024c5cae-7d00-4084-a4ed-7f7e5bc31e00
|
||||
langcode: fr
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: ElrtInxGjZd7GaapJ5O9n-ugi2hG2IxFivtgn0tHOsk
|
||||
id: node.full
|
||||
label: 'Contenu complet'
|
||||
targetEntityType: node
|
||||
cache: true
|
||||
@@ -0,0 +1,12 @@
|
||||
uuid: 6bed664e-8d3b-4e9b-9d39-3941970dab8b
|
||||
langcode: fr
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: vlYzr-rp2f9NMp-Qlr4sFjlqRq-90mco5-afLNGwCrU
|
||||
id: node.rss
|
||||
label: RSS
|
||||
targetEntityType: node
|
||||
cache: true
|
||||
@@ -0,0 +1,12 @@
|
||||
uuid: b6b04db8-465e-48e4-889a-a8706394eac8
|
||||
langcode: fr
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: fVFfJv_GzBRE-wpRHbfD5a3VjnhbEOXG6lvRd3uaccY
|
||||
id: node.search_index
|
||||
label: 'Index de recherche'
|
||||
targetEntityType: node
|
||||
cache: true
|
||||
@@ -0,0 +1,12 @@
|
||||
uuid: 0b0560f3-441d-40f3-be81-eb436bd69b91
|
||||
langcode: fr
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: 6GCOQ-jP2RbdbHA5YWQ6bT8CfGbqrBYKOSC_XY4E3ZM
|
||||
id: node.search_result
|
||||
label: 'Résultat de recherche mettant en évidence la saisie'
|
||||
targetEntityType: node
|
||||
cache: true
|
||||
@@ -0,0 +1,12 @@
|
||||
uuid: 192e3047-e1ea-4f68-baad-f619ebdcbf8e
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: Mz9qWr1kUYK0mjRAGDsr5XS6PvtZ24en_7ndt-pyWe4
|
||||
id: node.teaser
|
||||
label: Accroche
|
||||
targetEntityType: node
|
||||
cache: true
|
||||
@@ -0,0 +1,12 @@
|
||||
uuid: 201ec856-cdf1-4912-9972-5dfcc919a22e
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
_core:
|
||||
default_config_hash: vIX64lRX14_lPePewHfWVFSyTfJt0Yh-Lja05UgP8N0
|
||||
id: node.token
|
||||
label: 'Jeton (token)'
|
||||
targetEntityType: node
|
||||
cache: true
|
||||
@@ -0,0 +1,10 @@
|
||||
uuid: 5a4194ff-9ec1-44d2-8379-5322286f2015
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- path_alias
|
||||
id: path_alias.token
|
||||
label: Token
|
||||
targetEntityType: path_alias
|
||||
cache: true
|
||||
@@ -0,0 +1,12 @@
|
||||
uuid: c5705fdb-862a-4d3a-8132-4f6a020ca3e7
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- taxonomy
|
||||
_core:
|
||||
default_config_hash: '-PPKjsNQPvoIDjOuUAvlLocYD976MNjb9Zpgyz5_BWE'
|
||||
id: taxonomy_term.full
|
||||
label: 'Page d''un terme de taxonomie'
|
||||
targetEntityType: taxonomy_term
|
||||
cache: true
|
||||
@@ -0,0 +1,12 @@
|
||||
uuid: 8ed13b9f-b872-4ea6-b925-c656a6ca3abe
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- taxonomy
|
||||
_core:
|
||||
default_config_hash: AQZt3mTM-HGFLxai2IPOFFyGtOVC-P26IQaOLYmI1b8
|
||||
id: taxonomy_term.token
|
||||
label: 'Jeton (token)'
|
||||
targetEntityType: taxonomy_term
|
||||
cache: true
|
||||
@@ -0,0 +1,12 @@
|
||||
uuid: 1a865a20-a923-4834-a532-03542e6c9835
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: 71CSAr_LNPcgu6D6jI4INl1KATkahmeyUFBETAWya8g
|
||||
id: user.compact
|
||||
label: Compact
|
||||
targetEntityType: user
|
||||
cache: true
|
||||
@@ -0,0 +1,12 @@
|
||||
uuid: bdb79031-c674-482f-b2ae-4d247a34f386
|
||||
langcode: fr
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: mQIF_foYjmnVSr9MpcD4CTaJE_FpO1AyDd_DskztGhM
|
||||
id: user.full
|
||||
label: 'Compte utilisateur'
|
||||
targetEntityType: user
|
||||
cache: true
|
||||
@@ -0,0 +1,12 @@
|
||||
uuid: 4c07509b-8396-4b30-a5c9-587d2de38e36
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: Ta5_n_jXyfP3WcRw_Rmp1QPg-aSHbXzg3_Qr5UE1ieY
|
||||
id: user.token
|
||||
label: 'Jeton (token)'
|
||||
targetEntityType: user
|
||||
cache: true
|
||||
@@ -0,0 +1,122 @@
|
||||
module:
|
||||
actions_permissions: 0
|
||||
admin_toolbar: 0
|
||||
admin_toolbar_links_access_filter: 0
|
||||
advanced_text_formatter: 0
|
||||
audiofield: 0
|
||||
autocomplete_deluxe: 0
|
||||
autologout: 0
|
||||
ban: 0
|
||||
better_exposed_filters: 0
|
||||
betterlogin: 0
|
||||
block: 0
|
||||
block_class: 0
|
||||
breakpoint: 0
|
||||
bulkdelete: 0
|
||||
ckeditor: 0
|
||||
config: 0
|
||||
config_devel: 0
|
||||
config_filter: 0
|
||||
config_ignore: 0
|
||||
config_translation: 0
|
||||
config_update: 0
|
||||
contact: 0
|
||||
content_lock: 0
|
||||
content_lock_timeout: 0
|
||||
context: 0
|
||||
context_ui: 0
|
||||
contextual: 0
|
||||
cshs: 0
|
||||
ctools: 0
|
||||
ctools_block: 0
|
||||
ctools_views: 0
|
||||
datetime: 0
|
||||
datetime_range: 0
|
||||
dblog: 0
|
||||
devel: 0
|
||||
devel_generate: 0
|
||||
domain: 0
|
||||
domain_alias: 0
|
||||
domain_config: 0
|
||||
domain_site_settings: 0
|
||||
dynamic_page_cache: 0
|
||||
editor: 0
|
||||
email_registration: 0
|
||||
embed: 0
|
||||
entity_browser: 0
|
||||
entity_browser_enhanced: 0
|
||||
field: 0
|
||||
field_group: 0
|
||||
field_ui: 0
|
||||
file: 0
|
||||
filter: 0
|
||||
filter_perms: 0
|
||||
help: 0
|
||||
honeypot: 0
|
||||
image: 0
|
||||
inline_entity_form: 0
|
||||
jquery_ui: 0
|
||||
jquery_ui_button: 0
|
||||
jquery_ui_checkboxradio: 0
|
||||
jquery_ui_controlgroup: 0
|
||||
jquery_ui_datepicker: 0
|
||||
jquery_ui_slider: 0
|
||||
jquery_ui_touch_punch: 0
|
||||
language: 0
|
||||
link: 0
|
||||
link_attributes: 0
|
||||
linkit: 0
|
||||
locale: 0
|
||||
maillog: 0
|
||||
mailsystem: 0
|
||||
matomo: 0
|
||||
maxlength: 0
|
||||
menu_block: 0
|
||||
menu_link_content: 0
|
||||
menu_ui: 0
|
||||
node: 0
|
||||
options: 0
|
||||
page_cache: 0
|
||||
pagerer: 0
|
||||
path: 0
|
||||
path_alias: 0
|
||||
path_alias_xt: 0
|
||||
pathologic: 0
|
||||
persistent_login: 0
|
||||
redirect: 0
|
||||
redis: 0
|
||||
responsive_image: 0
|
||||
search_api: 0
|
||||
search_api_db: 0
|
||||
smart_trim: 0
|
||||
smtp: 0
|
||||
system: 0
|
||||
taxonomy: 0
|
||||
telephone: 0
|
||||
text: 0
|
||||
token: 0
|
||||
toolbar: 0
|
||||
translation_views: 0
|
||||
ultimate_cron: 0
|
||||
update: 0
|
||||
url_to_video_filter: 0
|
||||
user: 0
|
||||
video_embed_field: 0
|
||||
views_bulk_edit: 0
|
||||
views_bulk_operations: 0
|
||||
views_ef_fieldset: 0
|
||||
views_ui: 0
|
||||
extlink: 1
|
||||
filefield_sources: 1
|
||||
menu_admin_per_menu: 1
|
||||
pathauto: 1
|
||||
content_translation: 10
|
||||
views: 10
|
||||
figli_starter_kit: 1000
|
||||
theme:
|
||||
seven: 0
|
||||
adminimal_theme: 0
|
||||
profile: figli_starter_kit
|
||||
_core:
|
||||
default_config_hash: R4IF-ClDHXxblLcG0L7MgsLvfBIMAvi_skumNFQwkDc
|
||||
langcode: fr
|
||||
@@ -0,0 +1,4 @@
|
||||
definitions: { }
|
||||
_core:
|
||||
default_config_hash: jdY7AU0tU-QsjmiOw3W8vwpYMb-By--_MSFgbqKUTYM
|
||||
langcode: fr
|
||||
@@ -0,0 +1,4 @@
|
||||
row_limit: 1000
|
||||
_core:
|
||||
default_config_hash: e883aGsrt1wFrsydlYU584PZONCSfRy0DtkZ9KzHb58
|
||||
langcode: fr
|
||||
@@ -0,0 +1,11 @@
|
||||
page_alter: false
|
||||
raw_names: false
|
||||
error_handlers:
|
||||
1: 1
|
||||
rebuild_theme: false
|
||||
debug_mail_file_format: '%to-%subject-%datetime.mail.txt'
|
||||
debug_mail_directory: 'temporary://devel-mails'
|
||||
devel_dumper: default
|
||||
_core:
|
||||
default_config_hash: 8SYa5OOpQGdg4wnttb0LFNuG6GmivsS2qNv9sTH9gDI
|
||||
langcode: fr
|
||||
@@ -0,0 +1,8 @@
|
||||
toolbar_items:
|
||||
- devel.cache_clear
|
||||
- devel.phpinfo
|
||||
- devel.run_cron
|
||||
- devel.theme_registry
|
||||
langcode: fr
|
||||
_core:
|
||||
default_config_hash: IDzCy0l7vH5sENShziSE_TwGo7oDfS1yB4c26KU6WnE
|
||||
@@ -0,0 +1,7 @@
|
||||
allow_non_ascii: false
|
||||
www_prefix: false
|
||||
login_paths: /user/login\r\n/user/password
|
||||
css_classes: ''
|
||||
langcode: fr
|
||||
_core:
|
||||
default_config_hash: fM34Luea0_giXIjyBhGj76ot9PQtAiQcFdME6PYT1S8
|
||||
@@ -0,0 +1,9 @@
|
||||
environments:
|
||||
- default
|
||||
- local
|
||||
- development
|
||||
- staging
|
||||
- testing
|
||||
langcode: fr
|
||||
_core:
|
||||
default_config_hash: B-g_mD751mRPyBpjHIPl0jTXPr4KM0kzGRUaD-KRb10
|
||||
@@ -0,0 +1,4 @@
|
||||
domain_site_settings: null
|
||||
_core:
|
||||
default_config_hash: tkmglv8nLQzpf1cBcgSWFvPzgDJEfiz6bifpEQYXq84
|
||||
langcode: fr
|
||||
@@ -0,0 +1,65 @@
|
||||
uuid: ce0e752e-adf7-4766-ba8d-f8e5a13c2089
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- filter.format.wysiwyg
|
||||
module:
|
||||
- ckeditor
|
||||
_core:
|
||||
default_config_hash: 45tCDsVx8RKDcrtyfVeP88jcBXzIxLtadjP2kF_DIjs
|
||||
format: wysiwyg
|
||||
editor: ckeditor
|
||||
settings:
|
||||
toolbar:
|
||||
rows:
|
||||
-
|
||||
-
|
||||
name: Formats
|
||||
items:
|
||||
- Styles
|
||||
- Bold
|
||||
- Italic
|
||||
- Underline
|
||||
-
|
||||
name: Liens
|
||||
items:
|
||||
- DrupalLink
|
||||
- DrupalUnlink
|
||||
-
|
||||
name: Listes
|
||||
items:
|
||||
- BulletedList
|
||||
- NumberedList
|
||||
-
|
||||
name: Média
|
||||
items:
|
||||
- Blockquote
|
||||
- DrupalImage
|
||||
-
|
||||
name: Outils
|
||||
items:
|
||||
- Source
|
||||
-
|
||||
name: Copy/Paste
|
||||
items:
|
||||
- Copy
|
||||
- Cut
|
||||
- Paste
|
||||
- PasteText
|
||||
- PasteFromWord
|
||||
plugins:
|
||||
drupallink:
|
||||
linkit_enabled: true
|
||||
stylescombo:
|
||||
styles: h4.inter-titre|Inter-titre
|
||||
language:
|
||||
language_list: un
|
||||
image_upload:
|
||||
status: true
|
||||
scheme: public
|
||||
directory: wysiwyg-images
|
||||
max_size: ''
|
||||
max_dimensions:
|
||||
width: null
|
||||
height: null
|
||||
@@ -0,0 +1,4 @@
|
||||
login_with_username: false
|
||||
langcode: fr
|
||||
_core:
|
||||
default_config_hash: k024s6lEcCjGqAq_82KNi-RRCCc37Jxo5frFNChAqao
|
||||
@@ -0,0 +1,5 @@
|
||||
file_scheme: public
|
||||
upload_directory: embed_buttons
|
||||
_core:
|
||||
default_config_hash: Ed6LXVlKotwVS4tx7_rnsL-6NlBoD-PLu3KFPAvpNMc
|
||||
langcode: fr
|
||||
@@ -0,0 +1,19 @@
|
||||
extlink_target: false
|
||||
extlink_target_no_override: false
|
||||
extlink_nofollow: false
|
||||
extlink_follow_no_override: false
|
||||
extlink_subdomains: true
|
||||
extlink_alert: false
|
||||
extlink_alert_text: 'Ce lien vous dirige vers un site externe. Nous ne sommes pas responsables de son contenu.'
|
||||
extlink_exclude: ''
|
||||
extlink_include: ''
|
||||
extlink_class: ext
|
||||
extlink_label: '(le lien est externe)'
|
||||
extlink_img_class: false
|
||||
extlink_css_exclude: ''
|
||||
extlink_css_explicit: ''
|
||||
extlink_mailto_class: mailto
|
||||
extlink_mailto_label: '(link sends email)'
|
||||
_core:
|
||||
default_config_hash: rHbHZIIF9TP3H2Vs37uCHz4Gm4phULg0rQ_OKihxJfM
|
||||
langcode: fr
|
||||
@@ -0,0 +1,25 @@
|
||||
uuid: c0b8a61e-dee3-4433-83f5-87227932e9f0
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.node.body
|
||||
- node.type.static
|
||||
module:
|
||||
- text
|
||||
_core:
|
||||
default_config_hash: 9n-g9nLArj6wFIZcWkZMqmu4AlIdBu8S1Hj-BChBSJ4
|
||||
id: node.static.body
|
||||
field_name: body
|
||||
entity_type: node
|
||||
bundle: static
|
||||
label: Corps
|
||||
description: ''
|
||||
required: false
|
||||
translatable: true
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
display_summary: true
|
||||
required_summary: false
|
||||
field_type: text_with_summary
|
||||
@@ -0,0 +1,23 @@
|
||||
uuid: 12bd7800-65d1-417d-96b8-862f3776cf76
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.node.body
|
||||
- node.type.texte
|
||||
module:
|
||||
- text
|
||||
id: node.texte.body
|
||||
field_name: body
|
||||
entity_type: node
|
||||
bundle: texte
|
||||
label: Texte
|
||||
description: ''
|
||||
required: false
|
||||
translatable: true
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
display_summary: true
|
||||
required_summary: false
|
||||
field_type: text_with_summary
|
||||
@@ -0,0 +1,29 @@
|
||||
uuid: 0bf151e0-6037-4add-9cc6-95bd9ac17b57
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.node.field_autheurs
|
||||
- node.type.texte
|
||||
- taxonomy.vocabulary.auteurs
|
||||
id: node.texte.field_autheurs
|
||||
field_name: field_autheurs
|
||||
entity_type: node
|
||||
bundle: texte
|
||||
label: Autheur(s)
|
||||
description: ''
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
handler: 'default:taxonomy_term'
|
||||
handler_settings:
|
||||
target_bundles:
|
||||
auteurs: auteurs
|
||||
sort:
|
||||
field: name
|
||||
direction: asc
|
||||
auto_create: true
|
||||
auto_create_bundle: ''
|
||||
field_type: entity_reference
|
||||
@@ -0,0 +1,28 @@
|
||||
uuid: 72126fac-fdef-474c-920d-4e8d23aea246
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.node.field_citation
|
||||
- node.type.texte
|
||||
id: node.texte.field_citation
|
||||
field_name: field_citation
|
||||
entity_type: node
|
||||
bundle: texte
|
||||
label: Citation
|
||||
description: ''
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
handler: 'default:node'
|
||||
handler_settings:
|
||||
target_bundles:
|
||||
texte: texte
|
||||
sort:
|
||||
field: _none
|
||||
direction: ASC
|
||||
auto_create: false
|
||||
auto_create_bundle: ''
|
||||
field_type: entity_reference
|
||||
@@ -0,0 +1,21 @@
|
||||
uuid: b14601e5-52e4-43d5-ab7d-4d01a5fdc418
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.node.field_date
|
||||
- node.type.texte
|
||||
module:
|
||||
- datetime
|
||||
id: node.texte.field_date
|
||||
field_name: field_date
|
||||
entity_type: node
|
||||
bundle: texte
|
||||
label: Date
|
||||
description: ''
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings: { }
|
||||
field_type: datetime
|
||||
@@ -0,0 +1,21 @@
|
||||
uuid: e0e2fe1b-77ac-484c-9294-fb9f66ed6819
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.node.field_degres_detrangement
|
||||
- node.type.texte
|
||||
module:
|
||||
- options
|
||||
id: node.texte.field_degres_detrangement
|
||||
field_name: field_degres_detrangement
|
||||
entity_type: node
|
||||
bundle: texte
|
||||
label: 'Degrés d''étrangement'
|
||||
description: ''
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings: { }
|
||||
field_type: list_integer
|
||||
@@ -0,0 +1,29 @@
|
||||
uuid: 0909df70-a2fe-49ba-8dd7-689905486a62
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.node.field_edition
|
||||
- node.type.texte
|
||||
- taxonomy.vocabulary.edition
|
||||
id: node.texte.field_edition
|
||||
field_name: field_edition
|
||||
entity_type: node
|
||||
bundle: texte
|
||||
label: Édition
|
||||
description: ''
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
handler: 'default:taxonomy_term'
|
||||
handler_settings:
|
||||
target_bundles:
|
||||
edition: edition
|
||||
sort:
|
||||
field: name
|
||||
direction: asc
|
||||
auto_create: true
|
||||
auto_create_bundle: ''
|
||||
field_type: entity_reference
|
||||
@@ -0,0 +1,38 @@
|
||||
uuid: 6547e7dc-1e8e-46cb-a6bd-79c29400bb87
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.node.field_images
|
||||
- node.type.texte
|
||||
module:
|
||||
- image
|
||||
id: node.texte.field_images
|
||||
field_name: field_images
|
||||
entity_type: node
|
||||
bundle: texte
|
||||
label: Images
|
||||
description: ''
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
file_directory: '[date:custom:Y]-[date:custom:m]'
|
||||
file_extensions: 'png gif jpg jpeg'
|
||||
max_filesize: 5Mo
|
||||
max_resolution: 1920x1200
|
||||
min_resolution: ''
|
||||
alt_field: true
|
||||
alt_field_required: false
|
||||
title_field: true
|
||||
title_field_required: false
|
||||
default_image:
|
||||
uuid: ''
|
||||
alt: ''
|
||||
title: ''
|
||||
width: null
|
||||
height: null
|
||||
handler: 'default:file'
|
||||
handler_settings: { }
|
||||
field_type: image
|
||||
@@ -0,0 +1,28 @@
|
||||
uuid: 63d6feb9-dc0e-4b11-ac35-2466645b69ee
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.node.field_lien_direct
|
||||
- node.type.texte
|
||||
id: node.texte.field_lien_direct
|
||||
field_name: field_lien_direct
|
||||
entity_type: node
|
||||
bundle: texte
|
||||
label: 'Lien direct'
|
||||
description: ''
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
handler: 'default:node'
|
||||
handler_settings:
|
||||
target_bundles:
|
||||
texte: texte
|
||||
sort:
|
||||
field: _none
|
||||
direction: ASC
|
||||
auto_create: false
|
||||
auto_create_bundle: ''
|
||||
field_type: entity_reference
|
||||
@@ -0,0 +1,28 @@
|
||||
uuid: 34666c48-c39b-4436-b84c-b71450dedb33
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.node.field_texte_en_rebond
|
||||
- node.type.texte
|
||||
id: node.texte.field_texte_en_rebond
|
||||
field_name: field_texte_en_rebond
|
||||
entity_type: node
|
||||
bundle: texte
|
||||
label: 'Texte en rebond'
|
||||
description: ''
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
handler: 'default:node'
|
||||
handler_settings:
|
||||
target_bundles:
|
||||
texte: texte
|
||||
sort:
|
||||
field: _none
|
||||
direction: ASC
|
||||
auto_create: false
|
||||
auto_create_bundle: ''
|
||||
field_type: entity_reference
|
||||
@@ -0,0 +1,25 @@
|
||||
uuid: 39ea8161-3d90-49e1-acef-b5bab0d96aa1
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.node.field_videos
|
||||
- node.type.texte
|
||||
module:
|
||||
- video_embed_field
|
||||
id: node.texte.field_videos
|
||||
field_name: field_videos
|
||||
entity_type: node
|
||||
bundle: texte
|
||||
label: Videos
|
||||
description: ''
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
allowed_providers:
|
||||
vimeo: vimeo
|
||||
youtube: youtube
|
||||
youtube_playlist: '0'
|
||||
field_type: video_embed_field
|
||||
@@ -0,0 +1,24 @@
|
||||
uuid: 68327816-6230-4a45-9cd7-ac99ebc93a52
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- field.storage.user.field_domain_admin
|
||||
module:
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: 0jLkjRnCDTWC66af-OvmCbTleF3sBO3NO5lWfbAOvgM
|
||||
id: user.user.field_domain_admin
|
||||
field_name: field_domain_admin
|
||||
entity_type: user
|
||||
bundle: user
|
||||
label: 'Domain administrator'
|
||||
description: 'Select the domains this user may administer.'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
handler: 'domain:domain'
|
||||
handler_settings: { }
|
||||
field_type: entity_reference
|
||||
@@ -0,0 +1,4 @@
|
||||
purge_batch_size: 50
|
||||
_core:
|
||||
default_config_hash: nJk0TAQBzlNo52ehiHI7bIEPLGi0BYqZvPdEn7Chfu0
|
||||
langcode: fr
|
||||
@@ -0,0 +1,21 @@
|
||||
uuid: 6ff4284c-f9f3-4ac8-bdd4-1fbab5eb66b8
|
||||
langcode: fr
|
||||
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
|
||||
@@ -0,0 +1,20 @@
|
||||
uuid: 08e3d30f-fbb9-4327-9a0b-4f6d9a52a736
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
- taxonomy
|
||||
id: node.field_autheurs
|
||||
field_name: field_autheurs
|
||||
entity_type: node
|
||||
type: entity_reference
|
||||
settings:
|
||||
target_type: taxonomy_term
|
||||
module: core
|
||||
locked: false
|
||||
cardinality: -1
|
||||
translatable: true
|
||||
indexes: { }
|
||||
persist_with_no_fields: false
|
||||
custom_storage: false
|
||||
@@ -0,0 +1,19 @@
|
||||
uuid: bb1a942e-f5a7-450b-98c2-9285b8a16aec
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
id: node.field_citation
|
||||
field_name: field_citation
|
||||
entity_type: node
|
||||
type: entity_reference
|
||||
settings:
|
||||
target_type: node
|
||||
module: core
|
||||
locked: false
|
||||
cardinality: -1
|
||||
translatable: true
|
||||
indexes: { }
|
||||
persist_with_no_fields: false
|
||||
custom_storage: false
|
||||
@@ -0,0 +1,20 @@
|
||||
uuid: e6a90bac-02d6-4bb3-a377-8b96a87757be
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- datetime
|
||||
- node
|
||||
id: node.field_date
|
||||
field_name: field_date
|
||||
entity_type: node
|
||||
type: datetime
|
||||
settings:
|
||||
datetime_type: date
|
||||
module: datetime
|
||||
locked: false
|
||||
cardinality: 1
|
||||
translatable: true
|
||||
indexes: { }
|
||||
persist_with_no_fields: false
|
||||
custom_storage: false
|
||||
@@ -0,0 +1,36 @@
|
||||
uuid: 5e760885-bf5f-47d0-9973-e424ecc1dd35
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
- options
|
||||
id: node.field_degres_detrangement
|
||||
field_name: field_degres_detrangement
|
||||
entity_type: node
|
||||
type: list_integer
|
||||
settings:
|
||||
allowed_values:
|
||||
-
|
||||
value: 1
|
||||
label: '1'
|
||||
-
|
||||
value: 2
|
||||
label: '2'
|
||||
-
|
||||
value: 3
|
||||
label: '3'
|
||||
-
|
||||
value: 4
|
||||
label: '4'
|
||||
-
|
||||
value: 5
|
||||
label: '5'
|
||||
allowed_values_function: ''
|
||||
module: options
|
||||
locked: false
|
||||
cardinality: 1
|
||||
translatable: true
|
||||
indexes: { }
|
||||
persist_with_no_fields: false
|
||||
custom_storage: false
|
||||
@@ -0,0 +1,20 @@
|
||||
uuid: f1a7e30d-94ca-4b7d-971c-83aad1f5a6aa
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
- taxonomy
|
||||
id: node.field_edition
|
||||
field_name: field_edition
|
||||
entity_type: node
|
||||
type: entity_reference
|
||||
settings:
|
||||
target_type: taxonomy_term
|
||||
module: core
|
||||
locked: false
|
||||
cardinality: 1
|
||||
translatable: true
|
||||
indexes: { }
|
||||
persist_with_no_fields: false
|
||||
custom_storage: false
|
||||
@@ -0,0 +1,30 @@
|
||||
uuid: 563d803d-78e7-4c0e-9597-aa58d5c89c5f
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- file
|
||||
- image
|
||||
- node
|
||||
id: node.field_images
|
||||
field_name: field_images
|
||||
entity_type: node
|
||||
type: image
|
||||
settings:
|
||||
uri_scheme: public
|
||||
default_image:
|
||||
uuid: ''
|
||||
alt: ''
|
||||
title: ''
|
||||
width: null
|
||||
height: null
|
||||
target_type: file
|
||||
display_field: false
|
||||
display_default: false
|
||||
module: image
|
||||
locked: false
|
||||
cardinality: -1
|
||||
translatable: true
|
||||
indexes: { }
|
||||
persist_with_no_fields: false
|
||||
custom_storage: false
|
||||
@@ -0,0 +1,19 @@
|
||||
uuid: 7392aad5-c80e-4fe9-882a-9873596e2593
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
id: node.field_lien_direct
|
||||
field_name: field_lien_direct
|
||||
entity_type: node
|
||||
type: entity_reference
|
||||
settings:
|
||||
target_type: node
|
||||
module: core
|
||||
locked: false
|
||||
cardinality: -1
|
||||
translatable: true
|
||||
indexes: { }
|
||||
persist_with_no_fields: false
|
||||
custom_storage: false
|
||||
@@ -0,0 +1,19 @@
|
||||
uuid: 1628ce14-7f19-4329-9e93-80d839b74ec8
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
id: node.field_texte_en_rebond
|
||||
field_name: field_texte_en_rebond
|
||||
entity_type: node
|
||||
type: entity_reference
|
||||
settings:
|
||||
target_type: node
|
||||
module: core
|
||||
locked: false
|
||||
cardinality: -1
|
||||
translatable: true
|
||||
indexes: { }
|
||||
persist_with_no_fields: false
|
||||
custom_storage: false
|
||||
@@ -0,0 +1,19 @@
|
||||
uuid: cdb6bd75-e21a-4ce5-adb9-afbe5e353751
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- node
|
||||
- video_embed_field
|
||||
id: node.field_videos
|
||||
field_name: field_videos
|
||||
entity_type: node
|
||||
type: video_embed_field
|
||||
settings: { }
|
||||
module: video_embed_field
|
||||
locked: false
|
||||
cardinality: -1
|
||||
translatable: true
|
||||
indexes: { }
|
||||
persist_with_no_fields: false
|
||||
custom_storage: false
|
||||
@@ -0,0 +1,22 @@
|
||||
uuid: 73d84473-52f8-4f30-9782-bd126d201b8a
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- domain
|
||||
- user
|
||||
_core:
|
||||
default_config_hash: AdFknSS8IvRhgwe5AQBYmL82g_SdVhWAoAnBBKSYDls
|
||||
id: user.field_domain_admin
|
||||
field_name: field_domain_admin
|
||||
entity_type: user
|
||||
type: entity_reference
|
||||
settings:
|
||||
target_type: domain
|
||||
module: core
|
||||
locked: false
|
||||
cardinality: -1
|
||||
translatable: true
|
||||
indexes: { }
|
||||
persist_with_no_fields: false
|
||||
custom_storage: false
|
||||
@@ -0,0 +1,4 @@
|
||||
field_prefix: field_
|
||||
langcode: fr
|
||||
_core:
|
||||
default_config_hash: zZhJs6wF6FMXjS8njswFvmbk2XEGcj0nLI-mZCfAoFs
|
||||
@@ -0,0 +1,9 @@
|
||||
description:
|
||||
type: textfield
|
||||
length: 128
|
||||
icon:
|
||||
directory: core/modules/file/icons
|
||||
langcode: fr
|
||||
make_unused_managed_files_temporary: false
|
||||
_core:
|
||||
default_config_hash: _5293QOM-Perj4qDT33F4EmNlI9Ge0bNd_WYrZilDPA
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user