first commit

This commit is contained in:
Bachir Soussi Chiadmi 2022-09-05 13:21:43 +02:00
commit 1a6ea0e1b4
211 changed files with 26953 additions and 0 deletions

17
src/.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

61
src/.gitattributes vendored Normal file
View File

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

53
src/.gitignore vendored Normal file
View File

@ -0,0 +1,53 @@
# Ignore directories generated by Composer
/drush/contrib/
/vendor/
/web/core/
/web/modules/contrib/
/web/themes/contrib/
/web/profiles/contrib/
/web/libraries/
web/modules/dev/*.tar.gz
# 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
~/patches/*.patch
/.csslintrc
/.eslintrc.json
/.ht.router.php
/.htaccess
/INSTALL.txt
/README.txt
/autoload.php
/example.gitignore
/index.php
/robots.txt
/update.php
/web.config
config/sync/flag.flag.*.yml
config/sync/system.action.flag_action.*.yml
.vscode/*
web/themes/custom/ouatterrirtheme/assets/dist/report.html

106
src/composer.json Normal file
View File

@ -0,0 +1,106 @@
{
"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.4",
"drupal/core-project-message": "^9.4",
"drupal/core-recommended": "^9.4",
"wikimedia/composer-merge-plugin": "^2.0"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"wikimedia/composer-merge-plugin": true,
"cweagans/composer-patches": true,
"drupal/console-extend-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/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"
]
},
"merge-plugin": {
"include": [
"web/profiles/d8-starterkit-profile/composer.json"
],
"recurse": true,
"replace": false,
"merge-extra": true
}
}
}

13198
src/composer.lock generated Normal file

File diff suppressed because it is too large Load Diff

27
src/config/sync/.htaccess Normal file
View File

@ -0,0 +1,27 @@
# 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>
<IfModule mod_php.c>
php_flag engine off
</IfModule>

View File

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

View File

@ -0,0 +1,10 @@
_core:
default_config_hash: Pawk313dlmTas62LfDspeCxjQbNtOVl3_Uyi3REvu1A
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: 6855d10d-9622-44b7-b92e-f3bff0cc0601
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'
label_display: '0'
provider: system
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: ea5f97b5-fac4-46f1-9a06-02f5152244a0
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'
label_display: '0'
provider: system
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: ff5ba401-bb8d-435b-9154-1dd257cde7bf
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
label_display: '0'
provider: help
visibility: { }

View File

@ -0,0 +1,20 @@
uuid: 47acc579-82a7-4691-b311-c9fe020f6a09
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'
label_display: '0'
provider: core
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: a3b08666-19a1-4584-ac50-c49f536e4c09
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'
label_display: visible
provider: user
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 3317fa64-99b2-485e-9972-ff32e8238dce
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'
label_display: '0'
provider: system
visibility: { }

View File

@ -0,0 +1,20 @@
uuid: 3856fc20-f018-466b-a11d-2d499daa6f19
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'
label_display: '0'
provider: core
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: 69dc4c38-9236-49a3-90ea-c45891c32a95
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'
label_display: '0'
provider: core
primary: true
secondary: false
visibility: { }

View File

@ -0,0 +1,22 @@
uuid: bb885578-1b97-4bed-83a4-7782f8b10fb3
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'
label_display: '0'
provider: core
primary: false
secondary: true
visibility: { }

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: UVH1aJ4b44UM-VdPVN7hNNuuVqfReJxwfVeDQH1Hvsk
langcode: fr
ignored_config_entities: { }

View File

@ -0,0 +1,13 @@
uuid: a661e45b-34ed-4f18-95f7-b65358c63ee0
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: ''

View File

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

View File

@ -0,0 +1,51 @@
_core:
default_config_hash: NDkHK4I7-fpBSVP6pPMg_MLvHZcjgriRzCSGA4vnpi8
langcode: fr
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: { }

View File

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

View File

@ -0,0 +1,24 @@
uuid: b20adc64-773e-4fac-a224-872a06ecfec2
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

View File

@ -0,0 +1,10 @@
uuid: c8cf7840-9977-4163-87f4-0b4c183a4928
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'

View File

@ -0,0 +1,10 @@
uuid: 82c84a41-40ce-43b1-b81e-40a297ce34cf
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

View File

@ -0,0 +1,10 @@
uuid: d00acfb6-b93c-49ae-86dc-7aae69e60727
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'

View File

@ -0,0 +1,10 @@
uuid: 913a843f-8bef-4619-ac64-a1d05026658b
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

View File

@ -0,0 +1,10 @@
uuid: d5cc0702-62b7-45e0-87d9-f617f7b919ee
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: M7yqicYkU36hRy5p9drAaGBBihhUD1OyujFrAaQ93ZE
id: html_time
label: 'Heure HTML'
locked: true
pattern: 'H:i:s'

View File

@ -0,0 +1,10 @@
uuid: 44cade96-cf9e-4d4f-ae5f-688d59d8950d
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: wKD4WsoV_wFgv2vgI4mcAAFSIzrye17ykzdwrnApkfY
id: html_week
label: 'Semaine HTML'
locked: true
pattern: Y-\WW

View File

@ -0,0 +1,10 @@
uuid: ea0244f6-9614-4b25-844d-b43a44402f8e
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: OjekiQuX9RbVQ2_8jOHBL94RgYLePqX7wpfNGgcQzrk
id: html_year
label: 'Année HTML'
locked: true
pattern: 'Y'

View File

@ -0,0 +1,10 @@
uuid: 9f4fe70f-da71-494a-b069-a91943a76f9e
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

View File

@ -0,0 +1,10 @@
uuid: 7facef8a-fbfb-4df7-9180-3be28849c74a
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'

View File

@ -0,0 +1,10 @@
uuid: 0877b987-1e9c-463e-b4d0-fcc6ad5ee8cc
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'

View File

@ -0,0 +1,10 @@
uuid: 2f2903c1-8d6b-402f-bd02-7ba69eedb410
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'

View File

@ -0,0 +1,12 @@
uuid: d6ff0d0c-8b18-4697-a83f-69d9f65f5e9d
langcode: fr
status: true
dependencies:
module:
- user
_core:
default_config_hash: flXhTcp55yLcyy7ZLOhPGKGZobZQJdkAFVWV3LseiuI
id: user.register
label: 'S''inscrire'
targetEntityType: user
cache: true

View File

@ -0,0 +1,32 @@
uuid: ee1949b8-3c5b-4c77-96d8-921ef8843240
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:
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,12 @@
uuid: eb7a14cd-feed-47da-a824-a8f1366f7607
langcode: fr
status: true
dependencies:
module:
- block
_core:
default_config_hash: AJ4KPUipTz1VsDPfMT_D9pamgbfXUJBgvYVel4P1DHE
id: block.token
label: 'Jeton (token)'
targetEntityType: block
cache: true

View File

@ -0,0 +1,12 @@
uuid: b9cc33de-e9ce-4475-aab8-0362d629da9a
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

View File

@ -0,0 +1,12 @@
uuid: b38b418e-a386-453d-a99a-fbee310958fa
langcode: fr
status: true
dependencies:
module:
- file
_core:
default_config_hash: T6IiNXJhdrBudWJ_guxnUz3p71T0lFcidLSTM9VlFl8
id: file.token
label: 'Jeton (token)'
targetEntityType: file
cache: true

View File

@ -0,0 +1,12 @@
uuid: f3246d2a-465f-4cd2-ac96-fe25fb1acbd8
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

View File

@ -0,0 +1,12 @@
uuid: 8225b503-f661-4cdc-ad67-fdbf3dab7015
langcode: fr
status: false
dependencies:
module:
- node
_core:
default_config_hash: ElrtInxGjZd7GaapJ5O9n-ugi2hG2IxFivtgn0tHOsk
id: node.full
label: 'Full content'
targetEntityType: node
cache: true

View File

@ -0,0 +1,12 @@
uuid: 2a2be7e9-2ca6-4541-a7bb-68c111aee10e
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

View File

@ -0,0 +1,12 @@
uuid: 77987f75-c6f5-4a3e-bf00-3b472cdcde19
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

View File

@ -0,0 +1,12 @@
uuid: 4f20efeb-7e9b-4cbe-8be5-c255a83d088c
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

View File

@ -0,0 +1,12 @@
uuid: ec1050f9-96d5-4f4b-991a-bf324e15d17d
langcode: fr
status: true
dependencies:
module:
- node
_core:
default_config_hash: Mz9qWr1kUYK0mjRAGDsr5XS6PvtZ24en_7ndt-pyWe4
id: node.teaser
label: Accroche
targetEntityType: node
cache: true

View File

@ -0,0 +1,12 @@
uuid: 33176166-60dd-4712-8644-85fdfd86d2e0
langcode: fr
status: true
dependencies:
module:
- node
_core:
default_config_hash: vIX64lRX14_lPePewHfWVFSyTfJt0Yh-Lja05UgP8N0
id: node.token
label: 'Jeton (token)'
targetEntityType: node
cache: true

View File

@ -0,0 +1,10 @@
uuid: 7b134ccb-6eb3-4543-8b5c-abfd9670f305
langcode: fr
status: true
dependencies:
module:
- path_alias
id: path_alias.token
label: Token
targetEntityType: path_alias
cache: true

View File

@ -0,0 +1,12 @@
uuid: ed1075fe-c547-4ef5-a8fc-29b125db0fa1
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

View File

@ -0,0 +1,12 @@
uuid: 4c49abf8-4970-4f4a-bbf5-dc3b1254931e
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

View File

@ -0,0 +1,12 @@
uuid: 9b77fe53-4ca7-4687-8b06-f6ba4da8d4b5
langcode: fr
status: true
dependencies:
module:
- user
_core:
default_config_hash: 71CSAr_LNPcgu6D6jI4INl1KATkahmeyUFBETAWya8g
id: user.compact
label: Compact
targetEntityType: user
cache: true

View File

@ -0,0 +1,12 @@
uuid: 46cb40f1-cc15-412b-8369-a846b30e960e
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

View File

@ -0,0 +1,12 @@
uuid: 13f679d9-47f2-4493-89c7-19d1b4c8a246
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

View File

@ -0,0 +1,116 @@
_core:
default_config_hash: R4IF-ClDHXxblLcG0L7MgsLvfBIMAvi_skumNFQwkDc
langcode: fr
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
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
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
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
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
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
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

View File

@ -0,0 +1,4 @@
_core:
default_config_hash: jdY7AU0tU-QsjmiOw3W8vwpYMb-By--_MSFgbqKUTYM
langcode: fr
definitions: { }

View File

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

View File

@ -0,0 +1,11 @@
_core:
default_config_hash: 8SYa5OOpQGdg4wnttb0LFNuG6GmivsS2qNv9sTH9gDI
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: default

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,63 @@
uuid: fec426d6-6e33-4bbd-b02f-b2dcc0ff5b66
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
image_upload:
status: true
scheme: public
directory: wysiwyg-images
max_size: ''
max_dimensions:
width: null
height: null

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: Ed6LXVlKotwVS4tx7_rnsL-6NlBoD-PLu3KFPAvpNMc
langcode: fr
file_scheme: public
upload_directory: embed_buttons

View File

@ -0,0 +1,19 @@
_core:
default_config_hash: rHbHZIIF9TP3H2Vs37uCHz4Gm4phULg0rQ_OKihxJfM
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,25 @@
uuid: 0f2bcaad-51de-4412-ad0c-58102447f2df
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

View File

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

View File

@ -0,0 +1,21 @@
uuid: 0f29d28a-5e36-4352-95a3-5e1170df6bac
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

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: b7ef9de2-0d50-4eae-a652-235897812000
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: '-HkgHFb_tVNTyyY2lYcwyfNRVwiDA6HKxfP6hr2oA00'
name: 'Texte brut'
format: plain_text
weight: 10
filters:
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
filter_autop:
id: filter_autop
provider: filter
status: true
weight: 0
settings: { }

View File

@ -0,0 +1,81 @@
uuid: e6cb238a-01f6-4b0e-a7c2-e46498a0dc90
langcode: fr
status: true
dependencies:
module:
- editor
- url_to_video_filter
_core:
default_config_hash: w3wAkgsV6hn7P_cXCSnV-_1B_HOVJ7qwjv2DZID3B7g
name: wysiwyg
format: wysiwyg
weight: 0
filters:
editor_file_reference:
id: editor_file_reference
provider: editor
status: true
weight: -50
settings: { }
filter_html_image_secure:
id: filter_html_image_secure
provider: filter
status: true
weight: -48
settings: { }
filter_url:
id: filter_url
provider: filter
status: true
weight: -45
settings:
filter_url_length: 72
filter_autop:
id: filter_autop
provider: filter
status: true
weight: -49
settings: { }
filter_htmlcorrector:
id: filter_htmlcorrector
provider: filter
status: true
weight: -47
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_align:
id: filter_align
provider: filter
status: false
weight: -41
settings: { }
filter_caption:
id: filter_caption
provider: filter
status: false
weight: -40
settings: { }
filter_html_escape:
id: filter_html_escape
provider: filter
status: false
weight: -42
settings: { }
filter_url_to_video:
id: filter_url_to_video
provider: url_to_video_filter
status: true
weight: -46
settings:
youtube: '1'
youtube_webp_preview: '0'
autoload: '0'
vimeo: '1'

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: 35364376-cc1c-44fc-9b25-7082049fc993
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: J2n0RpFzS0-bgSyxjs6rSdgxB1rb-bTAgqywNx_964M
name: large
label: 'Large (480×480)'
effects:
ddd73aa7-4bd6-4c85-b600-bdf2b1628d1d:
uuid: ddd73aa7-4bd6-4c85-b600-bdf2b1628d1d
id: image_scale
weight: 0
data:
width: 480
height: 480
upscale: false

View File

@ -0,0 +1,17 @@
uuid: 9838a551-f25a-4093-ab61-a062756ff636
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: PY0kMp7KIxvU4kBi5mcnD_DHTKUc1OkYCfaPliXjpa8
name: linkit_result_thumbnail
label: 'Linkit result thumbnail'
effects:
2943df29-38ea-459c-ba1d-290489bb1807:
uuid: 2943df29-38ea-459c-ba1d-290489bb1807
id: image_scale_and_crop
weight: 1
data:
width: 50
height: 50
anchor: center-center

View File

@ -0,0 +1,17 @@
uuid: 5472929d-a462-4c0c-90a4-0e761b877a85
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: Y9NmnZHQq20ASSyTNA6JnwtWrJJiSajOehGDtmUFdM0
name: medium
label: 'Moyen (220x220)'
effects:
bddf0d06-42f9-4c75-a700-a33cafa25ea0:
uuid: bddf0d06-42f9-4c75-a700-a33cafa25ea0
id: image_scale
weight: 0
data:
width: 220
height: 220
upscale: false

View File

@ -0,0 +1,17 @@
uuid: d9d3052b-5950-4c6f-9c7f-a6e000c187c1
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: cCiWdBHgLwj5omG35lsKc4LkW4MBdmcctkVop4ol5x0
name: thumbnail
label: 'Vignette (100x100)'
effects:
1cfec298-8620-4749-b100-ccb6c4500779:
uuid: 1cfec298-8620-4749-b100-ccb6c4500779
id: image_scale
weight: 0
data:
width: 100
height: 100
upscale: false

View File

@ -0,0 +1,17 @@
uuid: 52dbb144-f98f-4ffd-8870-524a5612af81
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: LswCVLg8z4Zk1u6pV1Dpj1qUj5YY2CQ7_ojx7bJQ8qk
name: wide
label: 'Large (1090)'
effects:
09959c15-59ce-4f6d-90df-e2d7cf32bce5:
uuid: 09959c15-59ce-4f6d-90df-e2d7cf32bce5
id: image_scale
weight: 1
data:
width: 1090
height: null
upscale: false

View File

@ -0,0 +1,13 @@
uuid: bca25a18-906f-4280-98a7-73a217b949e2
langcode: fr
status: true
dependencies:
config:
- node.type.static
_core:
default_config_hash: iKpEZiUtD8kZ_5lJot5mLG1bANLqkzDxRFi3ETkUDPo
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: abe68ac6-3212-403a-a23d-9920b6d125b3
langcode: fr
status: true
dependencies:
module:
- path_alias
_core:
default_config_hash: dhjFABRzm52DkRXnYja5ZoHwjY0R3gEGic3KpDUXgRo
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,13 @@
uuid: f7eb1222-7140-40a7-9c74-89a13a236c8c
langcode: fr
status: true
dependencies:
module:
- redirect
_core:
default_config_hash: y734AXEpjry1Ppff_hQQBFQGJvYjF0fk1JoWtp5q2JY
id: redirect.redirect
target_entity_type_id: redirect
target_bundle: redirect
default_langcode: und
language_alterable: true

View File

@ -0,0 +1,9 @@
uuid: d41f55e4-e52d-4406-96f6-5cd7a840bf6e
langcode: fr
status: true
dependencies: { }
id: fr
label: French
direction: ltr
weight: 0
locked: false

View File

@ -0,0 +1,11 @@
uuid: a12aa044-1a9d-44d9-9d6c-766d5a88d2b0
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: eNX6lLCKDaY83nCMh20My---y03KbiFlv802DKCCpvg
id: und
label: 'Non spécifié'
direction: ltr
weight: 2
locked: true

View File

@ -0,0 +1,11 @@
uuid: 6c3fdf74-3dc0-4cb7-b910-38d0e21b5adf
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: 35CefWbnzaiytcg3acexxz_GTvuwIjYd_ZTcmmR-tXA
id: zxx
label: 'Non applicable'
direction: ltr
weight: 3
locked: true

View File

@ -0,0 +1,14 @@
_core:
default_config_hash: EMWe7Yu4Q5eD-NUfNuQAWGBvYUNZPIinztEtONSmsDc
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: uEePITI9tV6WqzmsTb7MfPCi5yPWXSxAN1xeLcYFQbM
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: dqouFqVseNJNvEjsoYKxbinFOITuCxYhi4y2OTNQP_8
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: 0e20ee4b-fb01-440f-b262-8b7287625f2f
langcode: fr
status: true
dependencies:
module:
- node
_core:
default_config_hash: Tt8DtxZ3Nooo0PoWPpJvszA3R_5d8MmpUW7LM_R-BzY
label: 'Par défaut'
id: default
description: 'A default Linkit profile'
matchers:
556010a3-e317-48b3-b4ed-854c10f4b950:
id: 'entity:node'
uuid: 556010a3-e317-48b3-b4ed-854c10f4b950
settings:
metadata: 'by [node:author] | [node:created:medium]'
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: pefQIx7YdI1zQU_NSZMEY6gyZyFqvH3mhAFVYSeZjdg
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,38 @@
_core:
default_config_hash: YGueb7ImKHSG1RRmIB1iqPHVGXTmI2yvCcB-RX7FPeY
site_id: ''
url_http: ''
url_https: ''
domain_mode: 0
visibility:
request_path_mode: 0
request_path_pages: |-
/admin
/admin/*
/batch
/node/add*
/node/*/*
/user/*/*
user_role_mode: 0
user_role_roles: { }
user_account_mode: 1
track:
mailto: true
files: true
files_extensions: '7z|aac|arc|arj|asf|asx|avi|bin|csv|doc(x|m)?|dot(x|m)?|exe|flv|gif|gz|gzip|hqx|jar|jpe?g|js|mp(2|3|4|e?g)|mov(ie)?|msi|msp|pdf|phps|png|ppt(x|m)?|pot(x|m)?|pps(x|m)?|ppam|sld(x|m)?|thmx|qtm?|ra(m|r)?|sea|sit|tar|tgz|torrent|txt|wav|wma|wmv|wpd|xls(x|m|b)?|xlt(x|m)|xlam|xml|z|zip'
colorbox: true
userid: false
messages: { }
site_search: false
privacy:
donottrack: true
custom:
variable: { }
codesnippet:
before: ''
after: ''
translation_set: false
cache: false
page_title_hierarchy: false
page_title_hierarchy_exclude_home: 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: W0cgFPhPJ3gAdqm06-az48BLf5MVcoZVS0HdByoofi0
langcode: fr
use_admin_theme: true

View File

@ -0,0 +1,19 @@
uuid: fafbd042-424f-415c-95b2-f5ec8f3c7185
langcode: fr
status: true
dependencies:
module:
- menu_ui
third_party_settings:
menu_ui:
available_menus: { }
parent: ''
_core:
default_config_hash: Gbpk2gnakDOKmsOEikWuVfLDOZ8rtrlW-UoZFjqWCF0
name: Static
type: static
description: 'Static Page'
help: ''
new_revision: true
preview_mode: 0
display_submitted: false

View File

@ -0,0 +1,50 @@
uuid: 0833cf6f-6127-4117-a532-39f99467ba62
langcode: fr
status: true
dependencies: { }
_core:
default_config_hash: iqELjKI7buiSyUfLs0cgSDbx7dvVI2StrGj0OaNLgSo
id: default
label: 'Par défaut'
panes:
left:
style: none
config: { }
center:
style: mini
config:
display: pages
display_restriction: 2
prefix_display: true
suffix_display: true
first_link: always
previous_link: always
next_link: always
last_link: always
display_mode: widget
widget_resize: true
widget_button: auto
tags:
pages:
prefix_label: Page
suffix_label: 'of @total'
page_current: '@number'
page_current_title: 'Page courante'
page_current_reader: 'Page courante'
first: «
first_title: 'Aller à la première page'
first_reader: 'Première page'
previous:
previous_title: 'Aller à la page précédente'
previous_reader: 'Page précédente'
next:
next_title: 'Aller à la page suivante'
next_reader: 'Page suivante'
last: »
last_title: 'Aller à la dernière page'
last_reader: 'Dernière page'
pageset_empty: 'No pages to display.'
widget_title: 'Enter page, then press Return.'
right:
style: none
config: { }

View File

@ -0,0 +1,4 @@
_core:
default_config_hash: s5EG3R84ts1be1Extldumd9mVDIzXmlznK_DMK5GWT8
langcode: fr
core_override_preset: core

View File

@ -0,0 +1,96 @@
_core:
default_config_hash: XqfeitZGhwKIz1gscA6pkmztUVl4yTyQkdQxhWCa9K0
langcode: fr
default_config:
display: pages
display_restriction: 2
prefix_display: false
suffix_display: false
first_link: never
previous_link: never
next_link: never
last_link: never
quantity: 5
fl_breakers: true
display_mode: normal
separator_display: false
breaker_display: true
progr_links: relative
tags:
page_breaker:
page_separator: '|'
pages:
prefix_label: Page
suffix_label: 'of @total'
page_current: '@number'
page_current_title: 'Page courante'
page_current_reader: 'Page courante'
first: «
first_title: 'Aller à la première page'
first_reader: 'Première page'
previous:
previous_title: 'Aller à la page précédente'
previous_reader: 'Page précédente'
next:
next_title: 'Aller à la page suivante'
next_reader: 'Page suivante'
last: »
last_title: 'Aller à la dernière page'
last_reader: 'Dernière page'
pageset_empty: 'No pages to display.'
page_previous: '@number'
page_next: '@number'
page_title: 'Aller à la page @number'
page_reader: Page
page_previous_relative: '-@offset'
page_next_relative: +@offset
items:
prefix_label: Élément
suffix_label: 'of @total_items'
page_current: '@item'
page_current_title: 'Current items'
page_current_reader: 'Current items'
first: «
first_title: 'Go to first item'
first_reader: 'Premier élément'
previous:
previous_title: 'Go to previous items'
previous_reader: 'Previous items'
next:
next_title: 'Go to next items'
next_reader: 'Next items'
last: »
last_title: 'Go to last item'
last_reader: 'Last item'
pageset_empty: 'No items to display.'
page_previous: '@item'
page_next: '@item'
page_title: 'Go to item @item'
page_reader: Élément
page_previous_relative: '-@item_offset'
page_next_relative: +@item_offset
item_ranges:
prefix_label: Éléments
suffix_label: 'of @total_items'
page_current: '@item_low-@item_high'
page_current_title: 'Current items'
page_current_reader: 'Current items'
first: «
first_title: 'Go to first items'
first_reader: 'First items'
previous:
previous_title: 'Go to previous items'
previous_reader: 'Previous items'
next:
next_title: 'Go to next items'
next_reader: 'Next items'
last: »
last_title: 'Go to last items'
last_reader: 'Last items'
pageset_empty: 'No items to display.'
page_previous: '@item_low-@item_high'
page_next: '@item_low-@item_high'
page_title: 'Go to items @item_low-@item_high'
page_reader: Éléments
page_previous_relative: '-@item_offset'
page_next_relative: +@item_offset

View File

@ -0,0 +1,57 @@
_core:
default_config_hash: NY7q7PWa0WKG8j6KikrXPnQW0T24jkylHz6EetKm0f8
langcode: fr
default_config:
display: pages
display_restriction: 2
prefix_display: true
first_link: never
previous_link: not_on_first
next_link: not_on_last
last_link: never
tags:
pages:
prefix_label: 'Page <b>@number</b> of @total'
first: «
first_title: 'Aller à la première page'
first_reader: 'Première page'
previous:
previous_title: 'Aller à la page précédente'
previous_reader: 'Page précédente'
next:
next_title: 'Aller à la page suivante'
next_reader: 'Page suivante'
last: »
last_title: 'Aller à la dernière page'
last_reader: 'Dernière page'
pageset_empty: 'No pages to display.'
items:
prefix_label: 'Item <b>@item</b> of @total_items'
first: «
first_title: 'Go to first item'
first_reader: 'Premier élément'
previous:
previous_title: 'Go to previous items'
previous_reader: 'Previous items'
next:
next_title: 'Go to next items'
next_reader: 'Next items'
last: »
last_title: 'Go to last item'
last_reader: 'Last item'
pageset_empty: 'No items to display.'
item_ranges:
prefix_label: 'Items <b>@item_low-@item_high</b> of @total_items'
first: «
first_title: 'Go to first items'
first_reader: 'First items'
previous:
previous_title: 'Go to previous items'
previous_reader: 'Previous items'
next:
next_title: 'Go to next items'
next_reader: 'Next items'
last: »
last_title: 'Go to last items'
last_reader: 'Last items'
pageset_empty: 'No items to display.'

View File

@ -0,0 +1,56 @@
_core:
default_config_hash: 8uZaLZeDG8Iz6_vkG24zU0hE9iPuOCywOMCbGHWbGTY
langcode: fr
default_config:
display: pages
display_restriction: 2
prefix_display: true
suffix_display: true
first_link: always
previous_link: always
next_link: always
last_link: always
display_mode: widget
widget_resize: true
widget_button: auto
tags:
pages:
prefix_label: Page
suffix_label: 'of @total'
page_current: '@number'
page_current_title: 'Page courante'
page_current_reader: 'Page courante'
first: «
first_title: 'Aller à la première page'
first_reader: 'Première page'
previous:
previous_title: 'Aller à la page précédente'
previous_reader: 'Page précédente'
next:
next_title: 'Aller à la page suivante'
next_reader: 'Page suivante'
last: »
last_title: 'Aller à la dernière page'
last_reader: 'Dernière page'
pageset_empty: 'No pages to display.'
widget_title: 'Enter page, then press Return.'
items:
prefix_label: Élément
suffix_label: 'of @total_items'
page_current: '@item'
page_current_title: 'Current items'
page_current_reader: 'Current items'
first: «
first_title: 'Go to first item'
first_reader: 'Premier élément'
previous:
previous_title: 'Go to previous items'
previous_reader: 'Previous items'
next:
next_title: 'Go to next items'
next_reader: 'Next items'
last: »
last_title: 'Go to last item'
last_reader: 'Last item'
pageset_empty: 'No items to display.'
widget_title: 'Enter item, then press Return.'

View File

@ -0,0 +1,14 @@
_core:
default_config_hash: ZgT7eV23Z9-PF9KXVlaxAboDUaFogZ3dbpuXUCTs5mY
langcode: fr
default_config:
panes:
left:
style: none
config: { }
center:
style: standard
config: { }
right:
style: none
config: { }

View File

@ -0,0 +1,97 @@
_core:
default_config_hash: y74JVrQmRdF3bx2Ia4i_LX0HRS7qZK-tfspF1vPNAxM
langcode: fr
default_config:
display: pages
display_restriction: 2
prefix_display: false
suffix_display: false
first_link: never
previous_link: never
next_link: never
last_link: never
quantity: 5
fl_breakers: true
display_mode: normal
separator_display: false
breaker_display: true
progr_links: relative
factors: '2.5,5,10'
tags:
page_breaker:
page_separator: '|'
pages:
prefix_label: Page
suffix_label: 'of @total'
page_current: '@number'
page_current_title: 'Page courante'
page_current_reader: 'Page courante'
first: «
first_title: 'Aller à la première page'
first_reader: 'Première page'
previous:
previous_title: 'Aller à la page précédente'
previous_reader: 'Page précédente'
next:
next_title: 'Aller à la page suivante'
next_reader: 'Page suivante'
last: »
last_title: 'Aller à la dernière page'
last_reader: 'Dernière page'
pageset_empty: 'No pages to display.'
page_previous: '@number'
page_next: '@number'
page_title: 'Aller à la page @number'
page_reader: Page
page_previous_relative: '-@offset'
page_next_relative: +@offset
items:
prefix_label: Élément
suffix_label: 'of @total_items'
page_current: '@item'
page_current_title: 'Current items'
page_current_reader: 'Current items'
first: «
first_title: 'Go to first item'
first_reader: 'Premier élément'
previous:
previous_title: 'Go to previous items'
previous_reader: 'Previous items'
next:
next_title: 'Go to next items'
next_reader: 'Next items'
last: »
last_title: 'Go to last item'
last_reader: 'Last item'
pageset_empty: 'No items to display.'
page_previous: '@item'
page_next: '@item'
page_title: 'Go to item @item'
page_reader: Élément
page_previous_relative: '-@item_offset'
page_next_relative: +@item_offset
item_ranges:
prefix_label: Éléments
suffix_label: 'of @total_items'
page_current: '@item_low-@item_high'
page_current_title: 'Current items'
page_current_reader: 'Current items'
first: «
first_title: 'Go to first items'
first_reader: 'First items'
previous:
previous_title: 'Go to previous items'
previous_reader: 'Previous items'
next:
next_title: 'Go to next items'
next_reader: 'Next items'
last: »
last_title: 'Go to last items'
last_reader: 'Last items'
pageset_empty: 'No items to display.'
page_previous: '@item_low-@item_high'
page_next: '@item_low-@item_high'
page_title: 'Go to items @item_low-@item_high'
page_reader: Éléments
page_previous_relative: '-@item_offset'
page_next_relative: +@item_offset

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