drupal installed

This commit is contained in:
Bachir Soussi Chiadmi 2025-01-27 15:56:07 +01:00
commit acd6447b6d
212 changed files with 24499 additions and 0 deletions

17
.editorconfig Normal file
View File

@ -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

64
.gitattributes vendored Normal file
View File

@ -0,0 +1,64 @@
# 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 linguist-language=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 linguist-language=php
*.install text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=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 linguist-language=php
*.php text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php linguist-language=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 linguist-language=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 linguist-language=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 linguist-language=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
# PHPStan's baseline uses tabs instead of spaces.
core/.phpstan-baseline.php text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tabwidth=2 diff=php linguist-language=php
# 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

47
.gitignore vendored Normal file
View File

@ -0,0 +1,47 @@
# 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
/web/sites/*/salt.txt
/web/sites/development.services.yml
/web/sites/default/development.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
/web/.vscode/*
.vscode/*

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "web/profiles/drupal-starterkit-profile"]
path = web/profiles/drupal-starterkit-profile
url = https://figureslibres.io/gogs/bachir/drupal-starterkit-profile.git

107
composer.json Normal file
View File

@ -0,0 +1,107 @@
{
"name": "drupal/recommended-project",
"description": "Project template for Drupal 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": "^2.0",
"drupal/core-composer-scaffold": "^10.4",
"drupal/core-project-message": "^10.4",
"drupal/core-recommended": "^10.4",
"wikimedia/composer-merge-plugin": "^2.1"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true,
"php-http/discovery": true,
"phpstan/extension-installer": true,
"wikimedia/composer-merge-plugin": true
},
"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"
]
},
"drupal-core-project-message": {
"include-keys": [
"homepage",
"support"
],
"post-create-project-cmd-message": [
"<bg=blue;fg=white> </>",
"<bg=blue;fg=white> Congratulations, youve 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/installing-drupal",
" * 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"
]
},
"merge-plugin": {
"include": [
"web/profiles/drupal-starterkit-profile/composer.json"
],
"recurse": true,
"replace": false,
"merge-extra": true
}
}
}

11462
composer.lock generated Normal file

File diff suppressed because it is too large Load Diff

24
config/sync/.htaccess Normal file
View 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>

View File

@ -0,0 +1,4 @@
_core:
default_config_hash: RumewwAShocwpN5KgIf0U8Z2yd4_f7mQJpYnwLTzhhQ
langcode: fr
menu_depth: 4

View File

@ -0,0 +1,10 @@
_core:
default_config_hash: POBebmsKHIsvlfkapwnXbybgOWqPg7W6XWZsmOBvVjk
features:
node_user_picture: false
comment_user_picture: true
comment_user_verification: true
favicon: 1
logo:
use_default: 1
langcode: fr

View File

@ -0,0 +1,22 @@
uuid: f4645b0c-6e3b-4ece-983f-ecd71c51e40f
langcode: fr
status: true
dependencies:
module:
- system
theme:
- adminimal_theme
_core:
default_config_hash: jsQFfJYpHkUCTQQufbC9qRK7O27GZnsflN_FDte_rog
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"
label_display: '0'
provider: system
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 23ab8c66-4c18-471c-8850-37ed75a167ee
langcode: fr
status: true
dependencies:
module:
- system
theme:
- adminimal_theme
_core:
default_config_hash: RXEuy6Fn5y_mkwpTYvIn5z8CHc07cjPce668ZUBE5Fw
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'
label_display: '0'
provider: system
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 75374d30-fac9-41d5-8815-d6cfbe806100
langcode: fr
status: true
dependencies:
module:
- help
theme:
- adminimal_theme
_core:
default_config_hash: eEDfDNC_bpiaWJwwnu4Bppn9-o-zsOYRpc1IEPL4NRg
id: adminimal_theme_help
theme: adminimal_theme
region: help
weight: 0
provider: null
plugin: help_block
settings:
id: help_block
label: Aide
label_display: '0'
provider: help
visibility: { }

View File

@ -0,0 +1,20 @@
uuid: 4fd13976-7aef-4042-a00f-ac14db48b9af
langcode: fr
status: true
dependencies:
theme:
- adminimal_theme
_core:
default_config_hash: AhJ84PvhlYF8GxtMEErWbZFn2Yc5tiJo4uUbeFYY77o
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"
label_display: '0'
provider: core
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: a7baeb0a-5165-4ec2-a1da-cce6e3948687
langcode: fr
status: true
dependencies:
module:
- user
theme:
- adminimal_theme
_core:
default_config_hash: egqFYgzVe0PZ5os8LIK-eSv0WnBHCug5ay6_aRtHIQA
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'
label_display: visible
provider: user
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 5827063d-d1ad-4848-8e61-a4b77ff1f598
langcode: fr
status: true
dependencies:
module:
- system
theme:
- adminimal_theme
_core:
default_config_hash: QuA_LctHqZXPimcCJRra1mfKqwqjqixa0fT2SWrD2Dk
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'
label_display: '0'
provider: system
visibility: { }

View File

@ -0,0 +1,20 @@
uuid: 8a08d092-d86e-4d6c-8ce1-c3dcd5f616fe
langcode: fr
status: true
dependencies:
theme:
- adminimal_theme
_core:
default_config_hash: ZrIf936eEHtSSnxkcCjz8MJKFF0eD93m9dkh4nepNHQ
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'
label_display: '0'
provider: core
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: c4934900-a4da-47d4-aa6a-39a9f9bb57d8
langcode: fr
status: true
dependencies:
theme:
- adminimal_theme
_core:
default_config_hash: 20ozyeBtDWvVAjfTl6lWOGd31vZTJFuXViP52-mJrcA
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'
label_display: '0'
provider: core
primary: true
secondary: false
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 910cde2d-fa44-4b91-a0de-0eb55eb4dc53
langcode: fr
status: true
dependencies:
theme:
- adminimal_theme
_core:
default_config_hash: OHHbgqIxnbmi0dujxk1HgPI5sJ9_fxvDtVzWfOEYXO4
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'
label_display: '0'
provider: core
primary: false
secondary: true
visibility: { }

View File

@ -0,0 +1,22 @@
_core:
default_config_hash: b2oFJe1PqZ6C4AU6Ymfly5hMNnz9EruGjyTsLXRjCyk
langcode: fr
maxlength_block_class_field: 255
field_type: multiple_textfields
default_case: standard
enable_attributes: true
enable_auto_complete: true
qty_classes_per_block: 10
items_per_page: 50
enable_special_chars: false
qty_attributes_per_block: 10
enable_id_replacement: true
weight_attributes: 0
weight_class: 0
weight_id: 0
filter_html_clean_css_identifier: ''
maxlength_attributes: 0
maxlength_id: 255
attribute_keys_stored: '[]'
attribute_value_stored: '[]'
attributes_inline: '[]'

View File

@ -0,0 +1,5 @@
_core:
default_config_hash: AF4cxceuiw6dhwOrF9ZgpyKC4xsWt4Yhvohb3WNgn8o
auto_import: { }
auto_export: { }
langcode: fr

View File

@ -0,0 +1,4 @@
_core:
default_config_hash: LzdDtE3Im_Ysio7g1Eo8ymSMq0mgSQMPzv0khsr_J64
langcode: fr
ignored_config_entities: { }

View File

@ -0,0 +1,13 @@
uuid: 7a08fa5d-d0a8-4046-b4e3-577d1a9a8bd5
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: movrd14KpikJjyW8Tzhj-5wjnGcPbKCjn3TdwUTUmCU
id: personal
label: 'Formulaire de contact personnel'
recipients: { }
reply: ''
weight: 0
message: 'Votre message a été envoyé.'
redirect: null

View File

@ -0,0 +1,8 @@
_core:
default_config_hash: Ybib_dFQ1insjZmm1a7bQlvdUVX8BGbF8EZGz2jMBPo
langcode: fr
default_form: feedback
flood:
limit: 5
interval: 3600
user_default_enabled: true

View File

@ -0,0 +1,47 @@
_core:
default_config_hash: IdcCyfVkD8kunSj3rbm1mwrfJbfcJK4bjfPheIqxnxI
langcode: fr
verbose: 0
types:
contact_message: { }
file:
'*': '*'
node:
'*': '*'
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: { }
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: { }

View File

@ -0,0 +1,5 @@
_core:
default_config_hash: S2TgQLZhiodGAfJKqb5Epnsksw3ST09nIMqTazOcBuI
langcode: fr
content_lock_timeout_minutes: '30'
content_lock_timeout_on_edit: 0

View File

@ -0,0 +1,20 @@
uuid: 8cf3fc6c-0588-4a03-ab93-096ea2238d67
langcode: fr
status: true
dependencies:
module:
- menu_link_content
_core:
default_config_hash: 1HGIVSfcrC22_B0p1yCvD2bzOoh-uB5oesBZew5fh_s
id: menu_link_content.menu_link_content.changed
field_name: changed
entity_type: menu_link_content
bundle: menu_link_content
label: Modifié
description: 'Le moment où le lien de menu a été modifié pour la dernière fois.'
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: changed

View File

@ -0,0 +1,20 @@
uuid: 330bf0b7-02b6-4f0c-8e84-7364f51cefc7
langcode: fr
status: true
dependencies:
module:
- menu_link_content
_core:
default_config_hash: bdaGWpGSpGmtVQszYijheTK8rwLq13JzW-WrLB1ND2I
id: menu_link_content.menu_link_content.description
field_name: description
entity_type: menu_link_content
bundle: menu_link_content
label: Description
description: "S'affiche au survol du lien du menu."
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: string

View File

@ -0,0 +1,20 @@
uuid: 5174b1ec-3240-48a2-af10-6eb8ba9a231a
langcode: fr
status: true
dependencies:
module:
- menu_link_content
_core:
default_config_hash: oi5nggP-TPemyflo1Wh5tQXXo2wEGZHXUAgziw3kTz4
id: menu_link_content.menu_link_content.title
field_name: title
entity_type: menu_link_content
bundle: menu_link_content
label: 'Titre du lien dans le menu'
description: 'Le texte à utiliser pour ce lien dans le menu.'
required: true
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: string

View File

@ -0,0 +1,24 @@
uuid: 541d0c68-d4e6-4a03-b18f-0988c98412d0
langcode: fr
status: true
dependencies:
config:
- node.type.static
_core:
default_config_hash: 9pcoHylyIiAR9mzuZPvW8G3P_4hI0iYiqRQLSaflsP4
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

View File

@ -0,0 +1,20 @@
uuid: 0199d524-aefa-4dd2-bb5d-484a5ad2394f
langcode: fr
status: true
dependencies:
module:
- user
_core:
default_config_hash: 0tGtcsa7jS_arXpHVVsS-3OrC0no-1K3qALx2AtYZvo
id: user.user.changed
field_name: changed
entity_type: user
bundle: user
label: Modifié
description: "Le moment auquel l'utilisateur a été modifié pour la dernière fois."
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: changed

View File

@ -0,0 +1,21 @@
uuid: 2ea89f1b-95e3-483f-838d-31a2ea1df8ac
langcode: fr
status: true
dependencies:
module:
- path
- user
_core:
default_config_hash: h4DTJGO0pFsRYxhjsSykKmPsZWTRlVzdgtGr3wvdIS8
id: user.user.path
field_name: path
entity_type: user
bundle: user
label: "Alias d'URL"
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings: { }
field_type: path

View File

@ -0,0 +1,10 @@
uuid: ea897807-5d0f-40f5-be92-aac153a3ced0
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: DOQ-wPYV7noHnJWtD6Qp5iQfR6ndXrlCKkr6weABWfE
id: fallback
label: 'Format de date de repli'
locked: true
pattern: 'D, m/d/Y - H:i'

View File

@ -0,0 +1,10 @@
uuid: 6fca26c4-839e-4575-8764-97553da103a8
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: nk0Cschl2If2BbifUDxyDHkEBXZ8MXeUK78Sv3J9Ylg
id: html_date
label: 'Date HTML'
locked: true
pattern: Y-m-d

View File

@ -0,0 +1,10 @@
uuid: 1e4ef90f-4315-47a4-b8e6-500455a3ced1
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: 6c4UnTAyJ3_Tpv19al063p4R4L0dROdN-lWlIdpSbDI
id: html_datetime
label: 'Date et heure HTML'
locked: true
pattern: 'Y-m-d\TH:i:sO'

View File

@ -0,0 +1,10 @@
uuid: b304aa7c-648b-4791-81c3-5762e17dfda9
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: fQtEttsgj_pPVpmI8NhGZOoc_C-3GaUaX5QOLFMM9yw
id: html_month
label: 'Mois HTML'
locked: true
pattern: Y-m

View File

@ -0,0 +1,10 @@
uuid: 69bf6f3d-e97a-4e7b-8a41-c1f612109249
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: 1a8opuFTt-TQPbnEr1ku82H8o2c51fyuZ6WyiQwVwUk
id: html_time
label: 'Heure HTML'
locked: true
pattern: 'H:i:s'

View File

@ -0,0 +1,10 @@
uuid: 1ecf6edd-1935-4ca9-a490-9216fe769e1c
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: IltD_8w7ZrDE5JWxt2_Q-GMXbqcyM-My8cQGi1Y1Kl8
id: html_week
label: 'Semaine HTML'
locked: true
pattern: Y-\WW

View File

@ -0,0 +1,10 @@
uuid: 910989bb-0cd1-4d3c-bb73-50dde70d67dc
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: qW24m1nETr83C2FB7NzSltpE3vbasHdiiiJ8kYTb-EY
id: html_year
label: 'Année HTML'
locked: true
pattern: 'Y'

View File

@ -0,0 +1,10 @@
uuid: 32e28476-95fb-4310-a6fa-8ef9bf5a0456
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: T2XD4vbpXM2sUFsgGq9R06hb3wlQ3mO_tnNq4PLm7Rg
id: html_yearless_date
label: 'Date HTML sans année'
locked: true
pattern: m-d

View File

@ -0,0 +1,10 @@
uuid: 6872c2a5-13da-40ca-b522-e482da23b8f6
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: vvSGMoIb6yF-Rznf_X7TEadGRPtrsGzv5_GOWDoVyMI
id: long
label: 'Date longue par défaut'
locked: false
pattern: 'l j F Y - H:i'

View File

@ -0,0 +1,10 @@
uuid: 79f4bf76-61dd-45cb-ac96-b28461d24ce9
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: 9UWa4AeID_OwgI3RQbxLVkKdB3W2y4lw6wFw31m_T5c
id: medium
label: 'Date moyenne par défaut'
locked: false
pattern: 'D d/m/Y - H:i'

View File

@ -0,0 +1,10 @@
uuid: 46418948-92c2-430b-8b01-847ca71a9f1e
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: iEWBlRvmfDb6o7rWokMVoVqBV03MMM83lr90E4jGnSI
id: short
label: 'Date courte par défaut'
locked: false
pattern: 'd/m/Y - H:i'

View File

@ -0,0 +1,112 @@
uuid: 5d44108d-a6a6-4985-a3b8-dbe369bdaf9c
langcode: fr
status: true
dependencies:
config:
- field.field.node.static.body
- node.type.static
module:
- field_group
- path
- text
third_party_settings:
field_group:
group_details:
children:
- langcode
- translation
label: Details
region: content
parent_name: ''
weight: 10
format_type: details_sidebar
format_settings:
classes: ''
show_empty_fields: false
id: ''
label_as_html: false
open: true
description: ''
required_fields: true
weight: 0
_core:
default_config_hash: v9f8vvtrs5-WuIjQ59nW46Vh5Q7l6ye_r4jnsWR_y4Y
id: node.static.default
targetEntityType: node
bundle: static
mode: default
content:
body:
type: text_textarea_with_summary
weight: 1
region: content
settings:
rows: 9
summary_rows: 3
placeholder: ''
show_summary: false
third_party_settings: { }
created:
type: datetime_timestamp
weight: 4
region: content
settings: { }
third_party_settings: { }
langcode:
type: language_select
weight: 2
region: content
settings:
include_locked: true
third_party_settings: { }
path:
type: path
weight: 8
region: content
settings: { }
third_party_settings: { }
promote:
type: boolean_checkbox
weight: 6
region: content
settings:
display_label: true
third_party_settings: { }
status:
type: boolean_checkbox
weight: 9
region: content
settings:
display_label: true
third_party_settings: { }
sticky:
type: boolean_checkbox
weight: 7
region: content
settings:
display_label: true
third_party_settings: { }
title:
type: string_textfield
weight: 0
region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
translation:
weight: 3
region: content
settings: { }
third_party_settings: { }
uid:
type: entity_reference_autocomplete
weight: 3
region: content
settings:
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
hidden: { }

View File

@ -0,0 +1,13 @@
uuid: 79260e9f-ed9a-49d5-8764-19621f2e4f07
langcode: fr
status: true
dependencies:
module:
- user
_core:
default_config_hash: wtsEf26SHyRbzRKFX3yOY9yJzYsEq5e2bd7xSCKPevw
id: user.register
label: "S'inscrire"
description: ''
targetEntityType: user
cache: true

View File

@ -0,0 +1,32 @@
uuid: 2fcb5ead-b33d-4057-9cf3-71af9c3c9f59
langcode: fr
status: true
dependencies:
config:
- field.field.node.static.body
- node.type.static
module:
- text
- user
_core:
default_config_hash: 9mgezio6-8HiMYhQHSfouZjKyY4BFKR71Yh4kbSmAYU
id: node.static.default
targetEntityType: node
bundle: static
mode: default
content:
body:
type: text_default
label: hidden
settings: { }
third_party_settings: { }
weight: 0
region: content
links:
settings: { }
third_party_settings: { }
weight: 1
region: content
hidden:
langcode: true
search_api_excerpt: true

View File

@ -0,0 +1,13 @@
uuid: 908d05b7-fb00-4c07-a5b5-463490d15320
langcode: fr
status: true
dependencies:
module:
- block
_core:
default_config_hash: eZGw53_tQR0o846P6awZpw-1AarhtXlm-6AKAkmLvKY
id: block.token
label: 'Jeton (token)'
description: ''
targetEntityType: block
cache: true

View File

@ -0,0 +1,13 @@
uuid: d7fa164f-7326-4988-81c7-5e91adb6d2b4
langcode: fr
status: true
dependencies:
module:
- contact
_core:
default_config_hash: 2xSc_t5yN14t-fSfl3MR1WP9Em9ij1hY8A5IIVGlhts
id: contact_message.token
label: 'Jeton (token)'
description: ''
targetEntityType: contact_message
cache: true

View File

@ -0,0 +1,13 @@
uuid: 71651eda-6a0f-46ab-bb56-8a2924410a9b
langcode: fr
status: true
dependencies:
module:
- file
_core:
default_config_hash: uZo6zv9Fa0wuqgu1kigVUhfRyvk1vQhD9GCP3HElGBk
id: file.token
label: 'Jeton (token)'
description: ''
targetEntityType: file
cache: true

View File

@ -0,0 +1,13 @@
uuid: 41b37651-5c58-43b1-a53b-1f7ab754a3d9
langcode: fr
status: true
dependencies:
module:
- menu_link_content
_core:
default_config_hash: y5XBjb33PolVKVUnedtISf0rSrGdyo10HxOcI6Mey_w
id: menu_link_content.token
label: 'Jeton (token)'
description: ''
targetEntityType: menu_link_content
cache: true

View File

@ -0,0 +1,13 @@
uuid: 52adcff0-66fe-4daa-a92e-7c17caeddd32
langcode: fr
status: false
dependencies:
module:
- node
_core:
default_config_hash: m4oQ8ZK4CNZqGBAczllmaKSGmjD5xXitPDvByAPwN3c
id: node.full
label: 'Contenu complet'
description: ''
targetEntityType: node
cache: true

View File

@ -0,0 +1,13 @@
uuid: ec7f6315-09c5-4e40-bd1c-76290879da98
langcode: fr
status: false
dependencies:
module:
- node
_core:
default_config_hash: _lDZ7IYi00gmEw2ZkiWGmDYwxkccBlUyLGxMIJDTYkc
id: node.rss
label: RSS
description: ''
targetEntityType: node
cache: true

View File

@ -0,0 +1,13 @@
uuid: 75e364f8-9c44-4ec8-aa01-01e5079d1067
langcode: fr
status: false
dependencies:
module:
- node
_core:
default_config_hash: a4DyjkgEtvja2s1_cGy9Ealzu0LbDwzhEcpFP7aArNg
id: node.search_index
label: 'Index de recherche'
description: ''
targetEntityType: node
cache: true

View File

@ -0,0 +1,13 @@
uuid: ec398b39-9e5e-4bf9-a82f-25381d2a39cd
langcode: fr
status: false
dependencies:
module:
- node
_core:
default_config_hash: Gj61wjl4G9UfFnYfmi-e7Eyvwiqzcz6sIP24vA4nkHU
id: node.search_result
label: 'Résultat de recherche mettant en évidence la saisie'
description: ''
targetEntityType: node
cache: true

View File

@ -0,0 +1,13 @@
uuid: 09c14e81-1142-4043-8404-9aec31afef0a
langcode: fr
status: true
dependencies:
module:
- node
_core:
default_config_hash: qJFVUFu6IPN8a4WgoDs0gcfyJqE3l3euB0wd1kO6hRQ
id: node.teaser
label: Accroche
description: ''
targetEntityType: node
cache: true

View File

@ -0,0 +1,13 @@
uuid: 505f7197-b8c0-4034-8682-4c9dfd909a88
langcode: fr
status: true
dependencies:
module:
- node
_core:
default_config_hash: 7JhK586z4WYrdjuTZH19-WxWlLIi2QlS2ZL7m01bO6E
id: node.token
label: 'Jeton (token)'
description: ''
targetEntityType: node
cache: true

View File

@ -0,0 +1,13 @@
uuid: 6fd853d8-f971-4a4f-90fd-3f4bc67219e0
langcode: fr
status: true
dependencies:
module:
- path_alias
_core:
default_config_hash: jNmsvf8AwwKxbOUYZuY8oBMQpLbkcbFsHy1U4gQhUME
id: path_alias.token
label: Token
description: ''
targetEntityType: path_alias
cache: true

View File

@ -0,0 +1,13 @@
uuid: 3dfdf2be-cd9d-452e-8cc8-aabfc23eeeb5
langcode: fr
status: true
dependencies:
module:
- taxonomy
_core:
default_config_hash: 5w8lM4B4_NrQbKBtWrpx9ySnzyrCEA5jw4cHSsEaA_Q
id: taxonomy_term.full
label: "Page d'un terme de taxonomie"
description: ''
targetEntityType: taxonomy_term
cache: true

View File

@ -0,0 +1,13 @@
uuid: 682e30a4-e9cc-41b1-999c-888d84c7f074
langcode: fr
status: true
dependencies:
module:
- taxonomy
_core:
default_config_hash: goI4SQiGy_YqNsD1dqZ-YNk7Jh5dSVsnlHvwGfDFZXI
id: taxonomy_term.token
label: 'Jeton (token)'
description: ''
targetEntityType: taxonomy_term
cache: true

View File

@ -0,0 +1,13 @@
uuid: 5ef3d907-bdb8-473f-a179-a6154780d4ed
langcode: fr
status: true
dependencies:
module:
- user
_core:
default_config_hash: n4bF0yaCJsxERK-1RXJhTSrmx2qD10UFNfxi1EnvQR4
id: user.compact
label: Compact
description: ''
targetEntityType: user
cache: true

View File

@ -0,0 +1,13 @@
uuid: bb207197-7913-49a1-9e67-a0bd24693088
langcode: fr
status: false
dependencies:
module:
- user
_core:
default_config_hash: JuyuBXboCPHWE0JVpdI2hnd0NMAT1U1ZFgQYh18jDzI
id: user.full
label: 'Compte utilisateur'
description: ''
targetEntityType: user
cache: true

View File

@ -0,0 +1,13 @@
uuid: e505fb56-135d-40b7-9741-ced1b7019281
langcode: fr
status: true
dependencies:
module:
- user
_core:
default_config_hash: JrWyKwRHER0Vr3j0Aukrr4NXdzNnB4kVjyr60gPvSA0
id: user.token
label: 'Jeton (token)'
description: ''
targetEntityType: user
cache: true

View File

@ -0,0 +1,103 @@
_core:
default_config_hash: 4GIX5Esnc_umpXUBj4IIocRX7Mt5fPhm4AgXfE3E56E
module:
actions_permissions: 0
admin_toolbar: 0
admin_toolbar_links_access_filter: 0
advanced_text_formatter: 0
audiofield: 0
autocomplete_deluxe: 0
ban: 0
better_exposed_filters: 0
block: 0
block_class: 0
breakpoint: 0
bulkdelete: 0
ckeditor5: 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
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
formatter_suite: 0
help: 0
honeypot: 0
image: 0
inline_entity_form: 0
language: 0
link: 0
link_attributes: 0
linkit: 0
locale: 0
maillog: 0
maxlength: 0
menu_block: 0
menu_link_content: 0
menu_ui: 0
mysql: 0
node: 0
options: 0
page_cache: 0
pagerer: 0
path: 0
path_alias: 0
path_alias_xt: 0
pathologic: 0
persistent_login: 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
update: 0
user: 0
video_embed_field: 0
views_bulk_edit: 0
views_bulk_operations: 0
views_ui: 0
extlink: 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

View File

@ -0,0 +1,4 @@
_core:
default_config_hash: vCYrtzrLLCbq9UlGR4CxiEg0LXt4qGwRO4VkluZZq9o
langcode: fr
definitions: { }

View File

@ -0,0 +1,4 @@
_core:
default_config_hash: DfshuQJJ7I30rwPRVdQT67nvhPnXkFiJK_dmJxZgNKc
langcode: fr
row_limit: 1000

View File

@ -0,0 +1,11 @@
_core:
default_config_hash: IF0N5iOZlOY8dJPSNNkZwph9jkMpkJvI4dTuK1xiD0Q
langcode: fr
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: var_dumper

View File

@ -0,0 +1,8 @@
_core:
default_config_hash: IDzCy0l7vH5sENShziSE_TwGo7oDfS1yB4c26KU6WnE
toolbar_items:
- devel.cache_clear
- devel.phpinfo
- devel.run_cron
- devel.theme_registry
langcode: fr

View File

@ -0,0 +1,28 @@
uuid: 4e9d6ee0-5e17-41fb-aad2-5d59c800795b
langcode: fr
status: true
dependencies:
config:
- filter.format.wysiwyg
module:
- ckeditor5
_core:
default_config_hash: UHzilqnilnoji3DdOanr6_xzX4Dg430p8Dn4Ub7U9dw
format: wysiwyg
editor: ckeditor5
settings:
toolbar:
items:
- heading
- bold
- italic
plugins:
ckeditor5_heading:
enabled_headings:
- heading2
- heading3
- heading4
- heading5
- heading6
image_upload:
status: false

View File

@ -0,0 +1,4 @@
_core:
default_config_hash: k024s6lEcCjGqAq_82KNi-RRCCc37Jxo5frFNChAqao
login_with_username: false
langcode: fr

View File

@ -0,0 +1,5 @@
_core:
default_config_hash: 7CGKsosNQEyYfQ2qiob-sBdmox8rrL5He7iLJgJ1kNo
langcode: fr
file_scheme: public
upload_directory: embed_buttons

View File

@ -0,0 +1,19 @@
_core:
default_config_hash: FhLRCg4ZgDyAnJvH9lJR6uGqQ2FNIFL25hnG6c2gkZs
langcode: fr
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)'

View File

@ -0,0 +1,26 @@
uuid: 8913509f-f396-4d9b-a303-89eed9e79276
langcode: fr
status: true
dependencies:
config:
- field.storage.node.body
- node.type.static
module:
- text
_core:
default_config_hash: QnbV0y-6q_6XBJQrF0iLsP5hQVu6wd7cpqmdGYArNFY
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
allowed_formats: { }
field_type: text_with_summary

View File

@ -0,0 +1,4 @@
_core:
default_config_hash: yC1VrNt3it8LmbGTO8cGhgNqRgN3ikhqun5dCWFVCAA
langcode: fr
purge_batch_size: 50

View File

@ -0,0 +1,21 @@
uuid: ce0a1272-5d4c-4ed7-8d3b-4127634f5080
langcode: fr
status: true
dependencies:
module:
- node
- text
_core:
default_config_hash: yQSCrqHtiNkS8vcwgOPAXPb2VQcivaikCdBhYj_x0go
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

View File

@ -0,0 +1,4 @@
_core:
default_config_hash: zZhJs6wF6FMXjS8njswFvmbk2XEGcj0nLI-mZCfAoFs
field_prefix: field_
langcode: fr

View File

@ -0,0 +1,9 @@
_core:
default_config_hash: _5293QOM-Perj4qDT33F4EmNlI9Ge0bNd_WYrZilDPA
description:
type: textfield
length: 128
icon:
directory: core/modules/file/icons
langcode: fr
make_unused_managed_files_temporary: false

View File

@ -0,0 +1,29 @@
uuid: b0461a78-37fa-46eb-ba2a-907015bd7faa
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: '-HkgHFb_tVNTyyY2lYcwyfNRVwiDA6HKxfP6hr2oA00'
name: 'Texte brut'
format: plain_text
weight: 10
filters:
filter_autop:
id: filter_autop
provider: filter
status: true
weight: 0
settings: { }
filter_html_escape:
id: filter_html_escape
provider: filter
status: true
weight: -10
settings: { }
filter_url:
id: filter_url
provider: filter
status: true
weight: 0
settings:
filter_url_length: 72

View File

@ -0,0 +1,70 @@
uuid: 92d03e87-192f-4b64-97ee-0b6a1a401890
langcode: fr
status: true
dependencies:
module:
- editor
_core:
default_config_hash: a0dSxrd1nnzeSvKpvFmtoLpxDd3Nj6E7dQN-MZUi20g
name: wysiwyg
format: wysiwyg
weight: 0
filters:
editor_file_reference:
id: editor_file_reference
provider: editor
status: true
weight: -50
settings: { }
filter_align:
id: filter_align
provider: filter
status: false
weight: -41
settings: { }
filter_autop:
id: filter_autop
provider: filter
status: true
weight: -49
settings: { }
filter_caption:
id: filter_caption
provider: filter
status: false
weight: -40
settings: { }
filter_html:
id: filter_html
provider: filter
status: false
weight: -43
settings:
allowed_html: '<em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type> <li> <dl> <dt> <dd> <h2 id> <h3 id> <h5 id> <h6 id> <u> <a href hreflang !href accesskey id rel target title data-entity-type data-entity-uuid data-entity-substitution> <img src alt data-entity-type data-entity-uuid data-entity-substitution> <p> <h1> <pre> <h4 id class="inter-titre">'
filter_html_help: true
filter_html_nofollow: false
filter_html_escape:
id: filter_html_escape
provider: filter
status: false
weight: -42
settings: { }
filter_html_image_secure:
id: filter_html_image_secure
provider: filter
status: true
weight: -48
settings: { }
filter_htmlcorrector:
id: filter_htmlcorrector
provider: filter
status: true
weight: -47
settings: { }
filter_url:
id: filter_url
provider: filter
status: true
weight: -45
settings:
filter_url_length: 72

View File

@ -0,0 +1,5 @@
_core:
default_config_hash: lbxA85k_ynsRFrQ1JCNbgazSNG5GTs5aoOSL0W-UsvM
fallback_format: plain_text
always_show_fallback_choice: false
langcode: fr

View File

@ -0,0 +1,23 @@
_core:
default_config_hash: MkRrI2YYk2oy2dBC48Sfb-SPN2Nf9xNMJedYjbsBUFw
unprotected_forms:
- user_login_form
- search_form
- search_block_form
- views_exposed_form
- honeypot_settings_form
protect_all_forms: false
log: true
element_name: url
time_limit: 5
expire: 300
form_settings:
user_register_form: true
user_pass: true
node_autre_son_form: false
node_enregistrement_form: false
node_evenement_form: false
node_fil_form: false
node_page_form: false
node_static_form: false
langcode: fr

View File

@ -0,0 +1,6 @@
_core:
default_config_hash: 7CnygMhc8yrEJGdPf_5QRmPsMvr4QoXlsmMo3te3nbw
preview_image: core/modules/image/sample.png
allow_insecure_derivatives: false
suppress_itok_output: false
langcode: fr

View File

@ -0,0 +1,17 @@
uuid: 741e045b-9041-4a04-96ac-1ee994e574ce
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: CVznlrxJZplSgxXAxSUJPtzw8I-G_oWg6TbS1lMRbUw
name: large
label: 'Large (480×480)'
effects:
ddd73aa7-4bd6-4c85-b600-bdf2b1628d1d:
uuid: ''
id: image_scale
weight: 0
data:
width: 480
height: 480
upscale: false

View File

@ -0,0 +1,17 @@
uuid: bd369250-f416-479e-a33a-7693b829b7ba
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: ftD2T4UaJtHnFa0Q8EypXgyuMNBWzoLaLa4cuGiHEYI
name: linkit_result_thumbnail
label: 'Vignette de résultat Linkit'
effects:
2943df29-38ea-459c-ba1d-290489bb1807:
uuid: ''
id: image_scale_and_crop
weight: 1
data:
width: 50
height: 50
anchor: center-center

View File

@ -0,0 +1,17 @@
uuid: fcbfd333-b655-4509-9811-d99855d6f511
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: Q5Uwhw9G0r7SDQmISQR-WDDLVW0p10iomx_zwEeRTec
name: medium
label: 'Moyen (220x220)'
effects:
bddf0d06-42f9-4c75-a700-a33cafa25ea0:
uuid: ''
id: image_scale
weight: 0
data:
width: 220
height: 220
upscale: false

View File

@ -0,0 +1,17 @@
uuid: 37c611d2-c99f-4b49-bf0d-60c60e6ca7f9
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: 808S1-h_6g5FXMi1DvZNcUfR0xgbGxZha9cbIFIeiUQ
name: thumbnail
label: 'Vignette (100x100)'
effects:
1cfec298-8620-4749-b100-ccb6c4500779:
uuid: ''
id: image_scale
weight: 0
data:
width: 100
height: 100
upscale: false

View File

@ -0,0 +1,17 @@
uuid: 56dfd990-2ea4-423d-a6d0-01312edc07f4
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: Wmk_h3Nz9DCkjc_fJ2YR7y_J4PuMK6fN4mU4xIINN-g
name: wide
label: 'Large (1090)'
effects:
09959c15-59ce-4f6d-90df-e2d7cf32bce5:
uuid: ''
id: image_scale
weight: 1
data:
width: 1090
height: null
upscale: false

View File

@ -0,0 +1,13 @@
uuid: 63148e0c-f9fc-4b2f-880e-06da4b348136
langcode: fr
status: true
dependencies:
config:
- node.type.static
_core:
default_config_hash: vbOq9ZwxcE0aCKgtfqoSG5aCBbkgPia6tPKdmmxELRo
id: node.static
target_entity_type_id: node
target_bundle: static
default_langcode: site_default
language_alterable: false

View File

@ -0,0 +1,13 @@
uuid: 40852a1f-0b01-4b56-b1eb-4533fa267bd4
langcode: fr
status: true
dependencies:
module:
- path_alias
_core:
default_config_hash: m_7yBNwbvly3oKveqmvohnEXY7ef2r_jVloy67aHj08
id: path_alias.path_alias
target_entity_type_id: path_alias
target_bundle: path_alias
default_langcode: und
language_alterable: true

View File

@ -0,0 +1,11 @@
uuid: e891cdc9-832e-4a64-8ac0-7d09c33f8ba7
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: wcTV5wdmdgiDePrwtwUA0nK1sTkIzGRr7er3wL-lxcE
id: fr
label: French
direction: ltr
weight: 0
locked: false

View File

@ -0,0 +1,11 @@
uuid: e6a0e011-85de-4389-a00e-2ef4e6e444f9
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: d5UEcbtfmQlQ8BYP99zaQDMFGFCMX4zOzrSx6YAr9v8
id: und
label: 'Non spécifié'
direction: ltr
weight: 2
locked: true

View File

@ -0,0 +1,11 @@
uuid: 95ad286d-fb9c-4795-bcd0-1063e6adfb49
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: AFwY4Lyiqj-ZJyCWVFNoz4yO8krfoxgLZWQpCW1h7x4
id: zxx
label: 'Non applicable'
direction: ltr
weight: 3
locked: true

View File

@ -0,0 +1,14 @@
_core:
default_config_hash: Ys5M79wZXx_k_rtFf65fpICqe7yH3h8iuxWMMB0utyI
langcode: fr
map:
'no': nb
pt: pt-pt
zh: zh-hans
zh-tw: zh-hant
zh-hk: zh-hant
zh-mo: zh-hant
zh-cht: zh-hant
zh-cn: zh-hans
zh-sg: zh-hans
zh-chs: zh-hans

View File

@ -0,0 +1,12 @@
_core:
default_config_hash: cRCI0tHP1UHHRAZnWB2kumZdKCl42f5lrV7q055H5jU
langcode: fr
session:
parameter: language
url:
source: path_prefix
prefixes:
fr: ''
domains:
fr: ''
selected_langcode: site_default

View File

@ -0,0 +1,20 @@
_core:
default_config_hash: uMLvVIvxpGVE_bF8BglnNT7vjMf_t8iNpe9_v1X0wAg
langcode: fr
all:
- language_interface
- language_content
- language_url
configurable:
- language_interface
negotiation:
language_content:
enabled:
language-interface: 0
language_url:
enabled:
language-url: 0
language-url-fallback: 1
language_interface:
enabled:
language-url: 0

View File

@ -0,0 +1,23 @@
uuid: e0365646-2550-4377-879b-435746a0cc2b
langcode: fr
status: true
dependencies:
module:
- node
_core:
default_config_hash: 967Fy0vTwnyDBpxn7eoYLB9sFbXXrbH3KMUAD7Q-m0w
label: 'Par défaut'
id: default
description: 'A default Linkit profile'
matchers:
556010a3-e317-48b3-b4ed-854c10f4b950:
id: 'entity:node'
uuid: ''
settings:
metadata: '[node:content-type:name] #[node:nid] | [node:created:medium] by [node:author]'
bundles: { }
group_by_bundle: false
substitution_type: canonical
limit: 100
include_unpublished: false
weight: 0

View File

@ -0,0 +1,16 @@
_core:
default_config_hash: NfYKrBm84GgW4yeYijbs7xPXbUU8jQChyiu7x4qlNOw
langcode: fr
cache_strings: true
translate_english: false
javascript:
directory: languages
translation:
use_source: remote_and_local
default_filename: '%project-%version.%language.po'
default_server_pattern: 'https://ftp.drupal.org/files/translations/%core/%project/%project-%version.%language.po'
overwrite_customized: false
overwrite_not_customized: true
update_interval_days: 0
path: sites/default/files/translations
import_enabled: true

View File

@ -0,0 +1,6 @@
_core:
default_config_hash: UA1LGT2916TE3VyHCdi_cD-GPCb6ilm9KluygCKnqOI
send: false
log: true
verbose: true
langcode: fr

View File

@ -0,0 +1,4 @@
_core:
default_config_hash: ENUzSsLjtl0THWvptK2LZ7BJtRbb032hiy3VTvjR7Pw
override_parent_selector: false
langcode: fr

View File

@ -0,0 +1,4 @@
_core:
default_config_hash: OXPp9nZGMVmjzysZndNjQcPUZHdkyhy6aYtZhf2z_Tw
langcode: fr
use_admin_theme: true

View File

@ -0,0 +1,19 @@
uuid: 306bf0e5-eaa4-4e5c-afe7-2078be619eab
langcode: fr
status: true
dependencies:
module:
- menu_ui
third_party_settings:
menu_ui:
available_menus: { }
parent: ''
_core:
default_config_hash: ktmRJ5fYRUxN-3fIuUy0g4TUrGmmNjWLKm8J_-n7og4
name: Static
type: static
description: 'Static Page'
help: null
new_revision: true
preview_mode: 0
display_submitted: false

View File

@ -0,0 +1,9 @@
_core:
default_config_hash: z68x45zR7LGIA5yOENWmYUEBVYVfrokTWWDucm7wJos
langcode: fr
core_override_preset: core
url_querystring:
core_override: false
querystring_key: pg
index_base: 0
encode_method: none

Some files were not shown because too many files have changed in this diff Show More