Compare commits
29 Commits
b6cc242184
...
prod
Author | SHA1 | Date | |
---|---|---|---|
07ae40d703 | |||
7ec7d99554 | |||
cf7221e4d4 | |||
ed8a224885 | |||
ccbf8e9cfc | |||
e8a7c0d190 | |||
8b2c26774f | |||
5c40959059 | |||
81ab0ccfd7 | |||
b5fc279340 | |||
f9c28306e6 | |||
1096ac5408 | |||
7759cc5637 | |||
8d488a4ef0 | |||
0054045a33 | |||
2c6e2b6230 | |||
85a73c742a | |||
0de38a8a24 | |||
49565d70f6 | |||
702492f3b3 | |||
8ad1a55180 | |||
3369e860d0 | |||
4384f6315d | |||
1838132e54 | |||
150fd4be4c | |||
9821e593db | |||
07b267a964 | |||
49cc0fb328 | |||
b4a5480cf1 |
@@ -5,13 +5,13 @@ module.exports = {
|
|||||||
extends: [
|
extends: [
|
||||||
'eslint:recommended',
|
'eslint:recommended',
|
||||||
'plugin:vue/vue3-recommended',
|
'plugin:vue/vue3-recommended',
|
||||||
'plugin:vue-a11y/base',
|
// 'plugin:vue-a11y/base',
|
||||||
'standard',
|
'standard',
|
||||||
// 'plugin:prettier/recommended'
|
// 'plugin:prettier/recommended'
|
||||||
],
|
],
|
||||||
plugins: [
|
plugins: [
|
||||||
'vue',
|
'vue',
|
||||||
'vue-a11y',
|
// 'vue-a11y',
|
||||||
'no-autofix'
|
'no-autofix'
|
||||||
],
|
],
|
||||||
rules: {
|
rules: {
|
||||||
|
@@ -53,18 +53,18 @@ module.exports = merge(baseConfig, {
|
|||||||
new BundleAnalyzerPlugin({
|
new BundleAnalyzerPlugin({
|
||||||
'analyzerMode': 'static'
|
'analyzerMode': 'static'
|
||||||
}),
|
}),
|
||||||
new WebpackShellPluginNext({
|
// new WebpackShellPluginNext({
|
||||||
// onBuildStart:{
|
// // onBuildStart:{
|
||||||
// scripts: ['echo "Webpack Start"'],
|
// // scripts: ['echo "Webpack Start"'],
|
||||||
// blocking: true,
|
// // blocking: true,
|
||||||
// parallel: false
|
// // parallel: false
|
||||||
// },
|
// // },
|
||||||
// drush is not installed in this container so we have to ssh on the php container
|
// // drush is not installed in this container so we have to ssh on the php container
|
||||||
onAfterDone:{
|
// onAfterDone:{
|
||||||
scripts: ['echo "Clearing drupal cache $USER_UNAME $DRUPAL_ROOT"', 'sshpass -p "$USER_UNAME" ssh $USER_UNAME@php "cd $DRUPAL_ROOT && drush cc css-js"', 'echo "Done"'],
|
// scripts: ['echo "Clearing drupal cache $USER_UNAME $DRUPAL_ROOT"', 'sshpass -p "$USER_UNAME" ssh $USER_UNAME@php "cd $DRUPAL_ROOT && drush cc css-js"', 'echo "Done"'],
|
||||||
blocking: true,
|
// blocking: true,
|
||||||
parallel: false
|
// parallel: false
|
||||||
}
|
// }
|
||||||
})
|
// })
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
|
@@ -6,6 +6,11 @@ const baseConfig = require('./webpack.config.base')
|
|||||||
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
|
||||||
const TerserPlugin = require("terser-webpack-plugin");
|
const TerserPlugin = require("terser-webpack-plugin");
|
||||||
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
|
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
|
||||||
|
const { sentryWebpackPlugin } = require("@sentry/webpack-plugin");
|
||||||
|
|
||||||
|
require('dotenv').config();
|
||||||
|
|
||||||
|
// console.log(process.env);
|
||||||
|
|
||||||
module.exports = merge(baseConfig, {
|
module.exports = merge(baseConfig, {
|
||||||
mode: 'production',
|
mode: 'production',
|
||||||
@@ -68,12 +73,25 @@ module.exports = merge(baseConfig, {
|
|||||||
})
|
})
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
devtool: 'source-map', // Ensure source maps are generated
|
||||||
plugins: [
|
plugins: [
|
||||||
|
sentryWebpackPlugin({
|
||||||
|
org: "figures-libres",
|
||||||
|
project: "materio.com",
|
||||||
|
authToken: process.env.SENTRY_AUTH_TOKEN,
|
||||||
|
url: "https://frontlog.figli.io",
|
||||||
|
release: {
|
||||||
|
name: process.env.RELEASE
|
||||||
|
},
|
||||||
|
// urlPrefix: '~/', // Adjust based on your deployment setup
|
||||||
|
// include: './dist', // Adjust based on your output directory
|
||||||
|
// ignore: ['node_modules', 'build'],
|
||||||
|
}),
|
||||||
new webpack.DefinePlugin({
|
new webpack.DefinePlugin({
|
||||||
'process.env.NODE_ENV': JSON.stringify('production')
|
'process.env.NODE_ENV': JSON.stringify('production')
|
||||||
}),
|
}),
|
||||||
new BundleAnalyzerPlugin({
|
new BundleAnalyzerPlugin({
|
||||||
'analyzerMode': 'static'
|
'analyzerMode': 'static'
|
||||||
}),
|
})
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
|
@@ -68,6 +68,7 @@
|
|||||||
"drupal/advancedqueue": "^1.1",
|
"drupal/advancedqueue": "^1.1",
|
||||||
"drupal/allowed_formats": "^3.0",
|
"drupal/allowed_formats": "^3.0",
|
||||||
"drupal/amswap": "^3.0",
|
"drupal/amswap": "^3.0",
|
||||||
|
"drupal/asset_cache_bust": "^1.0",
|
||||||
"drupal/audiofield": "^1.10",
|
"drupal/audiofield": "^1.10",
|
||||||
"drupal/auto_entitylabel": "^3.1",
|
"drupal/auto_entitylabel": "^3.1",
|
||||||
"drupal/better_messages": "^2.0@alpha",
|
"drupal/better_messages": "^2.0@alpha",
|
||||||
@@ -113,6 +114,7 @@
|
|||||||
"drupal/jsonapi_extras": "^3.21",
|
"drupal/jsonapi_extras": "^3.21",
|
||||||
"drupal/login_history": "^2.0",
|
"drupal/login_history": "^2.0",
|
||||||
"drupal/login_tracker": "^2.0",
|
"drupal/login_tracker": "^2.0",
|
||||||
|
"drupal/logout_token": "^1.0",
|
||||||
"drupal/mailjet": "^4.0",
|
"drupal/mailjet": "^4.0",
|
||||||
"drupal/maillog": "^1.1",
|
"drupal/maillog": "^1.1",
|
||||||
"drupal/masquerade": "^2.0",
|
"drupal/masquerade": "^2.0",
|
||||||
@@ -138,6 +140,7 @@
|
|||||||
"drupal/simplenews": "^4.0",
|
"drupal/simplenews": "^4.0",
|
||||||
"drupal/simplenews_mailjet_subscriptions": "^1.3",
|
"drupal/simplenews_mailjet_subscriptions": "^1.3",
|
||||||
"drupal/social_media_links": "^2.8",
|
"drupal/social_media_links": "^2.8",
|
||||||
|
"drupal/straw": "^2.0@beta",
|
||||||
"drupal/string_translation_ui": "^2.0",
|
"drupal/string_translation_ui": "^2.0",
|
||||||
"drupal/structure_sync": "^2.0",
|
"drupal/structure_sync": "^2.0",
|
||||||
"drupal/symfony_mailer": "^1",
|
"drupal/symfony_mailer": "^1",
|
||||||
@@ -236,7 +239,8 @@
|
|||||||
"migrate_drupal getsetting on null" : "https://www.drupal.org/files/issues/2019-02-13/migrate_drupal-getsetting_on_null.patch",
|
"migrate_drupal getsetting on null" : "https://www.drupal.org/files/issues/2019-02-13/migrate_drupal-getsetting_on_null.patch",
|
||||||
"ConfigImporter->checkOp() https://www.drupal.org/project/drupal/issues/3198715": "https://www.drupal.org/files/issues/2021-02-16/error-running-config-import-delete-on-null-3198715-3.patch",
|
"ConfigImporter->checkOp() https://www.drupal.org/project/drupal/issues/3198715": "https://www.drupal.org/files/issues/2021-02-16/error-running-config-import-delete-on-null-3198715-3.patch",
|
||||||
"Entity view/form mode formatter/widget settings have no translation UI 1 https://www.drupal.org/project/drupal/issues/2546212": "https://www.drupal.org/files/issues/2020-12-04/2546212-168-actions.patch",
|
"Entity view/form mode formatter/widget settings have no translation UI 1 https://www.drupal.org/project/drupal/issues/2546212": "https://www.drupal.org/files/issues/2020-12-04/2546212-168-actions.patch",
|
||||||
"Entity view/form mode formatter/widget settings have no translation UI 2 https://www.drupal.org/project/drupal/issues/2546212": "https://www.drupal.org/files/issues/2020-12-04/2546212-168.patch"
|
"Entity view/form mode formatter/widget settings have no translation UI 2 https://www.drupal.org/project/drupal/issues/2546212": "https://www.drupal.org/files/issues/2020-12-04/2546212-168.patch",
|
||||||
|
"Allow to validate Apache/Nginx configuration requirement for aggregation folder before enabling aggregation. https://www.drupal.org/project/drupal/issues/3384272":"https://www.drupal.org/files/issues/2024-08-22/4673.diff"
|
||||||
},
|
},
|
||||||
"drupal/email_registration": {
|
"drupal/email_registration": {
|
||||||
"allow email login through REST https://www.drupal.org/project/email_registration/issues/2856542": "https://www.drupal.org/files/issues/2021-06-11/2856542-13.patch"
|
"allow email login through REST https://www.drupal.org/project/email_registration/issues/2856542": "https://www.drupal.org/files/issues/2021-06-11/2856542-13.patch"
|
||||||
@@ -257,7 +261,8 @@
|
|||||||
},
|
},
|
||||||
"drupal/pwa": {
|
"drupal/pwa": {
|
||||||
"Manifest doesn't have a maskable icon https://www.drupal.org/project/pwa/issues/3165433": "https://www.drupal.org/files/issues/2024-03-10/manifest-doesnt-have-a-maskable-icon-error-3165433-20.patch",
|
"Manifest doesn't have a maskable icon https://www.drupal.org/project/pwa/issues/3165433": "https://www.drupal.org/files/issues/2024-03-10/manifest-doesnt-have-a-maskable-icon-error-3165433-20.patch",
|
||||||
"Undefined array key name https://www.drupal.org/project/pwa/issues/3422906": "https://www.drupal.org/files/issues/2024-02-21/pwa-3422906-3.patch"
|
"Undefined array key name https://www.drupal.org/project/pwa/issues/3422906": "https://www.drupal.org/files/issues/2024-02-21/pwa-3422906-3.patch",
|
||||||
|
"The module adds white space at the top of the olivero theme https://www.drupal.org/project/pwa/issues/3427753" : "https://www.drupal.org/files/issues/2024-04-03/pwa-pwa_extras-decode_entities.patch"
|
||||||
},
|
},
|
||||||
"drupal/toolbar_theme": {
|
"drupal/toolbar_theme": {
|
||||||
"Automated Drupal 9 compatibility fixes https://www.drupal.org/project/toolbar_themes/issues/3149099": "https://www.drupal.org/files/issues/2020-06-06/toolbar_themes.1.x-dev.rector.patch"
|
"Automated Drupal 9 compatibility fixes https://www.drupal.org/project/toolbar_themes/issues/3149099": "https://www.drupal.org/files/issues/2020-06-06/toolbar_themes.1.x-dev.rector.patch"
|
||||||
@@ -276,6 +281,12 @@
|
|||||||
},
|
},
|
||||||
"drupal/views_ef_fieldset": {
|
"drupal/views_ef_fieldset": {
|
||||||
"Exposed operators are not included in fieldsets https://www.drupal.org/project/views_ef_fieldset/issues/3173822": "https://git.drupalcode.org/project/views_ef_fieldset/-/merge_requests/1/diffs.patch"
|
"Exposed operators are not included in fieldsets https://www.drupal.org/project/views_ef_fieldset/issues/3173822": "https://git.drupalcode.org/project/views_ef_fieldset/-/merge_requests/1/diffs.patch"
|
||||||
|
},
|
||||||
|
"drupal/term_reference_tree": {
|
||||||
|
"Term Reference Tree: Re-implement Track List https://www.drupal.org/project/term_reference_tree/issues/3064280": "https://www.drupal.org/files/issues/2024-08-26/term_reference_tree-3064280_bring_back_tracklist-22.patch"
|
||||||
|
},
|
||||||
|
"drupal/advancedqueue": {
|
||||||
|
"Issue with configuration schema advancedqueue.backend.[id] https://www.drupal.org/project/advancedqueue/issues/3469869": "https://git.drupalcode.org/project/advancedqueue/-/commit/a8864851cdfa40c9e38a3f5f64885baf1937375e.patch"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"archived-patches": {
|
"archived-patches": {
|
||||||
@@ -298,9 +309,6 @@
|
|||||||
},
|
},
|
||||||
"drupal/mailjet": {
|
"drupal/mailjet": {
|
||||||
"https://www.drupal.org/project/mailjet/issues/3325412":"https://www.drupal.org/files/issues/2022-12-05/mailjet-list_instead_of_listid.patch"
|
"https://www.drupal.org/project/mailjet/issues/3325412":"https://www.drupal.org/files/issues/2022-12-05/mailjet-list_instead_of_listid.patch"
|
||||||
},
|
|
||||||
"drupal/term_reference_tree": {
|
|
||||||
"Term Reference Tree: Re-implement Track List https://www.drupal.org/project/term_reference_tree/issues/3064280": "https://www.drupal.org/files/issues/2022-02-07/3064280_bring_back_tracklist-16.patch"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"drupal-scaffold": {
|
"drupal-scaffold": {
|
||||||
|
1709
composer.lock
generated
1709
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -16,8 +16,6 @@ cloneable_entities:
|
|||||||
- commerce_payment
|
- commerce_payment
|
||||||
- commerce_payment_method
|
- commerce_payment_method
|
||||||
- commerce_currency
|
- commerce_currency
|
||||||
- commerce_pricelist_item
|
|
||||||
- commerce_pricelist
|
|
||||||
- commerce_product_variation
|
- commerce_product_variation
|
||||||
- commerce_product_attribute
|
- commerce_product_attribute
|
||||||
- commerce_product_variation_type
|
- commerce_product_variation_type
|
||||||
@@ -63,7 +61,7 @@ cloneable_entities:
|
|||||||
- language_content_settings
|
- language_content_settings
|
||||||
- configurable_language
|
- configurable_language
|
||||||
- linkit_profile
|
- linkit_profile
|
||||||
- mailjet_event
|
- event_entity
|
||||||
- message
|
- message
|
||||||
- message_template
|
- message_template
|
||||||
- node
|
- node
|
||||||
@@ -85,6 +83,7 @@ cloneable_entities:
|
|||||||
- solr_cache
|
- solr_cache
|
||||||
- solr_request_handler
|
- solr_request_handler
|
||||||
- simplenews_newsletter
|
- simplenews_newsletter
|
||||||
|
- simplenews_subscriber_history
|
||||||
- simplenews_subscriber
|
- simplenews_subscriber
|
||||||
- simplenews_mailjet_subscription
|
- simplenews_mailjet_subscription
|
||||||
- mailer_transport
|
- mailer_transport
|
||||||
@@ -116,4 +115,3 @@ cloneable_entities:
|
|||||||
- entity_view_display
|
- entity_view_display
|
||||||
- entity_form_display
|
- entity_form_display
|
||||||
- date_format
|
- date_format
|
||||||
- simplenews_subscriber_history
|
|
||||||
|
@@ -0,0 +1,7 @@
|
|||||||
|
adding:
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- google_analytics
|
||||||
|
permissions:
|
||||||
|
- 'opt-in or out of google analytics tracking'
|
||||||
|
removing: { }
|
1
config/prod/dblog.settings.yml
Normal file
1
config/prod/dblog.settings.yml
Normal file
@@ -0,0 +1 @@
|
|||||||
|
row_limit: 10000
|
17
config/prod/ultimate_cron.job.dblog_cron.yml
Normal file
17
config/prod/ultimate_cron.job.dblog_cron.yml
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
uuid: d9ee7697-3e37-489c-a8a1-e9901529a328
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- dblog
|
||||||
|
title: 'Remove expired log messages and flood control events'
|
||||||
|
id: dblog_cron
|
||||||
|
weight: 0
|
||||||
|
module: dblog
|
||||||
|
callback: dblog_cron
|
||||||
|
scheduler:
|
||||||
|
id: simple
|
||||||
|
launcher:
|
||||||
|
id: serial
|
||||||
|
logger:
|
||||||
|
id: database
|
@@ -1,26 +0,0 @@
|
|||||||
_core:
|
|
||||||
default_config_hash: Vi3b7DLLNw5X1UX9XG8mnU-ysvyNgdyvAasxV9yck3I
|
|
||||||
css:
|
|
||||||
brotli: true
|
|
||||||
combine_media: false
|
|
||||||
fix_type: true
|
|
||||||
preserve_external: false
|
|
||||||
dns_prefetch: false
|
|
||||||
path:
|
|
||||||
convert:
|
|
||||||
absolute_to_protocol_relative: true
|
|
||||||
absolute: false
|
|
||||||
force_https: false
|
|
||||||
cache_level: 2
|
|
||||||
cron_frequency: 86400
|
|
||||||
enabled: true
|
|
||||||
global_counter: 0
|
|
||||||
immutable: true
|
|
||||||
js:
|
|
||||||
brotli: true
|
|
||||||
fix_type: true
|
|
||||||
preserve_external: false
|
|
||||||
skip_enabled_preprocess_check: false
|
|
||||||
show_bypass_cookie_message: true
|
|
||||||
symlinks: false
|
|
||||||
symlinksifownermatch: false
|
|
@@ -6,6 +6,7 @@ dependencies:
|
|||||||
- commerce_order.commerce_order_type.recurring
|
- commerce_order.commerce_order_type.recurring
|
||||||
- field.field.commerce_order.recurring.billing_period
|
- field.field.commerce_order.recurring.billing_period
|
||||||
- field.field.commerce_order.recurring.billing_schedule
|
- field.field.commerce_order.recurring.billing_schedule
|
||||||
|
- field.field.commerce_order.recurring.commerce_recurring_queued
|
||||||
- field.field.commerce_order.recurring.field_mailjet_campaign_id
|
- field.field.commerce_order.recurring.field_mailjet_campaign_id
|
||||||
module:
|
module:
|
||||||
- commerce_order
|
- commerce_order
|
||||||
@@ -64,6 +65,8 @@ hidden:
|
|||||||
billing_period: true
|
billing_period: true
|
||||||
billing_schedule: true
|
billing_schedule: true
|
||||||
cart: true
|
cart: true
|
||||||
|
commerce_recurring_queued: true
|
||||||
|
customer_comments: true
|
||||||
ip_address: true
|
ip_address: true
|
||||||
mail: true
|
mail: true
|
||||||
order_number: true
|
order_number: true
|
||||||
|
@@ -7,7 +7,6 @@ dependencies:
|
|||||||
- field.field.node.article.field_date
|
- field.field.node.article.field_date
|
||||||
- field.field.node.article.field_linked_materials
|
- field.field.node.article.field_linked_materials
|
||||||
- field.field.node.article.field_memo
|
- field.field.node.article.field_memo
|
||||||
- field.field.node.article.field_migration
|
|
||||||
- field.field.node.article.field_showroom
|
- field.field.node.article.field_showroom
|
||||||
- field.field.node.article.field_source
|
- field.field.node.article.field_source
|
||||||
- field.field.node.article.field_tags
|
- field.field.node.article.field_tags
|
||||||
@@ -168,12 +167,6 @@ content:
|
|||||||
rows: 5
|
rows: 5
|
||||||
placeholder: ''
|
placeholder: ''
|
||||||
third_party_settings: { }
|
third_party_settings: { }
|
||||||
field_migration:
|
|
||||||
type: workflow_default
|
|
||||||
weight: 6
|
|
||||||
region: content
|
|
||||||
settings: { }
|
|
||||||
third_party_settings: { }
|
|
||||||
field_showroom:
|
field_showroom:
|
||||||
type: entity_reference_autocomplete
|
type: entity_reference_autocomplete
|
||||||
weight: 21
|
weight: 21
|
||||||
|
@@ -15,7 +15,6 @@ dependencies:
|
|||||||
- field.field.node.materiau.field_manufacturer
|
- field.field.node.materiau.field_manufacturer
|
||||||
- field.field.node.materiau.field_materiau_images
|
- field.field.node.materiau.field_materiau_images
|
||||||
- field.field.node.materiau.field_memo
|
- field.field.node.materiau.field_memo
|
||||||
- field.field.node.materiau.field_migration
|
|
||||||
- field.field.node.materiau.field_reference
|
- field.field.node.materiau.field_reference
|
||||||
- field.field.node.materiau.field_samples
|
- field.field.node.materiau.field_samples
|
||||||
- field.field.node.materiau.field_short_description
|
- field.field.node.materiau.field_short_description
|
||||||
@@ -35,7 +34,6 @@ dependencies:
|
|||||||
- term_reference_tree
|
- term_reference_tree
|
||||||
- text
|
- text
|
||||||
- video_embed_field
|
- video_embed_field
|
||||||
- workflow
|
|
||||||
third_party_settings:
|
third_party_settings:
|
||||||
field_group:
|
field_group:
|
||||||
group_htabs:
|
group_htabs:
|
||||||
@@ -168,7 +166,6 @@ third_party_settings:
|
|||||||
- translation
|
- translation
|
||||||
- field_memo
|
- field_memo
|
||||||
- field_workflow
|
- field_workflow
|
||||||
- field_migration
|
|
||||||
- created
|
- created
|
||||||
label: Internal
|
label: Internal
|
||||||
region: content
|
region: content
|
||||||
@@ -278,12 +275,6 @@ content:
|
|||||||
rows: 5
|
rows: 5
|
||||||
placeholder: ''
|
placeholder: ''
|
||||||
third_party_settings: { }
|
third_party_settings: { }
|
||||||
field_migration:
|
|
||||||
type: workflow_default
|
|
||||||
weight: 16
|
|
||||||
region: content
|
|
||||||
settings: { }
|
|
||||||
third_party_settings: { }
|
|
||||||
field_reference:
|
field_reference:
|
||||||
type: computed_string_widget
|
type: computed_string_widget
|
||||||
weight: 4
|
weight: 4
|
||||||
@@ -306,7 +297,7 @@ content:
|
|||||||
third_party_settings: { }
|
third_party_settings: { }
|
||||||
field_tags:
|
field_tags:
|
||||||
type: entity_reference_autocomplete
|
type: entity_reference_autocomplete
|
||||||
weight: 12
|
weight: 36
|
||||||
region: content
|
region: content
|
||||||
settings:
|
settings:
|
||||||
match_operator: CONTAINS
|
match_operator: CONTAINS
|
||||||
@@ -316,13 +307,14 @@ content:
|
|||||||
third_party_settings: { }
|
third_party_settings: { }
|
||||||
field_thesaurus:
|
field_thesaurus:
|
||||||
type: term_reference_tree
|
type: term_reference_tree
|
||||||
weight: 11
|
weight: 35
|
||||||
region: content
|
region: content
|
||||||
settings:
|
settings:
|
||||||
start_minimized: true
|
start_minimized: false
|
||||||
leaves_only: false
|
leaves_only: false
|
||||||
select_parents: false
|
select_parents: false
|
||||||
cascading_selection: 0
|
cascading_selection: 0
|
||||||
|
track_list: true
|
||||||
max_depth: 0
|
max_depth: 0
|
||||||
third_party_settings: { }
|
third_party_settings: { }
|
||||||
field_video:
|
field_video:
|
||||||
@@ -332,7 +324,7 @@ content:
|
|||||||
settings: { }
|
settings: { }
|
||||||
third_party_settings: { }
|
third_party_settings: { }
|
||||||
field_workflow:
|
field_workflow:
|
||||||
type: workflow_default
|
type: options_buttons
|
||||||
weight: 15
|
weight: 15
|
||||||
region: content
|
region: content
|
||||||
settings: { }
|
settings: { }
|
||||||
|
@@ -6,7 +6,6 @@ dependencies:
|
|||||||
- field.field.taxonomy_term.company.field_attachments
|
- field.field.taxonomy_term.company.field_attachments
|
||||||
- field.field.taxonomy_term.company.field_infos_from_company
|
- field.field.taxonomy_term.company.field_infos_from_company
|
||||||
- field.field.taxonomy_term.company.field_memo
|
- field.field.taxonomy_term.company.field_memo
|
||||||
- field.field.taxonomy_term.company.field_migration
|
|
||||||
- field.field.taxonomy_term.company.field_note
|
- field.field.taxonomy_term.company.field_note
|
||||||
- field.field.taxonomy_term.company.field_public_address
|
- field.field.taxonomy_term.company.field_public_address
|
||||||
- field.field.taxonomy_term.company.field_public_email
|
- field.field.taxonomy_term.company.field_public_email
|
||||||
@@ -140,12 +139,6 @@ content:
|
|||||||
rows: 5
|
rows: 5
|
||||||
placeholder: ''
|
placeholder: ''
|
||||||
third_party_settings: { }
|
third_party_settings: { }
|
||||||
field_migration:
|
|
||||||
type: workflow_default
|
|
||||||
weight: 5
|
|
||||||
region: content
|
|
||||||
settings: { }
|
|
||||||
third_party_settings: { }
|
|
||||||
field_note:
|
field_note:
|
||||||
type: options_select
|
type: options_select
|
||||||
weight: 6
|
weight: 6
|
||||||
|
@@ -4,7 +4,6 @@ status: true
|
|||||||
dependencies:
|
dependencies:
|
||||||
config:
|
config:
|
||||||
- field.field.taxonomy_term.showroom.field_memo
|
- field.field.taxonomy_term.showroom.field_memo
|
||||||
- field.field.taxonomy_term.showroom.field_migration
|
|
||||||
- field.field.taxonomy_term.showroom.field_public_address
|
- field.field.taxonomy_term.showroom.field_public_address
|
||||||
- field.field.taxonomy_term.showroom.field_public_email
|
- field.field.taxonomy_term.showroom.field_public_email
|
||||||
- field.field.taxonomy_term.showroom.field_public_phone
|
- field.field.taxonomy_term.showroom.field_public_phone
|
||||||
@@ -122,12 +121,6 @@ content:
|
|||||||
rows: 5
|
rows: 5
|
||||||
placeholder: ''
|
placeholder: ''
|
||||||
third_party_settings: { }
|
third_party_settings: { }
|
||||||
field_migration:
|
|
||||||
type: workflow_default
|
|
||||||
weight: 7
|
|
||||||
region: content
|
|
||||||
settings: { }
|
|
||||||
third_party_settings: { }
|
|
||||||
field_public_address:
|
field_public_address:
|
||||||
type: address_default
|
type: address_default
|
||||||
weight: 5
|
weight: 5
|
||||||
|
@@ -0,0 +1,46 @@
|
|||||||
|
uuid: bdc1dc21-a187-46a0-87f6-5ff2fe102e12
|
||||||
|
langcode: fr
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- workflow.workflow.workflow
|
||||||
|
module:
|
||||||
|
- autocomplete_deluxe
|
||||||
|
id: workflow_transition.workflow.default
|
||||||
|
targetEntityType: workflow_transition
|
||||||
|
bundle: workflow
|
||||||
|
mode: default
|
||||||
|
content:
|
||||||
|
comment:
|
||||||
|
type: string_textarea
|
||||||
|
weight: 2
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
rows: 5
|
||||||
|
placeholder: ''
|
||||||
|
third_party_settings: { }
|
||||||
|
timestamp:
|
||||||
|
type: datetime_timestamp
|
||||||
|
weight: 1
|
||||||
|
region: content
|
||||||
|
settings: { }
|
||||||
|
third_party_settings: { }
|
||||||
|
to_sid:
|
||||||
|
type: autocomplete_deluxe
|
||||||
|
weight: 0
|
||||||
|
region: content
|
||||||
|
settings:
|
||||||
|
match_operator: CONTAINS
|
||||||
|
autocomplete_route_name: autocomplete_deluxe.autocomplete
|
||||||
|
size: 60
|
||||||
|
selection_handler: default
|
||||||
|
match_limit: 10
|
||||||
|
min_length: 0
|
||||||
|
delimiter: ''
|
||||||
|
not_found_message_allow: false
|
||||||
|
not_found_message: "The term '@term' will be added"
|
||||||
|
new_terms: false
|
||||||
|
no_empty_message: 'No terms could be found. Please type in order to add a new term.'
|
||||||
|
third_party_settings: { }
|
||||||
|
hidden:
|
||||||
|
langcode: true
|
@@ -65,6 +65,14 @@ content:
|
|||||||
third_party_settings: { }
|
third_party_settings: { }
|
||||||
weight: 2
|
weight: 2
|
||||||
region: content
|
region: content
|
||||||
|
coupons:
|
||||||
|
label: above
|
||||||
|
type: entity_reference_label
|
||||||
|
settings:
|
||||||
|
link: true
|
||||||
|
region: content
|
||||||
|
weight: 10
|
||||||
|
third_party_settings: { }
|
||||||
ip_address:
|
ip_address:
|
||||||
type: string
|
type: string
|
||||||
label: inline
|
label: inline
|
||||||
|
@@ -46,6 +46,14 @@ content:
|
|||||||
third_party_settings: { }
|
third_party_settings: { }
|
||||||
weight: 2
|
weight: 2
|
||||||
region: content
|
region: content
|
||||||
|
coupons:
|
||||||
|
label: above
|
||||||
|
type: entity_reference_label
|
||||||
|
settings:
|
||||||
|
link: true
|
||||||
|
region: content
|
||||||
|
weight: 7
|
||||||
|
third_party_settings: { }
|
||||||
mail:
|
mail:
|
||||||
type: basic_string
|
type: basic_string
|
||||||
label: inline
|
label: inline
|
||||||
|
@@ -45,6 +45,14 @@ content:
|
|||||||
third_party_settings: { }
|
third_party_settings: { }
|
||||||
weight: 3
|
weight: 3
|
||||||
region: content
|
region: content
|
||||||
|
coupons:
|
||||||
|
label: above
|
||||||
|
type: entity_reference_label
|
||||||
|
settings:
|
||||||
|
link: true
|
||||||
|
region: content
|
||||||
|
weight: 9
|
||||||
|
third_party_settings: { }
|
||||||
order_items:
|
order_items:
|
||||||
type: commerce_order_item_table
|
type: commerce_order_item_table
|
||||||
label: above
|
label: above
|
||||||
|
@@ -55,6 +55,14 @@ content:
|
|||||||
third_party_settings: { }
|
third_party_settings: { }
|
||||||
weight: 5
|
weight: 5
|
||||||
region: content
|
region: content
|
||||||
|
coupons:
|
||||||
|
label: above
|
||||||
|
type: entity_reference_label
|
||||||
|
settings:
|
||||||
|
link: true
|
||||||
|
region: content
|
||||||
|
weight: 15
|
||||||
|
third_party_settings: { }
|
||||||
field_mailjet_campaign_id:
|
field_mailjet_campaign_id:
|
||||||
type: number_integer
|
type: number_integer
|
||||||
label: above
|
label: above
|
||||||
|
@@ -6,6 +6,7 @@ dependencies:
|
|||||||
- commerce_order.commerce_order_type.recurring
|
- commerce_order.commerce_order_type.recurring
|
||||||
- field.field.commerce_order.recurring.billing_period
|
- field.field.commerce_order.recurring.billing_period
|
||||||
- field.field.commerce_order.recurring.billing_schedule
|
- field.field.commerce_order.recurring.billing_schedule
|
||||||
|
- field.field.commerce_order.recurring.commerce_recurring_queued
|
||||||
- field.field.commerce_order.recurring.field_mailjet_campaign_id
|
- field.field.commerce_order.recurring.field_mailjet_campaign_id
|
||||||
module:
|
module:
|
||||||
- commerce_order
|
- commerce_order
|
||||||
@@ -74,6 +75,22 @@ content:
|
|||||||
third_party_settings: { }
|
third_party_settings: { }
|
||||||
weight: 3
|
weight: 3
|
||||||
region: content
|
region: content
|
||||||
|
coupons:
|
||||||
|
type: entity_reference_label
|
||||||
|
label: above
|
||||||
|
settings:
|
||||||
|
link: true
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 12
|
||||||
|
region: content
|
||||||
|
customer_comments:
|
||||||
|
type: string
|
||||||
|
label: above
|
||||||
|
settings:
|
||||||
|
link_to_entity: false
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 13
|
||||||
|
region: content
|
||||||
field_mailjet_campaign_id:
|
field_mailjet_campaign_id:
|
||||||
type: number_integer
|
type: number_integer
|
||||||
label: above
|
label: above
|
||||||
@@ -148,6 +165,7 @@ content:
|
|||||||
hidden:
|
hidden:
|
||||||
billing_profile: true
|
billing_profile: true
|
||||||
billing_schedule: true
|
billing_schedule: true
|
||||||
|
commerce_recurring_queued: true
|
||||||
order_number: true
|
order_number: true
|
||||||
search_api_excerpt: true
|
search_api_excerpt: true
|
||||||
store_id: true
|
store_id: true
|
||||||
|
@@ -7,6 +7,7 @@ dependencies:
|
|||||||
- core.entity_view_mode.commerce_order.user
|
- core.entity_view_mode.commerce_order.user
|
||||||
- field.field.commerce_order.recurring.billing_period
|
- field.field.commerce_order.recurring.billing_period
|
||||||
- field.field.commerce_order.recurring.billing_schedule
|
- field.field.commerce_order.recurring.billing_schedule
|
||||||
|
- field.field.commerce_order.recurring.commerce_recurring_queued
|
||||||
- field.field.commerce_order.recurring.field_mailjet_campaign_id
|
- field.field.commerce_order.recurring.field_mailjet_campaign_id
|
||||||
module:
|
module:
|
||||||
- commerce_order
|
- commerce_order
|
||||||
@@ -74,6 +75,22 @@ content:
|
|||||||
third_party_settings: { }
|
third_party_settings: { }
|
||||||
weight: 4
|
weight: 4
|
||||||
region: content
|
region: content
|
||||||
|
coupons:
|
||||||
|
type: entity_reference_label
|
||||||
|
label: above
|
||||||
|
settings:
|
||||||
|
link: true
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 13
|
||||||
|
region: content
|
||||||
|
customer_comments:
|
||||||
|
type: string
|
||||||
|
label: above
|
||||||
|
settings:
|
||||||
|
link_to_entity: false
|
||||||
|
third_party_settings: { }
|
||||||
|
weight: 14
|
||||||
|
region: content
|
||||||
mail:
|
mail:
|
||||||
type: email_mailto
|
type: email_mailto
|
||||||
label: inline
|
label: inline
|
||||||
@@ -147,6 +164,7 @@ content:
|
|||||||
hidden:
|
hidden:
|
||||||
balance: true
|
balance: true
|
||||||
billing_schedule: true
|
billing_schedule: true
|
||||||
|
commerce_recurring_queued: true
|
||||||
field_mailjet_campaign_id: true
|
field_mailjet_campaign_id: true
|
||||||
ip_address: true
|
ip_address: true
|
||||||
search_api_excerpt: true
|
search_api_excerpt: true
|
||||||
|
@@ -8,7 +8,6 @@ dependencies:
|
|||||||
- field.field.node.article.field_date
|
- field.field.node.article.field_date
|
||||||
- field.field.node.article.field_linked_materials
|
- field.field.node.article.field_linked_materials
|
||||||
- field.field.node.article.field_memo
|
- field.field.node.article.field_memo
|
||||||
- field.field.node.article.field_migration
|
|
||||||
- field.field.node.article.field_showroom
|
- field.field.node.article.field_showroom
|
||||||
- field.field.node.article.field_source
|
- field.field.node.article.field_source
|
||||||
- field.field.node.article.field_tags
|
- field.field.node.article.field_tags
|
||||||
@@ -70,7 +69,6 @@ hidden:
|
|||||||
field_date: true
|
field_date: true
|
||||||
field_linked_materials: true
|
field_linked_materials: true
|
||||||
field_memo: true
|
field_memo: true
|
||||||
field_migration: true
|
|
||||||
field_showroom: true
|
field_showroom: true
|
||||||
field_source: true
|
field_source: true
|
||||||
field_tags: true
|
field_tags: true
|
||||||
|
@@ -7,7 +7,6 @@ dependencies:
|
|||||||
- field.field.node.article.field_date
|
- field.field.node.article.field_date
|
||||||
- field.field.node.article.field_linked_materials
|
- field.field.node.article.field_linked_materials
|
||||||
- field.field.node.article.field_memo
|
- field.field.node.article.field_memo
|
||||||
- field.field.node.article.field_migration
|
|
||||||
- field.field.node.article.field_showroom
|
- field.field.node.article.field_showroom
|
||||||
- field.field.node.article.field_source
|
- field.field.node.article.field_source
|
||||||
- field.field.node.article.field_tags
|
- field.field.node.article.field_tags
|
||||||
@@ -32,8 +31,8 @@ content:
|
|||||||
settings:
|
settings:
|
||||||
timezone_override: ''
|
timezone_override: ''
|
||||||
format_type: medium
|
format_type: medium
|
||||||
separator: '-'
|
|
||||||
from_to: both
|
from_to: both
|
||||||
|
separator: '-'
|
||||||
third_party_settings: { }
|
third_party_settings: { }
|
||||||
weight: 3
|
weight: 3
|
||||||
region: content
|
region: content
|
||||||
@@ -105,7 +104,6 @@ hidden:
|
|||||||
body: true
|
body: true
|
||||||
field_linked_materials: true
|
field_linked_materials: true
|
||||||
field_memo: true
|
field_memo: true
|
||||||
field_migration: true
|
|
||||||
field_showroom: true
|
field_showroom: true
|
||||||
field_source: true
|
field_source: true
|
||||||
field_tags: true
|
field_tags: true
|
||||||
|
@@ -8,7 +8,6 @@ dependencies:
|
|||||||
- field.field.node.article.field_date
|
- field.field.node.article.field_date
|
||||||
- field.field.node.article.field_linked_materials
|
- field.field.node.article.field_linked_materials
|
||||||
- field.field.node.article.field_memo
|
- field.field.node.article.field_memo
|
||||||
- field.field.node.article.field_migration
|
|
||||||
- field.field.node.article.field_showroom
|
- field.field.node.article.field_showroom
|
||||||
- field.field.node.article.field_source
|
- field.field.node.article.field_source
|
||||||
- field.field.node.article.field_tags
|
- field.field.node.article.field_tags
|
||||||
@@ -58,7 +57,6 @@ hidden:
|
|||||||
field_date: true
|
field_date: true
|
||||||
field_linked_materials: true
|
field_linked_materials: true
|
||||||
field_memo: true
|
field_memo: true
|
||||||
field_migration: true
|
|
||||||
field_showroom: true
|
field_showroom: true
|
||||||
field_source: true
|
field_source: true
|
||||||
field_tags: true
|
field_tags: true
|
||||||
|
@@ -16,7 +16,6 @@ dependencies:
|
|||||||
- field.field.node.materiau.field_manufacturer
|
- field.field.node.materiau.field_manufacturer
|
||||||
- field.field.node.materiau.field_materiau_images
|
- field.field.node.materiau.field_materiau_images
|
||||||
- field.field.node.materiau.field_memo
|
- field.field.node.materiau.field_memo
|
||||||
- field.field.node.materiau.field_migration
|
|
||||||
- field.field.node.materiau.field_reference
|
- field.field.node.materiau.field_reference
|
||||||
- field.field.node.materiau.field_samples
|
- field.field.node.materiau.field_samples
|
||||||
- field.field.node.materiau.field_short_description
|
- field.field.node.materiau.field_short_description
|
||||||
@@ -130,13 +129,6 @@ content:
|
|||||||
third_party_settings: { }
|
third_party_settings: { }
|
||||||
weight: 112
|
weight: 112
|
||||||
region: content
|
region: content
|
||||||
field_migration:
|
|
||||||
type: list_default
|
|
||||||
label: above
|
|
||||||
settings: { }
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 117
|
|
||||||
region: content
|
|
||||||
field_reference:
|
field_reference:
|
||||||
type: computed_string
|
type: computed_string
|
||||||
label: above
|
label: above
|
||||||
|
@@ -16,7 +16,6 @@ dependencies:
|
|||||||
- field.field.node.materiau.field_manufacturer
|
- field.field.node.materiau.field_manufacturer
|
||||||
- field.field.node.materiau.field_materiau_images
|
- field.field.node.materiau.field_materiau_images
|
||||||
- field.field.node.materiau.field_memo
|
- field.field.node.materiau.field_memo
|
||||||
- field.field.node.materiau.field_migration
|
|
||||||
- field.field.node.materiau.field_reference
|
- field.field.node.materiau.field_reference
|
||||||
- field.field.node.materiau.field_samples
|
- field.field.node.materiau.field_samples
|
||||||
- field.field.node.materiau.field_short_description
|
- field.field.node.materiau.field_short_description
|
||||||
@@ -130,13 +129,6 @@ content:
|
|||||||
third_party_settings: { }
|
third_party_settings: { }
|
||||||
weight: 112
|
weight: 112
|
||||||
region: content
|
region: content
|
||||||
field_migration:
|
|
||||||
type: list_default
|
|
||||||
label: above
|
|
||||||
settings: { }
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 117
|
|
||||||
region: content
|
|
||||||
field_reference:
|
field_reference:
|
||||||
type: computed_string
|
type: computed_string
|
||||||
label: above
|
label: above
|
||||||
|
@@ -16,7 +16,6 @@ dependencies:
|
|||||||
- field.field.node.materiau.field_manufacturer
|
- field.field.node.materiau.field_manufacturer
|
||||||
- field.field.node.materiau.field_materiau_images
|
- field.field.node.materiau.field_materiau_images
|
||||||
- field.field.node.materiau.field_memo
|
- field.field.node.materiau.field_memo
|
||||||
- field.field.node.materiau.field_migration
|
|
||||||
- field.field.node.materiau.field_reference
|
- field.field.node.materiau.field_reference
|
||||||
- field.field.node.materiau.field_samples
|
- field.field.node.materiau.field_samples
|
||||||
- field.field.node.materiau.field_short_description
|
- field.field.node.materiau.field_short_description
|
||||||
@@ -85,7 +84,6 @@ hidden:
|
|||||||
field_localisation_old: true
|
field_localisation_old: true
|
||||||
field_manufacturer: true
|
field_manufacturer: true
|
||||||
field_memo: true
|
field_memo: true
|
||||||
field_migration: true
|
|
||||||
field_reference: true
|
field_reference: true
|
||||||
field_samples: true
|
field_samples: true
|
||||||
field_tags: true
|
field_tags: true
|
||||||
|
@@ -16,7 +16,6 @@ dependencies:
|
|||||||
- field.field.node.materiau.field_manufacturer
|
- field.field.node.materiau.field_manufacturer
|
||||||
- field.field.node.materiau.field_materiau_images
|
- field.field.node.materiau.field_materiau_images
|
||||||
- field.field.node.materiau.field_memo
|
- field.field.node.materiau.field_memo
|
||||||
- field.field.node.materiau.field_migration
|
|
||||||
- field.field.node.materiau.field_reference
|
- field.field.node.materiau.field_reference
|
||||||
- field.field.node.materiau.field_samples
|
- field.field.node.materiau.field_samples
|
||||||
- field.field.node.materiau.field_short_description
|
- field.field.node.materiau.field_short_description
|
||||||
@@ -80,7 +79,6 @@ hidden:
|
|||||||
field_localisation_old: true
|
field_localisation_old: true
|
||||||
field_manufacturer: true
|
field_manufacturer: true
|
||||||
field_memo: true
|
field_memo: true
|
||||||
field_migration: true
|
|
||||||
field_reference: true
|
field_reference: true
|
||||||
field_samples: true
|
field_samples: true
|
||||||
field_tags: true
|
field_tags: true
|
||||||
|
@@ -16,7 +16,6 @@ dependencies:
|
|||||||
- field.field.node.materiau.field_manufacturer
|
- field.field.node.materiau.field_manufacturer
|
||||||
- field.field.node.materiau.field_materiau_images
|
- field.field.node.materiau.field_materiau_images
|
||||||
- field.field.node.materiau.field_memo
|
- field.field.node.materiau.field_memo
|
||||||
- field.field.node.materiau.field_migration
|
|
||||||
- field.field.node.materiau.field_reference
|
- field.field.node.materiau.field_reference
|
||||||
- field.field.node.materiau.field_samples
|
- field.field.node.materiau.field_samples
|
||||||
- field.field.node.materiau.field_short_description
|
- field.field.node.materiau.field_short_description
|
||||||
@@ -80,7 +79,6 @@ hidden:
|
|||||||
field_localisation_old: true
|
field_localisation_old: true
|
||||||
field_manufacturer: true
|
field_manufacturer: true
|
||||||
field_memo: true
|
field_memo: true
|
||||||
field_migration: true
|
|
||||||
field_reference: true
|
field_reference: true
|
||||||
field_samples: true
|
field_samples: true
|
||||||
field_tags: true
|
field_tags: true
|
||||||
|
@@ -15,7 +15,6 @@ dependencies:
|
|||||||
- field.field.node.materiau.field_manufacturer
|
- field.field.node.materiau.field_manufacturer
|
||||||
- field.field.node.materiau.field_materiau_images
|
- field.field.node.materiau.field_materiau_images
|
||||||
- field.field.node.materiau.field_memo
|
- field.field.node.materiau.field_memo
|
||||||
- field.field.node.materiau.field_migration
|
|
||||||
- field.field.node.materiau.field_reference
|
- field.field.node.materiau.field_reference
|
||||||
- field.field.node.materiau.field_samples
|
- field.field.node.materiau.field_samples
|
||||||
- field.field.node.materiau.field_short_description
|
- field.field.node.materiau.field_short_description
|
||||||
@@ -162,7 +161,6 @@ hidden:
|
|||||||
field_index: true
|
field_index: true
|
||||||
field_localisation_old: true
|
field_localisation_old: true
|
||||||
field_memo: true
|
field_memo: true
|
||||||
field_migration: true
|
|
||||||
field_short_description: true
|
field_short_description: true
|
||||||
field_tags: true
|
field_tags: true
|
||||||
field_thesaurus: true
|
field_thesaurus: true
|
||||||
|
@@ -16,7 +16,6 @@ dependencies:
|
|||||||
- field.field.node.materiau.field_manufacturer
|
- field.field.node.materiau.field_manufacturer
|
||||||
- field.field.node.materiau.field_materiau_images
|
- field.field.node.materiau.field_materiau_images
|
||||||
- field.field.node.materiau.field_memo
|
- field.field.node.materiau.field_memo
|
||||||
- field.field.node.materiau.field_migration
|
|
||||||
- field.field.node.materiau.field_reference
|
- field.field.node.materiau.field_reference
|
||||||
- field.field.node.materiau.field_samples
|
- field.field.node.materiau.field_samples
|
||||||
- field.field.node.materiau.field_short_description
|
- field.field.node.materiau.field_short_description
|
||||||
@@ -135,7 +134,6 @@ hidden:
|
|||||||
field_linked_materials: true
|
field_linked_materials: true
|
||||||
field_localisation_old: true
|
field_localisation_old: true
|
||||||
field_memo: true
|
field_memo: true
|
||||||
field_migration: true
|
|
||||||
field_tags: true
|
field_tags: true
|
||||||
field_thesaurus: true
|
field_thesaurus: true
|
||||||
field_video: true
|
field_video: true
|
||||||
|
@@ -16,7 +16,6 @@ dependencies:
|
|||||||
- field.field.node.materiau.field_manufacturer
|
- field.field.node.materiau.field_manufacturer
|
||||||
- field.field.node.materiau.field_materiau_images
|
- field.field.node.materiau.field_materiau_images
|
||||||
- field.field.node.materiau.field_memo
|
- field.field.node.materiau.field_memo
|
||||||
- field.field.node.materiau.field_migration
|
|
||||||
- field.field.node.materiau.field_reference
|
- field.field.node.materiau.field_reference
|
||||||
- field.field.node.materiau.field_samples
|
- field.field.node.materiau.field_samples
|
||||||
- field.field.node.materiau.field_short_description
|
- field.field.node.materiau.field_short_description
|
||||||
@@ -75,7 +74,6 @@ hidden:
|
|||||||
field_localisation_old: true
|
field_localisation_old: true
|
||||||
field_manufacturer: true
|
field_manufacturer: true
|
||||||
field_memo: true
|
field_memo: true
|
||||||
field_migration: true
|
|
||||||
field_reference: true
|
field_reference: true
|
||||||
field_samples: true
|
field_samples: true
|
||||||
field_tags: true
|
field_tags: true
|
||||||
|
@@ -6,7 +6,6 @@ dependencies:
|
|||||||
- field.field.taxonomy_term.company.field_attachments
|
- field.field.taxonomy_term.company.field_attachments
|
||||||
- field.field.taxonomy_term.company.field_infos_from_company
|
- field.field.taxonomy_term.company.field_infos_from_company
|
||||||
- field.field.taxonomy_term.company.field_memo
|
- field.field.taxonomy_term.company.field_memo
|
||||||
- field.field.taxonomy_term.company.field_migration
|
|
||||||
- field.field.taxonomy_term.company.field_note
|
- field.field.taxonomy_term.company.field_note
|
||||||
- field.field.taxonomy_term.company.field_public_address
|
- field.field.taxonomy_term.company.field_public_address
|
||||||
- field.field.taxonomy_term.company.field_public_email
|
- field.field.taxonomy_term.company.field_public_email
|
||||||
@@ -55,13 +54,6 @@ content:
|
|||||||
third_party_settings: { }
|
third_party_settings: { }
|
||||||
weight: 9
|
weight: 9
|
||||||
region: content
|
region: content
|
||||||
field_migration:
|
|
||||||
type: list_default
|
|
||||||
label: above
|
|
||||||
settings: { }
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 12
|
|
||||||
region: content
|
|
||||||
field_note:
|
field_note:
|
||||||
type: list_default
|
type: list_default
|
||||||
label: above
|
label: above
|
||||||
@@ -115,3 +107,4 @@ content:
|
|||||||
hidden:
|
hidden:
|
||||||
langcode: true
|
langcode: true
|
||||||
search_api_excerpt: true
|
search_api_excerpt: true
|
||||||
|
synonyms: true
|
||||||
|
@@ -7,7 +7,6 @@ dependencies:
|
|||||||
- field.field.taxonomy_term.company.field_attachments
|
- field.field.taxonomy_term.company.field_attachments
|
||||||
- field.field.taxonomy_term.company.field_infos_from_company
|
- field.field.taxonomy_term.company.field_infos_from_company
|
||||||
- field.field.taxonomy_term.company.field_memo
|
- field.field.taxonomy_term.company.field_memo
|
||||||
- field.field.taxonomy_term.company.field_migration
|
|
||||||
- field.field.taxonomy_term.company.field_note
|
- field.field.taxonomy_term.company.field_note
|
||||||
- field.field.taxonomy_term.company.field_public_address
|
- field.field.taxonomy_term.company.field_public_address
|
||||||
- field.field.taxonomy_term.company.field_public_email
|
- field.field.taxonomy_term.company.field_public_email
|
||||||
@@ -56,13 +55,6 @@ content:
|
|||||||
third_party_settings: { }
|
third_party_settings: { }
|
||||||
weight: 9
|
weight: 9
|
||||||
region: content
|
region: content
|
||||||
field_migration:
|
|
||||||
type: list_default
|
|
||||||
label: above
|
|
||||||
settings: { }
|
|
||||||
third_party_settings: { }
|
|
||||||
weight: 12
|
|
||||||
region: content
|
|
||||||
field_note:
|
field_note:
|
||||||
type: list_default
|
type: list_default
|
||||||
label: above
|
label: above
|
||||||
@@ -116,3 +108,4 @@ content:
|
|||||||
hidden:
|
hidden:
|
||||||
langcode: true
|
langcode: true
|
||||||
search_api_excerpt: true
|
search_api_excerpt: true
|
||||||
|
synonyms: true
|
||||||
|
@@ -7,7 +7,6 @@ dependencies:
|
|||||||
- field.field.taxonomy_term.company.field_attachments
|
- field.field.taxonomy_term.company.field_attachments
|
||||||
- field.field.taxonomy_term.company.field_infos_from_company
|
- field.field.taxonomy_term.company.field_infos_from_company
|
||||||
- field.field.taxonomy_term.company.field_memo
|
- field.field.taxonomy_term.company.field_memo
|
||||||
- field.field.taxonomy_term.company.field_migration
|
|
||||||
- field.field.taxonomy_term.company.field_note
|
- field.field.taxonomy_term.company.field_note
|
||||||
- field.field.taxonomy_term.company.field_public_address
|
- field.field.taxonomy_term.company.field_public_address
|
||||||
- field.field.taxonomy_term.company.field_public_email
|
- field.field.taxonomy_term.company.field_public_email
|
||||||
@@ -54,9 +53,9 @@ hidden:
|
|||||||
field_attachments: true
|
field_attachments: true
|
||||||
field_infos_from_company: true
|
field_infos_from_company: true
|
||||||
field_memo: true
|
field_memo: true
|
||||||
field_migration: true
|
|
||||||
field_note: true
|
field_note: true
|
||||||
field_public_phone: true
|
field_public_phone: true
|
||||||
field_workflow: true
|
field_workflow: true
|
||||||
langcode: true
|
langcode: true
|
||||||
search_api_excerpt: true
|
search_api_excerpt: true
|
||||||
|
synonyms: true
|
||||||
|
@@ -4,7 +4,6 @@ status: true
|
|||||||
dependencies:
|
dependencies:
|
||||||
config:
|
config:
|
||||||
- field.field.taxonomy_term.showroom.field_memo
|
- field.field.taxonomy_term.showroom.field_memo
|
||||||
- field.field.taxonomy_term.showroom.field_migration
|
|
||||||
- field.field.taxonomy_term.showroom.field_public_address
|
- field.field.taxonomy_term.showroom.field_public_address
|
||||||
- field.field.taxonomy_term.showroom.field_public_email
|
- field.field.taxonomy_term.showroom.field_public_email
|
||||||
- field.field.taxonomy_term.showroom.field_public_phone
|
- field.field.taxonomy_term.showroom.field_public_phone
|
||||||
@@ -79,7 +78,6 @@ content:
|
|||||||
region: content
|
region: content
|
||||||
hidden:
|
hidden:
|
||||||
field_memo: true
|
field_memo: true
|
||||||
field_migration: true
|
|
||||||
field_workflow: true
|
field_workflow: true
|
||||||
langcode: true
|
langcode: true
|
||||||
search_api_excerpt: true
|
search_api_excerpt: true
|
||||||
|
@@ -5,7 +5,6 @@ dependencies:
|
|||||||
config:
|
config:
|
||||||
- core.entity_view_mode.taxonomy_term.home
|
- core.entity_view_mode.taxonomy_term.home
|
||||||
- field.field.taxonomy_term.showroom.field_memo
|
- field.field.taxonomy_term.showroom.field_memo
|
||||||
- field.field.taxonomy_term.showroom.field_migration
|
|
||||||
- field.field.taxonomy_term.showroom.field_public_address
|
- field.field.taxonomy_term.showroom.field_public_address
|
||||||
- field.field.taxonomy_term.showroom.field_public_email
|
- field.field.taxonomy_term.showroom.field_public_email
|
||||||
- field.field.taxonomy_term.showroom.field_public_phone
|
- field.field.taxonomy_term.showroom.field_public_phone
|
||||||
@@ -61,7 +60,6 @@ content:
|
|||||||
hidden:
|
hidden:
|
||||||
description: true
|
description: true
|
||||||
field_memo: true
|
field_memo: true
|
||||||
field_migration: true
|
|
||||||
field_website: true
|
field_website: true
|
||||||
field_workflow: true
|
field_workflow: true
|
||||||
langcode: true
|
langcode: true
|
||||||
|
@@ -7,12 +7,12 @@ module:
|
|||||||
admin_theme: 0
|
admin_theme: 0
|
||||||
admin_toolbar: 0
|
admin_toolbar: 0
|
||||||
admin_toolbar_links_access_filter: 0
|
admin_toolbar_links_access_filter: 0
|
||||||
advagg: 0
|
|
||||||
advanced_text_formatter: 0
|
advanced_text_formatter: 0
|
||||||
advancedqueue: 0
|
advancedqueue: 0
|
||||||
allowed_formats: 0
|
allowed_formats: 0
|
||||||
amswap: 0
|
amswap: 0
|
||||||
anonymizer: 0
|
anonymizer: 0
|
||||||
|
asset_cache_bust: 0
|
||||||
audiofield: 0
|
audiofield: 0
|
||||||
autocomplete_deluxe: 0
|
autocomplete_deluxe: 0
|
||||||
autologout: 0
|
autologout: 0
|
||||||
@@ -97,7 +97,6 @@ module:
|
|||||||
gdpr_fields: 0
|
gdpr_fields: 0
|
||||||
gdpr_tasks: 0
|
gdpr_tasks: 0
|
||||||
genpass: 0
|
genpass: 0
|
||||||
google_analytics: 0
|
|
||||||
graphql: 0
|
graphql: 0
|
||||||
help: 0
|
help: 0
|
||||||
honeypot: 0
|
honeypot: 0
|
||||||
@@ -125,6 +124,7 @@ module:
|
|||||||
locale: 0
|
locale: 0
|
||||||
login_history: 0
|
login_history: 0
|
||||||
login_tracker: 0
|
login_tracker: 0
|
||||||
|
logout_token: 0
|
||||||
mailjet: 0
|
mailjet: 0
|
||||||
mailjet_commerce: 0
|
mailjet_commerce: 0
|
||||||
mailjet_event: 0
|
mailjet_event: 0
|
||||||
@@ -188,6 +188,7 @@ module:
|
|||||||
social_media_links: 0
|
social_media_links: 0
|
||||||
sophron: 0
|
sophron: 0
|
||||||
state_machine: 0
|
state_machine: 0
|
||||||
|
straw: 0
|
||||||
string_translation_ui: 0
|
string_translation_ui: 0
|
||||||
structure_sync: 0
|
structure_sync: 0
|
||||||
symfony_mailer: 0
|
symfony_mailer: 0
|
||||||
|
@@ -1 +1,3 @@
|
|||||||
row_limit: 10000
|
_core:
|
||||||
|
default_config_hash: e883aGsrt1wFrsydlYU584PZONCSfRy0DtkZ9KzHb58
|
||||||
|
row_limit: 1000
|
||||||
|
@@ -0,0 +1,23 @@
|
|||||||
|
uuid: 149949ee-88a4-4807-97b8-ce17ea87fbaf
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
config:
|
||||||
|
- commerce_order.commerce_order_type.recurring
|
||||||
|
- field.storage.commerce_order.commerce_recurring_queued
|
||||||
|
id: commerce_order.recurring.commerce_recurring_queued
|
||||||
|
field_name: commerce_recurring_queued
|
||||||
|
entity_type: commerce_order
|
||||||
|
bundle: recurring
|
||||||
|
label: Queued
|
||||||
|
description: ''
|
||||||
|
required: false
|
||||||
|
translatable: false
|
||||||
|
default_value:
|
||||||
|
-
|
||||||
|
value: 0
|
||||||
|
default_value_callback: ''
|
||||||
|
settings:
|
||||||
|
on_label: 'Yes'
|
||||||
|
off_label: 'No'
|
||||||
|
field_type: boolean
|
@@ -1,22 +0,0 @@
|
|||||||
uuid: f590405a-6a57-4392-82f4-ca43719edf1f
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.node.field_migration
|
|
||||||
- node.type.article
|
|
||||||
module:
|
|
||||||
- workflow
|
|
||||||
id: node.article.field_migration
|
|
||||||
field_name: field_migration
|
|
||||||
entity_type: node
|
|
||||||
bundle: article
|
|
||||||
label: Migration
|
|
||||||
description: ''
|
|
||||||
required: true
|
|
||||||
translatable: false
|
|
||||||
default_value:
|
|
||||||
- { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings: { }
|
|
||||||
field_type: workflow
|
|
@@ -1,22 +0,0 @@
|
|||||||
uuid: a5c7c4a2-77fc-45dc-810c-9b24ce496ea0
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.node.field_migration
|
|
||||||
- node.type.materiau
|
|
||||||
module:
|
|
||||||
- workflow
|
|
||||||
id: node.materiau.field_migration
|
|
||||||
field_name: field_migration
|
|
||||||
entity_type: node
|
|
||||||
bundle: materiau
|
|
||||||
label: Migration
|
|
||||||
description: ''
|
|
||||||
required: true
|
|
||||||
translatable: false
|
|
||||||
default_value:
|
|
||||||
- { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings: { }
|
|
||||||
field_type: workflow
|
|
@@ -25,13 +25,13 @@ translatable: false
|
|||||||
default_value: { }
|
default_value: { }
|
||||||
default_value_callback: ''
|
default_value_callback: ''
|
||||||
settings:
|
settings:
|
||||||
handler: 'default:taxonomy_term'
|
handler: straw
|
||||||
handler_settings:
|
handler_settings:
|
||||||
target_bundles:
|
target_bundles:
|
||||||
thesaurus: thesaurus
|
thesaurus: thesaurus
|
||||||
sort:
|
sort:
|
||||||
field: name
|
field: name
|
||||||
direction: asc
|
direction: asc
|
||||||
auto_create: false
|
auto_create: 0
|
||||||
auto_create_bundle: ''
|
auto_create_bundle: ''
|
||||||
field_type: entity_reference
|
field_type: entity_reference
|
||||||
|
@@ -1,22 +0,0 @@
|
|||||||
uuid: c892412c-c984-46cd-bf0f-8b71c799832b
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.taxonomy_term.field_migration
|
|
||||||
- taxonomy.vocabulary.company
|
|
||||||
module:
|
|
||||||
- workflow
|
|
||||||
id: taxonomy_term.company.field_migration
|
|
||||||
field_name: field_migration
|
|
||||||
entity_type: taxonomy_term
|
|
||||||
bundle: company
|
|
||||||
label: Migration
|
|
||||||
description: ''
|
|
||||||
required: true
|
|
||||||
translatable: false
|
|
||||||
default_value:
|
|
||||||
- { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings: { }
|
|
||||||
field_type: workflow
|
|
@@ -1,22 +0,0 @@
|
|||||||
uuid: e0715174-5390-45ad-9254-2b074f67e774
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- field.storage.taxonomy_term.field_migration
|
|
||||||
- taxonomy.vocabulary.showroom
|
|
||||||
module:
|
|
||||||
- workflow
|
|
||||||
id: taxonomy_term.showroom.field_migration
|
|
||||||
field_name: field_migration
|
|
||||||
entity_type: taxonomy_term
|
|
||||||
bundle: showroom
|
|
||||||
label: Migration
|
|
||||||
description: ''
|
|
||||||
required: true
|
|
||||||
translatable: false
|
|
||||||
default_value:
|
|
||||||
- { }
|
|
||||||
default_value_callback: ''
|
|
||||||
settings: { }
|
|
||||||
field_type: workflow
|
|
@@ -0,0 +1,18 @@
|
|||||||
|
uuid: 69712edc-46a8-4945-aa76-be9d9d77d5c2
|
||||||
|
langcode: en
|
||||||
|
status: true
|
||||||
|
dependencies:
|
||||||
|
module:
|
||||||
|
- commerce_order
|
||||||
|
id: commerce_order.commerce_recurring_queued
|
||||||
|
field_name: commerce_recurring_queued
|
||||||
|
entity_type: commerce_order
|
||||||
|
type: boolean
|
||||||
|
settings: { }
|
||||||
|
module: core
|
||||||
|
locked: true
|
||||||
|
cardinality: 1
|
||||||
|
translatable: true
|
||||||
|
indexes: { }
|
||||||
|
persist_with_no_fields: false
|
||||||
|
custom_storage: false
|
@@ -1,26 +0,0 @@
|
|||||||
uuid: 1bb279d4-be78-4279-9f6d-4fbe6dab0eb7
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- field_permissions
|
|
||||||
- node
|
|
||||||
- workflow
|
|
||||||
third_party_settings:
|
|
||||||
field_permissions:
|
|
||||||
permission_type: custom
|
|
||||||
id: node.field_migration
|
|
||||||
field_name: field_migration
|
|
||||||
entity_type: node
|
|
||||||
type: workflow
|
|
||||||
settings:
|
|
||||||
workflow_type: migration
|
|
||||||
allowed_values: { }
|
|
||||||
allowed_values_function: ''
|
|
||||||
module: workflow
|
|
||||||
locked: false
|
|
||||||
cardinality: 1
|
|
||||||
translatable: true
|
|
||||||
indexes: { }
|
|
||||||
persist_with_no_fields: false
|
|
||||||
custom_storage: false
|
|
@@ -1,22 +0,0 @@
|
|||||||
uuid: cc79be7b-8e34-46b7-886d-8d766d6def94
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
module:
|
|
||||||
- taxonomy
|
|
||||||
- workflow
|
|
||||||
id: taxonomy_term.field_migration
|
|
||||||
field_name: field_migration
|
|
||||||
entity_type: taxonomy_term
|
|
||||||
type: workflow
|
|
||||||
settings:
|
|
||||||
workflow_type: migration
|
|
||||||
allowed_values: { }
|
|
||||||
allowed_values_function: ''
|
|
||||||
module: workflow
|
|
||||||
locked: false
|
|
||||||
cardinality: 1
|
|
||||||
translatable: true
|
|
||||||
indexes: { }
|
|
||||||
persist_with_no_fields: false
|
|
||||||
custom_storage: false
|
|
@@ -239,7 +239,7 @@ bundles:
|
|||||||
enabled: false
|
enabled: false
|
||||||
rta: 'no'
|
rta: 'no'
|
||||||
rtf: 'no'
|
rtf: 'no'
|
||||||
anonymizer: ''
|
anonymizer: email_anonymizer
|
||||||
notes: ''
|
notes: ''
|
||||||
relationship: 0
|
relationship: 0
|
||||||
sars_filename: ''
|
sars_filename: ''
|
||||||
|
@@ -1,11 +0,0 @@
|
|||||||
uuid: 49f2849f-c35b-47df-9413-1186158a7662
|
|
||||||
langcode: fr
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- workflow.workflow.migration
|
|
||||||
id: workflow_scheduled_transition.migration
|
|
||||||
target_entity_type_id: workflow_scheduled_transition
|
|
||||||
target_bundle: migration
|
|
||||||
default_langcode: site_default
|
|
||||||
language_alterable: false
|
|
@@ -1,11 +0,0 @@
|
|||||||
uuid: f6547b7a-0713-4172-9c55-4de07a856d57
|
|
||||||
langcode: en
|
|
||||||
status: true
|
|
||||||
dependencies:
|
|
||||||
config:
|
|
||||||
- workflow.workflow.migration
|
|
||||||
id: workflow_transition.migration
|
|
||||||
target_entity_type_id: workflow_transition
|
|
||||||
target_bundle: migration
|
|
||||||
default_langcode: site_default
|
|
||||||
language_alterable: false
|
|
@@ -2,3 +2,4 @@ description: "L'inspiration par la matière"
|
|||||||
lang: fr
|
lang: fr
|
||||||
start_url: /
|
start_url: /
|
||||||
scope: /
|
scope: /
|
||||||
|
dir: auto
|
||||||
|
@@ -1 +1 @@
|
|||||||
label: 'Supprimer un produit'
|
label: 'Supprimer le produit'
|
||||||
|
@@ -1 +1 @@
|
|||||||
label: 'Publier un produit'
|
label: 'Publier le produit'
|
||||||
|
@@ -1 +1 @@
|
|||||||
label: 'Supprimer une boutique'
|
label: 'Supprimer la boutique'
|
||||||
|
@@ -1 +1 @@
|
|||||||
label: 'Dépublier un produit'
|
label: 'Dépublier le produit'
|
||||||
|
@@ -0,0 +1 @@
|
|||||||
|
label: 'Edit content'
|
@@ -0,0 +1 @@
|
|||||||
|
label: 'Delete submission'
|
@@ -0,0 +1 @@
|
|||||||
|
label: 'Lock submission'
|
@@ -0,0 +1 @@
|
|||||||
|
label: 'Star/Flag submission'
|
@@ -0,0 +1 @@
|
|||||||
|
label: 'Unlock submission'
|
@@ -0,0 +1 @@
|
|||||||
|
label: 'Unstar/unflag submission'
|
@@ -1,7 +1,10 @@
|
|||||||
|
label: 'Custom block library'
|
||||||
|
description: 'Find and manage custom blocks.'
|
||||||
display:
|
display:
|
||||||
default:
|
default:
|
||||||
display_title: 'Par défaut'
|
display_title: 'Par défaut'
|
||||||
display_options:
|
display_options:
|
||||||
|
title: 'Custom block library'
|
||||||
fields:
|
fields:
|
||||||
info:
|
info:
|
||||||
label: 'Description du bloc'
|
label: 'Description du bloc'
|
||||||
@@ -29,6 +32,9 @@ display:
|
|||||||
exposed_sorts_label: 'Trier par'
|
exposed_sorts_label: 'Trier par'
|
||||||
sort_asc_label: Asc
|
sort_asc_label: Asc
|
||||||
sort_desc_label: Desc
|
sort_desc_label: Desc
|
||||||
|
empty:
|
||||||
|
area_text_custom:
|
||||||
|
content: 'There are no custom blocks available.'
|
||||||
filters:
|
filters:
|
||||||
info:
|
info:
|
||||||
expose:
|
expose:
|
||||||
@@ -41,3 +47,4 @@ display:
|
|||||||
display_options:
|
display_options:
|
||||||
menu:
|
menu:
|
||||||
title: Blocs
|
title: Blocs
|
||||||
|
description: 'Create and edit block content.'
|
||||||
|
@@ -12,6 +12,8 @@ display:
|
|||||||
sort_desc_label: Desc
|
sort_desc_label: Desc
|
||||||
fields:
|
fields:
|
||||||
quantity:
|
quantity:
|
||||||
|
alter:
|
||||||
|
text: '{{ quantity }} x'
|
||||||
separator: ', '
|
separator: ', '
|
||||||
title:
|
title:
|
||||||
separator: ', '
|
separator: ', '
|
||||||
|
@@ -33,6 +33,9 @@ display:
|
|||||||
exposed_sorts_label: 'Trier par'
|
exposed_sorts_label: 'Trier par'
|
||||||
sort_asc_label: Asc
|
sort_asc_label: Asc
|
||||||
sort_desc_label: Desc
|
sort_desc_label: Desc
|
||||||
|
empty:
|
||||||
|
area_text_custom:
|
||||||
|
content: "Aucune boutique n'est disponible."
|
||||||
filters:
|
filters:
|
||||||
type:
|
type:
|
||||||
expose:
|
expose:
|
||||||
|
@@ -1,3 +1,5 @@
|
|||||||
|
label: "Commandes de l'utilisateur"
|
||||||
|
description: 'Affiche une liste des commandes passées pour un utilisateur.'
|
||||||
display:
|
display:
|
||||||
default:
|
default:
|
||||||
display_title: Principal
|
display_title: Principal
|
||||||
@@ -46,6 +48,7 @@ display:
|
|||||||
exception:
|
exception:
|
||||||
title: Tout
|
title: Tout
|
||||||
order_page:
|
order_page:
|
||||||
|
display_title: "Commandes de l'utilisateur"
|
||||||
display_options:
|
display_options:
|
||||||
menu:
|
menu:
|
||||||
title: Commandes
|
title: Commandes
|
||||||
|
@@ -26,6 +26,9 @@ display:
|
|||||||
label: 'Date de modification'
|
label: 'Date de modification'
|
||||||
count:
|
count:
|
||||||
label: 'Utilisé dans'
|
label: 'Utilisé dans'
|
||||||
|
alter:
|
||||||
|
path: 'admin/content/files/usage/{{ fid }}'
|
||||||
|
format_plural_string: !!binary MSBwbGFjZQNAY291bnQgcGxhY2Vz
|
||||||
pager:
|
pager:
|
||||||
options:
|
options:
|
||||||
expose:
|
expose:
|
||||||
|
@@ -25,6 +25,8 @@ display:
|
|||||||
empty:
|
empty:
|
||||||
area_text_custom:
|
area_text_custom:
|
||||||
content: "Aucun contenu de page d'accueil n'a été créé pour l'instant. Suivre le <a href=\"https://www.drupal.org/fr/docs/user_guide/fr/index.html\">Guide utilisateur</a> pour démarrer la construction de votre site."
|
content: "Aucun contenu de page d'accueil n'a été créé pour l'instant. Suivre le <a href=\"https://www.drupal.org/fr/docs/user_guide/fr/index.html\">Guide utilisateur</a> pour démarrer la construction de votre site."
|
||||||
|
title:
|
||||||
|
title: 'Welcome to [site:name]'
|
||||||
feed_1:
|
feed_1:
|
||||||
display_title: Flux
|
display_title: Flux
|
||||||
page_1:
|
page_1:
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
label: Rediriger
|
label: Rediriger
|
||||||
|
description: 'Liste des redirections'
|
||||||
display:
|
display:
|
||||||
default:
|
default:
|
||||||
display_title: Principal
|
display_title: Principal
|
||||||
@@ -60,5 +61,8 @@ display:
|
|||||||
expose:
|
expose:
|
||||||
label: 'Langue initiale'
|
label: 'Langue initiale'
|
||||||
title: Rediriger
|
title: Rediriger
|
||||||
|
empty:
|
||||||
|
area_text_custom:
|
||||||
|
content: "Il n'y a pas encore de redirection."
|
||||||
page_1:
|
page_1:
|
||||||
display_title: Page
|
display_title: Page
|
||||||
|
@@ -19,8 +19,14 @@ display:
|
|||||||
label: Rôles
|
label: Rôles
|
||||||
created:
|
created:
|
||||||
label: 'Membre depuis'
|
label: 'Membre depuis'
|
||||||
|
settings:
|
||||||
|
future_format: '@interval'
|
||||||
|
past_format: '@interval'
|
||||||
access:
|
access:
|
||||||
label: 'Dernier accès'
|
label: 'Dernier accès'
|
||||||
|
settings:
|
||||||
|
future_format: '@interval hence'
|
||||||
|
past_format: '@interval ago'
|
||||||
operations:
|
operations:
|
||||||
label: Actions
|
label: Actions
|
||||||
mail:
|
mail:
|
||||||
|
@@ -1,3 +1,5 @@
|
|||||||
|
label: 'Webform submissions'
|
||||||
|
description: 'Default webform submissions views.'
|
||||||
display:
|
display:
|
||||||
default:
|
default:
|
||||||
display_title: Principal
|
display_title: Principal
|
||||||
@@ -39,12 +41,22 @@ display:
|
|||||||
header:
|
header:
|
||||||
result:
|
result:
|
||||||
content: 'Affichage de @start à @end sur @total'
|
content: 'Affichage de @start à @end sur @total'
|
||||||
|
empty:
|
||||||
|
area_text_custom:
|
||||||
|
content: 'No submissions available.'
|
||||||
arguments:
|
arguments:
|
||||||
in_draft:
|
in_draft:
|
||||||
exception:
|
exception:
|
||||||
title: Tout
|
title: Tout
|
||||||
embed_administer:
|
title: 'Webform submissions'
|
||||||
|
embed_default:
|
||||||
|
display_title: 'Embed: Default'
|
||||||
display_options:
|
display_options:
|
||||||
|
display_description: 'Display submissions.'
|
||||||
|
embed_administer:
|
||||||
|
display_title: 'Embed: Administer'
|
||||||
|
display_options:
|
||||||
|
display_description: 'Administer submissions.'
|
||||||
fields:
|
fields:
|
||||||
webform_submission_bulk_form:
|
webform_submission_bulk_form:
|
||||||
action_title: Action
|
action_title: Action
|
||||||
@@ -72,6 +84,9 @@ display:
|
|||||||
operations:
|
operations:
|
||||||
label: Actions
|
label: Actions
|
||||||
filters:
|
filters:
|
||||||
|
in_draft:
|
||||||
|
expose:
|
||||||
|
label: 'Is draft'
|
||||||
sticky:
|
sticky:
|
||||||
expose:
|
expose:
|
||||||
label: 'Épinglé (en haut des listes)'
|
label: 'Épinglé (en haut des listes)'
|
||||||
@@ -79,7 +94,9 @@ display:
|
|||||||
expose:
|
expose:
|
||||||
label: Verrouillé
|
label: Verrouillé
|
||||||
embed_manage:
|
embed_manage:
|
||||||
|
display_title: 'Embed: Manage'
|
||||||
display_options:
|
display_options:
|
||||||
|
display_description: 'Manage submissions.'
|
||||||
fields:
|
fields:
|
||||||
webform_submission_bulk_form:
|
webform_submission_bulk_form:
|
||||||
action_title: Action
|
action_title: Action
|
||||||
@@ -111,6 +128,9 @@ display:
|
|||||||
label: Actions
|
label: Actions
|
||||||
text: modifier
|
text: modifier
|
||||||
filters:
|
filters:
|
||||||
|
in_draft:
|
||||||
|
expose:
|
||||||
|
label: 'Is draft'
|
||||||
sticky:
|
sticky:
|
||||||
expose:
|
expose:
|
||||||
label: 'Épinglé (en haut des listes)'
|
label: 'Épinglé (en haut des listes)'
|
||||||
@@ -118,7 +138,9 @@ display:
|
|||||||
expose:
|
expose:
|
||||||
label: Verrouillé
|
label: Verrouillé
|
||||||
embed_review:
|
embed_review:
|
||||||
|
display_title: 'Embed: Review'
|
||||||
display_options:
|
display_options:
|
||||||
|
display_description: 'Review submissions.'
|
||||||
fields:
|
fields:
|
||||||
sid:
|
sid:
|
||||||
label: '#'
|
label: '#'
|
||||||
@@ -145,6 +167,9 @@ display:
|
|||||||
label: Actions
|
label: Actions
|
||||||
text: voir
|
text: voir
|
||||||
filters:
|
filters:
|
||||||
|
in_draft:
|
||||||
|
expose:
|
||||||
|
label: 'Is draft'
|
||||||
sticky:
|
sticky:
|
||||||
expose:
|
expose:
|
||||||
label: 'Épinglé (en haut des listes)'
|
label: 'Épinglé (en haut des listes)'
|
||||||
|
@@ -1,10 +1,36 @@
|
|||||||
settings:
|
settings:
|
||||||
|
default_form_open_message: 'This form has not yet been opened to submissions.'
|
||||||
|
default_form_close_message: 'Sorry… This form is closed to new submissions.'
|
||||||
|
default_form_exception_message: 'Unable to display this webform. Please contact the site administrator.'
|
||||||
default_submit_button_label: Soumettre
|
default_submit_button_label: Soumettre
|
||||||
default_reset_button_label: Réinitialiser
|
default_reset_button_label: Réinitialiser
|
||||||
default_delete_button_label: Supprimer
|
default_delete_button_label: Supprimer
|
||||||
|
default_form_confidential_message: 'This form is confidential. You must <a href="[site:login-url]/logout?destination=[current-page:url:relative]">Log out</a> to submit it.'
|
||||||
|
default_form_access_denied_message: 'Please login to access this form.'
|
||||||
|
default_form_required_label: 'Indicates required field'
|
||||||
|
default_wizard_prev_button_label: '< Previous'
|
||||||
|
default_wizard_next_button_label: 'Next >'
|
||||||
|
default_wizard_start_label: Start
|
||||||
default_wizard_confirmation_label: Terminé
|
default_wizard_confirmation_label: Terminé
|
||||||
|
default_wizard_toggle_show_label: 'Show all'
|
||||||
|
default_wizard_toggle_hide_label: 'Hide all'
|
||||||
default_preview_next_button_label: Aperçu
|
default_preview_next_button_label: Aperçu
|
||||||
|
default_preview_prev_button_label: '< Previous'
|
||||||
default_preview_label: Aperçu
|
default_preview_label: Aperçu
|
||||||
|
default_preview_title: '[webform:title]: Preview'
|
||||||
|
default_draft_button_label: 'Save Draft'
|
||||||
|
default_draft_saved_message: 'Submission saved. You may return to this form later and it will restore the current values.'
|
||||||
|
default_draft_loaded_message: 'A partially-completed form was found. Please complete the remaining portions.'
|
||||||
|
default_draft_pending_single_message: 'You have a pending draft for this webform. <a href="#">Load your pending draft</a>.'
|
||||||
|
default_draft_pending_multiple_message: 'You have pending drafts for this webform. <a href="#">View your pending drafts</a>.'
|
||||||
|
default_confirmation_message: 'New submission added to [webform:title].'
|
||||||
|
default_confirmation_back_label: 'Back to form'
|
||||||
|
default_submission_label: '[webform_submission:submitted-to]: Submission #[webform_submission:serial]'
|
||||||
|
default_submission_access_denied_message: 'Please login to access this submission.'
|
||||||
|
default_submission_locked_message: 'This submission has been locked.'
|
||||||
|
default_autofill_message: 'This submission has been autofilled with your previous submission.'
|
||||||
|
default_limit_total_message: 'No more submissions are permitted.'
|
||||||
|
default_limit_user_message: 'No more submissions are permitted.'
|
||||||
dialog_options:
|
dialog_options:
|
||||||
narrow:
|
narrow:
|
||||||
title: Étroit
|
title: Étroit
|
||||||
@@ -13,4 +39,95 @@ settings:
|
|||||||
wide:
|
wide:
|
||||||
title: Large
|
title: Large
|
||||||
element:
|
element:
|
||||||
|
empty_message: '{Empty}'
|
||||||
default_more_title: Plus
|
default_more_title: Plus
|
||||||
|
default_section_title_tag: h2
|
||||||
|
file:
|
||||||
|
file_private_redirect_message: 'Please login to access the uploaded file.'
|
||||||
|
mail:
|
||||||
|
default_from_name: '[site:name]'
|
||||||
|
default_body_html: |
|
||||||
|
<p>Submitted on [webform_submission:created]</p>
|
||||||
|
<p>Submitted by: [webform_submission:user]</p>
|
||||||
|
<p>Submitted values are:</p>
|
||||||
|
[webform_submission:values]
|
||||||
|
test:
|
||||||
|
types: |
|
||||||
|
checkbox:
|
||||||
|
- true
|
||||||
|
color:
|
||||||
|
- '#ffffcc'
|
||||||
|
- '#ffffcc'
|
||||||
|
- '#ccffff'
|
||||||
|
email:
|
||||||
|
- 'example@example.com'
|
||||||
|
- 'test@test.com'
|
||||||
|
- 'random@random.com'
|
||||||
|
language_select:
|
||||||
|
- en
|
||||||
|
machine_name:
|
||||||
|
- 'loremipsum'
|
||||||
|
- 'oratione'
|
||||||
|
- 'dixisset'
|
||||||
|
tel:
|
||||||
|
- '123-456-7890'
|
||||||
|
- '098-765-4321'
|
||||||
|
textarea:
|
||||||
|
- 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Negat esse eam, inquit, propter se expetendam. Primum Theophrasti, Strato, physicum se voluit; Id mihi magnum videtur. Itaque mihi non satis videmini considerare quod iter sit naturae quaeque progressio. Quare hoc videndum est, possitne nobis hoc ratio philosophorum dare. Est enim tanti philosophi tamque nobilis audacter sua decreta defendere.'
|
||||||
|
- 'Huius, Lyco, oratione locuples, rebus ipsis ielunior. Duo Reges: constructio interrete. Sed haec in pueris; Sed utrum hortandus es nobis, Luci, inquit, an etiam tua sponte propensus es? Sapiens autem semper beatus est et est aliquando in dolore; Immo videri fortasse. Paulum, cum regem Persem captum adduceret, eodem flumine invectio? Et ille ridens: Video, inquit, quid agas;'
|
||||||
|
- 'Quae cum dixisset, finem ille. Quamquam non negatis nos intellegere quid sit voluptas, sed quid ille dicat. Progredientibus autem aetatibus sensim tardeve potius quasi nosmet ipsos cognoscimus. Gloriosa ostentatio in constituendo summo bono. Qui-vere falsone, quaerere mittimus-dicitur oculis se privasse; Duarum enim vitarum nobis erunt instituta capienda. Comprehensum, quod cognitum non habet? Qui enim existimabit posse se miserum esse beatus non erit. Causa autem fuit huc veniendi ut quosdam hinc libros promerem. Nunc omni virtuti vitium contrario nomine opponitur.'
|
||||||
|
text_format:
|
||||||
|
- value: '<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Negat esse eam, inquit, propter se expetendam. Primum Theophrasti, Strato, physicum se voluit; Id mihi magnum videtur. Itaque mihi non satis videmini considerare quod iter sit naturae quaeque progressio. Quare hoc videndum est, possitne nobis hoc ratio philosophorum dare. Est enim tanti philosophi tamque nobilis audacter sua decreta defendere.</p>'
|
||||||
|
- value: '<p>Huius, Lyco, oratione locuples, rebus ipsis ielunior. Duo Reges: constructio interrete. Sed haec in pueris; Sed utrum hortandus es nobis, Luci, inquit, an etiam tua sponte propensus es? Sapiens autem semper beatus est et est aliquando in dolore; Immo videri fortasse. Paulum, cum regem Persem captum adduceret, eodem flumine invectio? Et ille ridens: Video, inquit, quid agas;</p>'
|
||||||
|
- value: '<p>Quae cum dixisset, finem ille. Quamquam non negatis nos intellegere quid sit voluptas, sed quid ille dicat. Progredientibus autem aetatibus sensim tardeve potius quasi nosmet ipsos cognoscimus. Gloriosa ostentatio in constituendo summo bono. Qui-vere falsone, quaerere mittimus-dicitur oculis se privasse; Duarum enim vitarum nobis erunt instituta capienda. Comprehensum, quod cognitum non habet? Qui enim existimabit posse se miserum esse beatus non erit. Causa autem fuit huc veniendi ut quosdam hinc libros promerem. Nunc omni virtuti vitium contrario nomine opponitur.</p>'
|
||||||
|
url:
|
||||||
|
- 'http://example.com'
|
||||||
|
- 'http://test.com'
|
||||||
|
webform_email_confirm:
|
||||||
|
- 'example@example.com'
|
||||||
|
- 'test@test.com'
|
||||||
|
- 'random@random.com'
|
||||||
|
webform_email_multiple:
|
||||||
|
- 'example@example.com, test@test.com, random@random.com'
|
||||||
|
webform_time:
|
||||||
|
- '09:00'
|
||||||
|
- '17:00'
|
||||||
|
names: |
|
||||||
|
first_name:
|
||||||
|
- 'John'
|
||||||
|
- 'Paul'
|
||||||
|
- 'Ringo'
|
||||||
|
- 'George'
|
||||||
|
last_name:
|
||||||
|
- 'Lennon'
|
||||||
|
- 'McCartney'
|
||||||
|
- 'Starr'
|
||||||
|
- 'Harrison'
|
||||||
|
address:
|
||||||
|
- '10 Main Street'
|
||||||
|
- '11 Brook Alley Road. APT 1'
|
||||||
|
zip:
|
||||||
|
- '11111'
|
||||||
|
- '12345'
|
||||||
|
- '12345-6789'
|
||||||
|
postal_code:
|
||||||
|
- '11111'
|
||||||
|
- '12345'
|
||||||
|
- '12345-6789'
|
||||||
|
phone:
|
||||||
|
- '123-456-7890'
|
||||||
|
- '098-765-4321'
|
||||||
|
fax:
|
||||||
|
- '123-456-7890'
|
||||||
|
- '098-765-4321'
|
||||||
|
city:
|
||||||
|
- 'Springfield'
|
||||||
|
- 'Pleasantville'
|
||||||
|
- 'Hill Valley'
|
||||||
|
url:
|
||||||
|
- 'http://example.com'
|
||||||
|
- 'http://test.com'
|
||||||
|
default:
|
||||||
|
- 'Loremipsum'
|
||||||
|
- 'Oratione'
|
||||||
|
- 'Dixisset'
|
||||||
|
@@ -2,3 +2,16 @@ title: Contact
|
|||||||
settings:
|
settings:
|
||||||
confirmation_message: 'Votre message a été envoyé.'
|
confirmation_message: 'Votre message a été envoyé.'
|
||||||
confirmation_url: /privacy-policy
|
confirmation_url: /privacy-policy
|
||||||
|
handlers:
|
||||||
|
email_confirmation:
|
||||||
|
label: 'Email confirmation'
|
||||||
|
settings:
|
||||||
|
from_name: _default
|
||||||
|
subject: '[webform_submission:values:subject:raw]'
|
||||||
|
body: '[webform_submission:values:message:value]'
|
||||||
|
email_notification:
|
||||||
|
label: 'Email notification'
|
||||||
|
settings:
|
||||||
|
from_name: '[webform_submission:values:name:raw]'
|
||||||
|
subject: '[webform_submission:values:subject:raw]'
|
||||||
|
body: '[webform_submission:values:message:value]'
|
||||||
|
@@ -0,0 +1,2 @@
|
|||||||
|
label: 'Country codes'
|
||||||
|
category: Geographic
|
@@ -0,0 +1,2 @@
|
|||||||
|
label: 'Country names'
|
||||||
|
category: Geographic
|
@@ -1,2 +1,10 @@
|
|||||||
label: Jours
|
label: Jours
|
||||||
category: 'Date et heure'
|
category: 'Date et heure'
|
||||||
|
options: |
|
||||||
|
Sunday: Sunday
|
||||||
|
Monday: Monday
|
||||||
|
Tuesday: Tuesday
|
||||||
|
Wednesday: Wednesday
|
||||||
|
Thursday: Thursday
|
||||||
|
Friday: Friday
|
||||||
|
Saturday: Saturday
|
||||||
|
@@ -0,0 +1,2 @@
|
|||||||
|
label: Education
|
||||||
|
category: Demographic
|
@@ -0,0 +1 @@
|
|||||||
|
category: Demographic
|
@@ -0,0 +1,2 @@
|
|||||||
|
label: Ethnicity
|
||||||
|
category: Demographic
|
@@ -1 +1,2 @@
|
|||||||
label: Sexe
|
label: Sexe
|
||||||
|
category: Demographic
|
||||||
|
@@ -0,0 +1,2 @@
|
|||||||
|
label: Industry
|
||||||
|
category: Demographic
|
@@ -0,0 +1,7 @@
|
|||||||
|
category: Likert
|
||||||
|
options: |
|
||||||
|
1: 'Much Worse'
|
||||||
|
2: 'Somewhat Worse'
|
||||||
|
3: 'About the Same'
|
||||||
|
4: 'Somewhat Better'
|
||||||
|
5: 'Much Better'
|
@@ -0,0 +1,7 @@
|
|||||||
|
category: Likert
|
||||||
|
options: |
|
||||||
|
1: Strongly Disagree
|
||||||
|
2: Disagree
|
||||||
|
3: Neutral
|
||||||
|
4: Agree
|
||||||
|
5: Strongly Agree
|
@@ -0,0 +1,7 @@
|
|||||||
|
category: Likert
|
||||||
|
options: |
|
||||||
|
1: Not at all Important
|
||||||
|
2: Somewhat Important
|
||||||
|
3: Neutral
|
||||||
|
4: Important
|
||||||
|
5: Very Important
|
@@ -0,0 +1,7 @@
|
|||||||
|
category: Likert
|
||||||
|
options: |
|
||||||
|
1: Poor
|
||||||
|
2: Fair
|
||||||
|
3: Good
|
||||||
|
4: Very good
|
||||||
|
5: Excellent
|
@@ -0,0 +1,7 @@
|
|||||||
|
category: Likert
|
||||||
|
options: |
|
||||||
|
1: Very Unsatisfied
|
||||||
|
2: Unsatisfied
|
||||||
|
3: Neutral
|
||||||
|
4: Satisfied
|
||||||
|
5: Very Satisfied
|
@@ -0,0 +1,12 @@
|
|||||||
|
category: Likert
|
||||||
|
options: |
|
||||||
|
1: 1
|
||||||
|
2: 2
|
||||||
|
3: 3
|
||||||
|
4: 4
|
||||||
|
5: 5
|
||||||
|
6: 6
|
||||||
|
7: 7
|
||||||
|
8: 8
|
||||||
|
9: 9
|
||||||
|
10: 10
|
@@ -0,0 +1,8 @@
|
|||||||
|
label: 'Likert: Would You'
|
||||||
|
category: Likert
|
||||||
|
options: |
|
||||||
|
1: Definitely Not
|
||||||
|
2: Probably Not
|
||||||
|
3: Not Sure
|
||||||
|
4: Probably
|
||||||
|
5: Definitely
|
@@ -0,0 +1,7 @@
|
|||||||
|
label: 'Marital status'
|
||||||
|
category: Demographic
|
||||||
|
options: |
|
||||||
|
Single: Single
|
||||||
|
Married: Married
|
||||||
|
Divorced: Divorced
|
||||||
|
Widowed: Widowed
|
@@ -1 +1,15 @@
|
|||||||
|
label: Months
|
||||||
category: 'Date et heure'
|
category: 'Date et heure'
|
||||||
|
options: |
|
||||||
|
January: January
|
||||||
|
February: February
|
||||||
|
March: March
|
||||||
|
April: April
|
||||||
|
May: May
|
||||||
|
June: June
|
||||||
|
July: July
|
||||||
|
August: August
|
||||||
|
September: September
|
||||||
|
October: October
|
||||||
|
November: November
|
||||||
|
December: December
|
||||||
|
@@ -0,0 +1,2 @@
|
|||||||
|
label: 'Phone type'
|
||||||
|
category: Demographic
|
@@ -0,0 +1 @@
|
|||||||
|
category: Geographic
|
@@ -0,0 +1 @@
|
|||||||
|
category: Geographic
|
@@ -1 +1,2 @@
|
|||||||
label: Relation
|
label: Relation
|
||||||
|
category: Demographic
|
||||||
|
5
config/sync/language/fr/webform.webform_options.sex.yml
Normal file
5
config/sync/language/fr/webform.webform_options.sex.yml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
label: Sex
|
||||||
|
category: Demographic
|
||||||
|
options: |
|
||||||
|
Male: Male
|
||||||
|
Female: Female
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user