Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
abc2b1c1d4 | |||
f2e4d3a3fa |
3
.babelrc
3
.babelrc
@ -7,6 +7,5 @@
|
||||
"node": "current"
|
||||
}
|
||||
}]
|
||||
],
|
||||
"plugins": ["@babel/plugin-syntax-dynamic-import"]
|
||||
]
|
||||
}
|
||||
|
5
.eslintignore
Normal file
5
.eslintignore
Normal file
@ -0,0 +1,5 @@
|
||||
/build/
|
||||
/config/
|
||||
/web/
|
||||
!/web/themes/custom/
|
||||
!/web/modules/custom/
|
48
.eslintrc.js
48
.eslintrc.js
@ -1,43 +1,29 @@
|
||||
module.exports = {
|
||||
module.exports =
|
||||
root: true,
|
||||
parserOptions: {
|
||||
parser: 'babel-eslint'
|
||||
},
|
||||
env: {
|
||||
browser: true,
|
||||
node: true,
|
||||
mocha: true
|
||||
},
|
||||
globals: {
|
||||
"expect": true,
|
||||
"jQuery": false
|
||||
},
|
||||
extends: [
|
||||
'eslint:recommended',
|
||||
'plugin:vue/vue3-recommended',
|
||||
'./web/core/.eslintrc.json',
|
||||
'plugin:vue/recommended',
|
||||
'plugin:vue-a11y/base',
|
||||
'standard',
|
||||
// 'plugin:prettier/recommended'
|
||||
'standard'
|
||||
],
|
||||
plugins: [
|
||||
'vue',
|
||||
'vue-a11y',
|
||||
'no-autofix'
|
||||
'vue-a11y'
|
||||
],
|
||||
rules: {
|
||||
'no-unused-vars': ["warn"],
|
||||
'camelcase': 'off',
|
||||
'eqeqeq': 'warn',
|
||||
'no-redeclare': 'warn'
|
||||
},
|
||||
ignorePatterns: [
|
||||
"vendor/**",
|
||||
"web/core/**"
|
||||
],
|
||||
globals: {
|
||||
"Drupal": true,
|
||||
"drupalSettings": true,
|
||||
"drupalTranslations": true,
|
||||
"domready": true,
|
||||
"jQuery": true,
|
||||
"_": true,
|
||||
"matchMedia": true,
|
||||
"Cookies": true,
|
||||
"Backbone": true,
|
||||
"Modernizr": true,
|
||||
"Popper": true,
|
||||
"Sortable": true,
|
||||
"CKEDITOR": true,
|
||||
"drupalDecoupled": true
|
||||
'generator-star-spacing': 'off',
|
||||
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
|
||||
}
|
||||
}
|
||||
|
17
.gitignore
vendored
17
.gitignore
vendored
@ -28,20 +28,3 @@
|
||||
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
|
||||
|
||||
|
5
.vscode/extensions.json
vendored
5
.vscode/extensions.json
vendored
@ -1,5 +0,0 @@
|
||||
{
|
||||
"recommendations": [
|
||||
"felixfbecker.php-debug"
|
||||
]
|
||||
}
|
26
.vscode/launch.json
vendored
26
.vscode/launch.json
vendored
@ -1,26 +0,0 @@
|
||||
{
|
||||
// Use IntelliSense to learn about possible attributes.
|
||||
// Hover to view descriptions of existing attributes.
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Listen for Xdebug",
|
||||
"type": "php",
|
||||
"request": "launch",
|
||||
"serverSourceRoot":"192.168.0.21"
|
||||
"port": 9001,
|
||||
"pathMappings": {
|
||||
"/var/www/html/d8.materio.com/public_html": "${workspaceFolder}"
|
||||
},
|
||||
},
|
||||
{
|
||||
"name": "Launch currently open script",
|
||||
"type": "php",
|
||||
"request": "launch",
|
||||
"program": "${file}",
|
||||
"cwd": "${fileDirname}",
|
||||
"port": 9001
|
||||
}
|
||||
]
|
||||
}
|
@ -1,98 +1,50 @@
|
||||
'use strict'
|
||||
|
||||
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
|
||||
const { VueLoaderPlugin } = require('vue-loader')
|
||||
const ESLintPlugin = require('eslint-webpack-plugin');
|
||||
const ExtraneousFileCleanupPlugin = require('webpack-extraneous-file-cleanup-plugin');
|
||||
const CompressionPlugin = require("compression-webpack-plugin");
|
||||
|
||||
const utils = require('./utils')
|
||||
|
||||
const themePath = 'web/themes/custom/materiotheme'
|
||||
const langPath = 'web/sites/default/files/lang'
|
||||
|
||||
const isDev = process.env.NODE_ENV === 'development';
|
||||
|
||||
module.exports = {
|
||||
resolve: {
|
||||
extensions: ['.js', '.vue', '.json'],
|
||||
alias: {
|
||||
// 'vue': 'vue/dist/vue.js',
|
||||
'vue' : isDev ? 'vue/dist/vue.js' : 'vue/dist/vue.min.js',
|
||||
'vue': 'vue/dist/vue.js',
|
||||
'theme': utils.resolve(themePath),
|
||||
'vuejs': utils.resolve(themePath+'/vuejs'),
|
||||
'assets': utils.resolve(themePath+'/assets'),
|
||||
// locales are exported by strings_i18n_json_export from drupal
|
||||
'locales': utils.resolve(langPath)
|
||||
'vuejs': utils.resolve(themePath+'/vuejs')
|
||||
}
|
||||
},
|
||||
entry: {
|
||||
'main': utils.resolve(themePath + '/assets/scripts/main.js'),
|
||||
// 'lang-en': utils.resolve(langPath + '/en.json'),
|
||||
'print': utils.resolve(themePath + '/assets/styles/print.scss')
|
||||
// 'mdi': utils.resolve(themePath + '/assets/styles/mdi/scss/materialdesignicons.scss')
|
||||
},
|
||||
output: {
|
||||
publicPath: '/themes/custom/materiotheme/assets/dist/',
|
||||
path: utils.resolve(themePath + '/assets/dist/'),
|
||||
filename: '[name].js',
|
||||
chunkFilename: '[name].bundle.js'
|
||||
filename: '[name].js'
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
// {
|
||||
// test: /\.(js|vue)$/,
|
||||
// loader: 'eslint-loader',
|
||||
// enforce: 'pre',
|
||||
// exclude: /node_modules/,
|
||||
// options: {
|
||||
// emitError: true,
|
||||
// emitWarning: true
|
||||
// }
|
||||
// },
|
||||
{
|
||||
test: /\.(js|vue)$/,
|
||||
loader: 'eslint-loader',
|
||||
enforce: 'pre',
|
||||
exclude: /node_modules/,
|
||||
options: {
|
||||
emitError: true,
|
||||
emitWarning: true
|
||||
}
|
||||
},
|
||||
{
|
||||
test: /\.vue$/,
|
||||
use: 'vue-loader'
|
||||
},
|
||||
// {
|
||||
// resourceQuery: /blockType=i18n/,
|
||||
// type: 'javascript/auto',
|
||||
// loader: '@kazupon/vue-i18n-loader'
|
||||
// },
|
||||
// {
|
||||
// test: /\.js$/,
|
||||
// use: {
|
||||
// loader: 'babel-loader',
|
||||
// }
|
||||
// },
|
||||
{
|
||||
test: /\.(graphql|gql)$/,
|
||||
exclude: /node_modules/,
|
||||
loader: 'graphql-tag/loader'
|
||||
},
|
||||
{
|
||||
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
|
||||
test: /\.js$/,
|
||||
use: {
|
||||
loader: 'url-loader',
|
||||
options: {
|
||||
limit: 10000,
|
||||
name: utils.assetsPath('fonts/[name].[hash:7].[ext]')
|
||||
}
|
||||
loader: 'babel-loader',
|
||||
}
|
||||
}
|
||||
// {
|
||||
// test: /\.graphql?$/,
|
||||
// use: [
|
||||
// {
|
||||
// loader: 'webpack-graphql-loader',
|
||||
// options: {
|
||||
// // validate: true,
|
||||
// // schema: "./path/to/schema.json",
|
||||
// // removeUnusedFragments: true
|
||||
// // etc. See "Loader Options" below
|
||||
// }
|
||||
// }
|
||||
// ]
|
||||
// }
|
||||
// , {
|
||||
// test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
|
||||
// use: {
|
||||
@ -111,53 +63,24 @@ module.exports = {
|
||||
// name: utils.assetsPath('media/[name].[hash:7].[ext]')
|
||||
// }
|
||||
// }
|
||||
// }, {
|
||||
// test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
|
||||
// use: {
|
||||
// loader: 'url-loader',
|
||||
// options: {
|
||||
// limit: 10000,
|
||||
// name: utils.assetsPath('fonts/[name].[hash:7].[ext]')
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// {
|
||||
// test: /\.css$/,
|
||||
// use: [MiniCssExtractPlugin.loader, 'css-loader'],
|
||||
// },
|
||||
]
|
||||
},
|
||||
optimization: {
|
||||
splitChunks: {
|
||||
cacheGroups: {
|
||||
// vsa: {
|
||||
// test: /[\\/]node_modules[\\/](vue-simple-accordion)[\\/]/,
|
||||
// name: 'vsa',
|
||||
// chunks: 'all',
|
||||
// usedExports: true
|
||||
// },
|
||||
vclb: {
|
||||
test: /[\\/]node_modules[\\/](vue-cool-lightbox)[\\/]/,
|
||||
name: 'vclb',
|
||||
chunks: 'all',
|
||||
usedExports: true
|
||||
},
|
||||
// vue_page_article: {
|
||||
// test: /[\\/]web[\\/]themes[\\/]custom[\\/]materiotheme[\\/]vuejs[\\/]components[\\/]Pages[\\/]Article.vue/,
|
||||
// name: 'vue_page_article',
|
||||
// chunks: 'all'
|
||||
// }
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
plugins: [
|
||||
new MiniCssExtractPlugin({
|
||||
path: utils.resolve(themePath + '/assets/dist/'),
|
||||
filename: '[name].css'
|
||||
}),
|
||||
new VueLoaderPlugin(),
|
||||
new ESLintPlugin({
|
||||
// fix: true
|
||||
// exclude: ['web/.eslintrc.json']
|
||||
// cache: false,
|
||||
// ignore: true,
|
||||
// useEslintrc: false,
|
||||
}),
|
||||
new ExtraneousFileCleanupPlugin({
|
||||
extensions: ['.js'],
|
||||
paths: [utils.resolve(themePath + '/assets/dist/')],
|
||||
minBytes: 4096
|
||||
}),
|
||||
new CompressionPlugin(),
|
||||
new VueLoaderPlugin()
|
||||
]
|
||||
}
|
||||
|
@ -1,39 +1,36 @@
|
||||
'use strict'
|
||||
|
||||
const webpack = require('webpack')
|
||||
const { merge } = require('webpack-merge')
|
||||
const merge = require('webpack-merge')
|
||||
const baseConfig = require('./webpack.config.base')
|
||||
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
|
||||
|
||||
module.exports = merge(baseConfig, {
|
||||
mode: 'development',
|
||||
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.css$/,
|
||||
use: [
|
||||
{
|
||||
loader: MiniCssExtractPlugin.loader,
|
||||
options: {
|
||||
publicPath: '',
|
||||
},
|
||||
},
|
||||
process.env.NODE_ENV !== 'production'
|
||||
? 'vue-style-loader'
|
||||
: MiniCssExtractPlugin.loader,
|
||||
// 'vue-style-loader',
|
||||
'css-loader'
|
||||
]
|
||||
}, {
|
||||
test: /\.scss$/,
|
||||
use: [
|
||||
{
|
||||
loader: MiniCssExtractPlugin.loader,
|
||||
options: {
|
||||
publicPath: '',
|
||||
},
|
||||
},
|
||||
process.env.NODE_ENV !== 'production'
|
||||
? 'vue-style-loader'
|
||||
: MiniCssExtractPlugin.loader,
|
||||
// 'vue-style-loader',
|
||||
'css-loader',
|
||||
'sass-loader'
|
||||
]
|
||||
}, {
|
||||
test: /\.(png|jpg|gif|svg)$/,
|
||||
test: /\.(png|jpg|gif)$/,
|
||||
use: [
|
||||
{
|
||||
loader: 'url-loader',
|
||||
|
@ -1,41 +1,55 @@
|
||||
'use strict'
|
||||
|
||||
const webpack = require('webpack')
|
||||
const { merge } = require('webpack-merge')
|
||||
const merge = require('webpack-merge')
|
||||
const baseConfig = require('./webpack.config.base')
|
||||
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
|
||||
const TerserPlugin = require("terser-webpack-plugin");
|
||||
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
|
||||
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
|
||||
|
||||
module.exports = merge(baseConfig, {
|
||||
mode: 'production',
|
||||
optimization: {
|
||||
minimizer: [
|
||||
new UglifyJSPlugin({
|
||||
uglifyOptions: {
|
||||
// Eliminate comments
|
||||
comments: false,
|
||||
// remove warnings
|
||||
warnings: false,
|
||||
compress: {
|
||||
// Drop console statements
|
||||
drop_console: true,
|
||||
}
|
||||
}
|
||||
})
|
||||
]
|
||||
// splitChunks: {
|
||||
// cacheGroups: {
|
||||
// commons: {
|
||||
// test: /[\\/]node_modules[\\/]/,
|
||||
// name: "vendor",
|
||||
// chunks: "all",
|
||||
// },
|
||||
// },
|
||||
// },
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.css?$/,
|
||||
use: [
|
||||
{
|
||||
loader: MiniCssExtractPlugin.loader,
|
||||
options: {
|
||||
publicPath: '',
|
||||
},
|
||||
},
|
||||
MiniCssExtractPlugin.loader,
|
||||
'css-loader'
|
||||
]
|
||||
}, {
|
||||
test: /\.scss?$/,
|
||||
use: [
|
||||
{
|
||||
loader: MiniCssExtractPlugin.loader,
|
||||
options: {
|
||||
publicPath: '',
|
||||
},
|
||||
},
|
||||
MiniCssExtractPlugin.loader,
|
||||
'css-loader',
|
||||
'sass-loader'
|
||||
]
|
||||
}, {
|
||||
test: /\.(png|jpg|gif|svg)$/,
|
||||
test: /\.(png|jpg|gif)$/,
|
||||
use: [
|
||||
{
|
||||
loader: 'url-loader',
|
||||
@ -47,33 +61,9 @@ module.exports = merge(baseConfig, {
|
||||
}
|
||||
]
|
||||
},
|
||||
optimization: {
|
||||
minimize: true,
|
||||
minimizer: [
|
||||
new TerserPlugin({
|
||||
parallel: true,
|
||||
test: /\.(js|vue)$/,
|
||||
// extractComments: true
|
||||
terserOptions: {
|
||||
compress: {
|
||||
// drop_console: true,
|
||||
pure_funcs: [
|
||||
'console.log',
|
||||
'console.info',
|
||||
'console.debug'
|
||||
// 'console.warn'
|
||||
]
|
||||
},
|
||||
},
|
||||
})
|
||||
],
|
||||
},
|
||||
plugins: [
|
||||
new webpack.DefinePlugin({
|
||||
'process.env.NODE_ENV': JSON.stringify('production')
|
||||
}),
|
||||
new BundleAnalyzerPlugin({
|
||||
'analyzerMode': 'static'
|
||||
}),
|
||||
// new MiniCssExtractPlugin({
|
||||
// filename: 'main.css'
|
||||
// })
|
||||
]
|
||||
})
|
||||
|
146
composer.json
146
composer.json
@ -18,111 +18,63 @@
|
||||
"require": {
|
||||
"php": ">=7.3",
|
||||
"composer/installers": "^1.2",
|
||||
"drupal/advagg": "4.x-dev@dev",
|
||||
"drupal/amswap": "^3.0",
|
||||
"drupal/audiofield": "^1.10",
|
||||
"drupal/auto_entitylabel": "^2.x-dev",
|
||||
"drupal/commerce": "^2.22",
|
||||
"drupal/commerce_cart_api": "^1.4",
|
||||
"drupal/commerce_cart_redirection": "^3.0",
|
||||
"drupal/commerce_license": "2.x-dev@dev",
|
||||
"cweagans/composer-patches": "^1.6.5",
|
||||
"drupal-composer/drupal-scaffold": "^2.5",
|
||||
"drupal/amswap": "^2.0",
|
||||
"drupal/auto_entitylabel": "2.x-dev",
|
||||
"drupal/commerce": "^2.12",
|
||||
"drupal/commerce_license": "^2.0@alpha",
|
||||
"drupal/commerce_migrate": "^2.0",
|
||||
"drupal/commerce_monetico": "^1.0",
|
||||
"drupal/commerce_pricelist": "2.x-dev",
|
||||
"drupal/commerce_recurring": "^1.x-dev",
|
||||
"drupal/commerce_stripe": "1.x-dev@dev",
|
||||
"drupal/commerce_variation_cart_form": "^1.x-dev",
|
||||
"drupal/commerce_recurring": "1.x-dev",
|
||||
"drupal/commerce_variation_cart_form": "1.x-dev",
|
||||
"drupal/computed_field": "^2.0@beta",
|
||||
"drupal/config_devel": "^1.7",
|
||||
"drupal/config_pages": "^2.9",
|
||||
"drupal/config_split": "^1.4",
|
||||
"drupal/console": "^1.0.2",
|
||||
"drupal/consumer_image_styles": "^4.0",
|
||||
"drupal/content_sync": "2.x-dev@dev",
|
||||
"drupal/core-composer-scaffold": "^9.0",
|
||||
"drupal/ctools": "^3.6",
|
||||
"drupal/debug_bar": "^1.4",
|
||||
"drupal/devel": "^4.1",
|
||||
"drupal/editor_advanced_link": "^1.8",
|
||||
"drupal/consumer_image_styles": "3.x-dev",
|
||||
"drupal/core": "^8.7.1",
|
||||
"drupal/entity_clone": "^1.0",
|
||||
"drupal/error_log": "^1.0",
|
||||
"drupal/eu_cookie_compliance": "^1.14",
|
||||
"drupal/field_group": "3.x-dev@dev",
|
||||
"drupal/field_permissions": "^1.0",
|
||||
"drupal/flag": "4.x-dev@dev",
|
||||
"drupal/flag_lists": "4.0.x-dev@dev",
|
||||
"drupal/flood_control": "^2.1",
|
||||
"drupal/gdpr": "^3.0@alpha",
|
||||
"drupal/genpass": "^1.x-dev",
|
||||
"drupal/graphql": "^4.0",
|
||||
"drupal/image_delta_formatter": "^1.x-dev",
|
||||
"drupal/image_effects": "3.x-dev@dev",
|
||||
"drupal/genpass": "1.x-dev",
|
||||
"drupal/image_delta_formatter": "1.x-dev",
|
||||
"drupal/jsonapi_extras": "^3.7",
|
||||
"drupal/jsonrpc": "^1.x-dev",
|
||||
"drupal/login_history": "^1.x-dev",
|
||||
"drupal/mailgun": "^1.x-dev",
|
||||
"drupal/jsonrpc": "1.x-dev",
|
||||
"drupal/login_history": "1.x-dev",
|
||||
"drupal/mailgun": "1.x-dev",
|
||||
"drupal/mailsystem": "^4.1",
|
||||
"drupal/migrate_devel": "2.x-dev@dev",
|
||||
"drupal/migrate_plus": "5.x-dev@dev",
|
||||
"drupal/migrate_tools": "5.x-dev@dev",
|
||||
"drupal/mimemail": "^1.x-dev",
|
||||
"drupal/migrate_plus": "4.x-dev",
|
||||
"drupal/migrate_tools": "4.x-dev",
|
||||
"drupal/mimemail": "1.x-dev",
|
||||
"drupal/modules_weight": "^1.8",
|
||||
"drupal/password_policy": "^3.0",
|
||||
"drupal/payment": "^2.1",
|
||||
"drupal/payment_commerce": "2.x-dev@dev",
|
||||
"drupal/permissions_filter": "^1.1",
|
||||
"drupal/printable": "^2.0",
|
||||
"drupal/pwa": "^1.5",
|
||||
"drupal/recurring_period": "^1.0",
|
||||
"drupal/redis": "^1.5",
|
||||
"drupal/restui": "^1.16",
|
||||
"drupal/role_delegation": "^1.1",
|
||||
"drupal/search_api": "^1.19",
|
||||
"drupal/search_api_autocomplete": "^1.2",
|
||||
"drupal/search_api_page": "^1.x-dev",
|
||||
"drupal/search_api_solr": "^4.1",
|
||||
"drupal/select_translation": "^1.x-dev",
|
||||
"drupal/simplenews": "^2.0@beta",
|
||||
"drupal/social_media_links": "^2.8",
|
||||
"drupal/string_translation_ui": "^1.2",
|
||||
"drupal/strings_i18n_json_export": "1.x-dev@dev",
|
||||
"drupal/structure_sync": "^2.0",
|
||||
"drupal/search_api_page": "1.x-dev",
|
||||
"drupal/search_api_solr": "^3.0",
|
||||
"drupal/select_translation": "1.x-dev",
|
||||
"drupal/simplenews": "1.x-dev",
|
||||
"drupal/subrequests": "^2.0",
|
||||
"drupal/synonyms": "2.0.0-beta2",
|
||||
"drupal/telephone_formatter": "^1.0@beta",
|
||||
"drupal/telephone_validation": "^2.1",
|
||||
"drupal/term_reference_tree": "1.x-dev@dev",
|
||||
"drupal/translate_side_by_side": "^1.x-dev",
|
||||
"drupal/translation_views": "^1.x-dev",
|
||||
"drupal/ultimate_cron": "^2.x-dev",
|
||||
"drupal/unique_content_field_validation": "^1.0",
|
||||
"drupal/url_to_video_filter": "^2.0",
|
||||
"drupal/user_email_verification": "1.x-dev@dev",
|
||||
"drupal/views_conditional": "^1.x-dev",
|
||||
"drupal/views_ef_fieldset": "^1.5",
|
||||
"drupal/webform": "^6.0",
|
||||
"drush/drush": "^9",
|
||||
"kint-php/kint": "^3.3",
|
||||
"smalot/pdfparser": "*",
|
||||
"symfony/event-dispatcher": "4.3.4 as 3.4.99",
|
||||
"drupal/ultimate_cron": "2.x-dev",
|
||||
"drupal/views_conditional": "1.x-dev",
|
||||
"drush/drush": "^9.0.0",
|
||||
"vlucas/phpdotenv": "^2.4",
|
||||
"wa72/htmlpagedom": "1.3.*",
|
||||
"webflo/drupal-finder": "^1.0.0",
|
||||
"webmozart/path-util": "^2.3",
|
||||
"wikimedia/composer-merge-plugin": "^2.0",
|
||||
"wikimedia/composer-merge-plugin": "^1.4",
|
||||
"zaporylie/composer-drupal-optimizations": "^1.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"webflo/drupal-core-require-dev": "^8.6.0"
|
||||
},
|
||||
"conflict": {
|
||||
"drupal/drupal": "*"
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true,
|
||||
"config": {
|
||||
"sort-packages": true,
|
||||
"platform": {
|
||||
"php": "7.3"
|
||||
},
|
||||
"discard-changes": true
|
||||
"sort-packages": true
|
||||
},
|
||||
"autoload": {
|
||||
"classmap": [
|
||||
@ -167,46 +119,16 @@
|
||||
},
|
||||
"patches": {
|
||||
"drupal/core": {
|
||||
"migrate_drupal getsetting on null" : "https://www.drupal.org/files/issues/2019-02-13/migrate_drupal-getsetting_on_null.patch",
|
||||
"language negociation exeption https://www.drupal.org/project/drupal/issues/3134349" : "https://www.drupal.org/files/issues/2020-06-02/3134349-9.patch",
|
||||
"Cannot save translated nodes after upgrading to 8.8 due to invalid path https://www.drupal.org/project/drupal/issues/3101344":"https://www.drupal.org/files/issues/2021-03-01/3101344-drupal-core-fix-permissions-checking-while-node-translating-64.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 2 https://www.drupal.org/project/drupal/issues/2546212": "https://www.drupal.org/files/issues/2020-12-04/2546212-168.patch"
|
||||
"migrate_drupal getsetting on null" : "https://www.drupal.org/files/issues/2019-02-13/migrate_drupal-getsetting_on_null.patch"
|
||||
},
|
||||
"drupal/migrate_tools": {
|
||||
"The --limit option does not accept a value.": "https://www.drupal.org/files/issues/2019-02-05/migrate-tools_fix-drush-options_3024399-23.patch"
|
||||
},
|
||||
"drupal/email_registration": {
|
||||
"allow email login through REST https://www.drupal.org/project/email_registration/issues/2856542": "https://www.drupal.org/files/issues/allow_authentication-2856542-3.patch"
|
||||
},
|
||||
"drupal/field_group": {
|
||||
"undefined index name 18 https://www.drupal.org/project/field_group/issues/3064890" : "https://www.drupal.org/files/issues/2020-10-01/field_group-undefined-index-name-3064890-18.patch",
|
||||
"undefined index name 16 https://www.drupal.org/project/field_group/issues/3064890" : "https://www.drupal.org/files/issues/2020-08-10/field_group-undefined-index-name-3064890-16.patch"
|
||||
},
|
||||
"drupal/stripe": {
|
||||
"Stripe is a web service and should be in system.admin_config_services https://www.drupal.org/project/stripe/issues/3090652": "https://www.drupal.org/files/issues/2020-01-08/stripe-link_menu_in_services-3090652-5.patch"
|
||||
},
|
||||
"drupal/address": {
|
||||
"Integrate Address with Search API https://www.drupal.org/project/address/issues/2812659": "https://www.drupal.org/files/issues/2020-11-02/integrate-address-searchapi-2812659-56.patch"
|
||||
},
|
||||
"drupal/flag": {
|
||||
"remove flag hooks to allow site to be accessible again https://www.drupal.org/project/flag/issues/3200806": "./patches/flag-commenthooks.patch"
|
||||
},
|
||||
"drupal/graphql": {
|
||||
"Invalid translation language https://github.com/drupal-graphql/graphql/issues/1175": "./patches/graphql-fix-invalid-translation-language.patch"
|
||||
},
|
||||
"drupal/unique_content_field_validation": {
|
||||
"Do not validate against empty fields https://www.drupal.org/project/unique_content_field_validation/issues/3201576": "https://www.drupal.org/files/issues/2021-03-04/unique_validation-empty_field.patch"
|
||||
},
|
||||
"drupal/pwa": {
|
||||
"Manifest doesn't have a maskable icon https://www.drupal.org/project/pwa/issues/3165433": "https://www.drupal.org/files/issues/2020-08-26/pwa_icon_purpose-3165433-9.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/2021-07-16/3064280_bring_back_tracklist-15.patch"
|
||||
}
|
||||
},
|
||||
"drupal-scaffold": {
|
||||
"locations": {
|
||||
"web-root": "./web"
|
||||
},
|
||||
"initial": {
|
||||
".editorconfig": "../.editorconfig",
|
||||
".gitattributes": "../.gitattributes"
|
||||
|
14337
composer.lock
generated
14337
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@ -1,10 +1,6 @@
|
||||
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: kint
|
||||
debug_logfile: 'temporary://drupal_debug.txt'
|
||||
debug_pre: false
|
||||
- 0
|
||||
rebuild_theme: true
|
||||
devel_dumper: default
|
||||
|
@ -1,113 +0,0 @@
|
||||
form_settings:
|
||||
commerce_license:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
commerce_log:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
commerce_order:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
commerce_order_item:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
commerce_payment:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
commerce_payment_method:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
commerce_pricelist_item:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
commerce_pricelist:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
commerce_product_variation:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
commerce_product:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
commerce_product_attribute_value:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
commerce_promotion:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
commerce_promotion_coupon:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
commerce_subscription:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
commerce_store:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
consumer:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
contact_message:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
file:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
node:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
profile:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
redirect:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
search_api_task:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
simplenews_subscriber:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
taxonomy_term:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
user:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
workflow_transition:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
workflow_scheduled_transition:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
||||
menu_link_content:
|
||||
default_value: false
|
||||
disable: false
|
||||
hidden: false
|
@ -1,5 +0,0 @@
|
||||
description: 'L''inspiration par la matière'
|
||||
urls_to_cache: "/fr/pricing\r\n/fr/blabla\r\n/fr/base\r\n/fr/showrooms"
|
||||
start_url: /
|
||||
lang: fr
|
||||
cache_version: '1'
|
@ -18,7 +18,6 @@ track:
|
||||
site_search: false
|
||||
privacy:
|
||||
donottrack: true
|
||||
disablecookies: false
|
||||
custom:
|
||||
variable: { }
|
||||
codesnippet:
|
||||
|
@ -1,20 +0,0 @@
|
||||
site_name: materiO
|
||||
short_name: materiO
|
||||
description: 'The material library your projects deserve'
|
||||
start_url: /
|
||||
lang: fr
|
||||
theme_color: '#ffffff'
|
||||
background_color: '#ffffff'
|
||||
display: standalone
|
||||
default_image: '0'
|
||||
urls_to_cache: "/en/pricing\r\n/en/blabla\r\n/en/base\r\n/en/showrooms"
|
||||
urls_to_exclude: "admin/.*\r\nuser/.*"
|
||||
offline_page: /offline
|
||||
cache_version: '2'
|
||||
cross_origin: false
|
||||
skip_waiting: false
|
||||
_core:
|
||||
default_config_hash: cP1TZQyv1WdET3iepl2QoyOPK7VeO0xHm0lU_FU1Wmc
|
||||
image: /sites/default/files/pwa/materiopwaicon.png
|
||||
image_small: /sites/default/files/pwa/materiopwaicon.pngcopy.png
|
||||
image_very_small: /sites/default/files/pwa/materiopwaicon.pngcopy2.png
|
@ -1,23 +0,0 @@
|
||||
touch_icons:
|
||||
touch-icon-default: touch-icon-default
|
||||
meta_tags:
|
||||
meta-capable: meta-capable
|
||||
meta-status-bar-style: meta-status-bar-style
|
||||
color_select: black_translucent
|
||||
home_screen_icons:
|
||||
iphone5-splash: iphone5-splash
|
||||
iphone6-splash: iphone6-splash
|
||||
iphoneplus-splash: iphoneplus-splash
|
||||
iphonex-splash: iphonex-splash
|
||||
iphonexr-splash: iphonexr-splash
|
||||
iphonexsmax-splash: iphonexsmax-splash
|
||||
ipad-splash: ipad-splash
|
||||
ipadpro1-splash: ipadpro1-splash
|
||||
ipadpro2-splash: ipadpro2-splash
|
||||
ipadpro3-splash: ipadpro3-splash
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- pwa_extras
|
||||
_core:
|
||||
default_config_hash: TOeFdF8Tjq2HqBmUgrTH06d7ZpY5qNLHZTLPIaCVsEk
|
@ -1,24 +0,0 @@
|
||||
# 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>
|
@ -1,10 +0,0 @@
|
||||
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: kint
|
||||
debug_logfile: 'temporary://drupal_debug.txt'
|
||||
debug_pre: false
|
@ -1,5 +0,0 @@
|
||||
description: 'L''inspiration par la matière'
|
||||
urls_to_cache: "/fr/pricing\r\n/fr/blabla\r\n/fr/base\r\n/fr/showrooms"
|
||||
start_url: /
|
||||
lang: fr
|
||||
cache_version: '1'
|
@ -1,20 +0,0 @@
|
||||
site_name: materiO
|
||||
short_name: materiO
|
||||
description: 'The material library your projects deserve'
|
||||
start_url: /
|
||||
lang: fr
|
||||
theme_color: '#ffffff'
|
||||
background_color: '#ffffff'
|
||||
display: standalone
|
||||
default_image: '0'
|
||||
urls_to_cache: "/en/pricing\r\n/en/blabla\r\n/en/base\r\n/en/showrooms"
|
||||
urls_to_exclude: "admin/.*\r\nuser/.*"
|
||||
offline_page: /offline
|
||||
cache_version: '2'
|
||||
cross_origin: false
|
||||
skip_waiting: false
|
||||
_core:
|
||||
default_config_hash: cP1TZQyv1WdET3iepl2QoyOPK7VeO0xHm0lU_FU1Wmc
|
||||
image: /sites/default/files/pwa/materiopwaicon.png
|
||||
image_small: /sites/default/files/pwa/materiopwaicon.pngcopy.png
|
||||
image_very_small: /sites/default/files/pwa/materiopwaicon.pngcopy2.png
|
@ -1,23 +0,0 @@
|
||||
touch_icons:
|
||||
touch-icon-default: touch-icon-default
|
||||
meta_tags:
|
||||
meta-capable: meta-capable
|
||||
meta-status-bar-style: meta-status-bar-style
|
||||
color_select: black_translucent
|
||||
home_screen_icons:
|
||||
iphone5-splash: iphone5-splash
|
||||
iphone6-splash: iphone6-splash
|
||||
iphoneplus-splash: iphoneplus-splash
|
||||
iphonex-splash: iphonex-splash
|
||||
iphonexr-splash: iphonexr-splash
|
||||
iphonexsmax-splash: iphonexsmax-splash
|
||||
ipad-splash: ipad-splash
|
||||
ipadpro1-splash: ipadpro1-splash
|
||||
ipadpro2-splash: ipadpro2-splash
|
||||
ipadpro3-splash: ipadpro3-splash
|
||||
dependencies:
|
||||
enforced:
|
||||
module:
|
||||
- pwa_extras
|
||||
_core:
|
||||
default_config_hash: TOeFdF8Tjq2HqBmUgrTH06d7ZpY5qNLHZTLPIaCVsEk
|
@ -1,26 +0,0 @@
|
||||
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
|
||||
_core:
|
||||
default_config_hash: Vi3b7DLLNw5X1UX9XG8mnU-ysvyNgdyvAasxV9yck3I
|
@ -1,3 +1,2 @@
|
||||
enabled: false
|
||||
timeout: null
|
||||
url: ''
|
||||
|
@ -2,4 +2,3 @@ enabled: true
|
||||
timeout: 0
|
||||
_core:
|
||||
default_config_hash: Oe-fB2enOwHHacGGf5HLP31RdU9bEsQZ19YQ6AS8pjw
|
||||
url: ''
|
||||
|
@ -1,3 +1,2 @@
|
||||
enabled: false
|
||||
timeout: null
|
||||
url: ''
|
||||
|
@ -1,3 +1,2 @@
|
||||
enabled: false
|
||||
timeout: 60
|
||||
url: /
|
||||
timeout: null
|
||||
|
@ -1,3 +1,2 @@
|
||||
enabled: false
|
||||
timeout: null
|
||||
url: ''
|
||||
|
@ -1,3 +1,2 @@
|
||||
enabled: false
|
||||
timeout: null
|
||||
url: ''
|
||||
|
@ -2,4 +2,3 @@ enabled: true
|
||||
timeout: 0
|
||||
_core:
|
||||
default_config_hash: Oe-fB2enOwHHacGGf5HLP31RdU9bEsQZ19YQ6AS8pjw
|
||||
url: ''
|
||||
|
@ -1,3 +1,2 @@
|
||||
enabled: false
|
||||
timeout: 60
|
||||
url: /
|
||||
timeout: null
|
||||
|
@ -1,3 +1,2 @@
|
||||
enabled: false
|
||||
timeout: null
|
||||
url: ''
|
||||
|
@ -1,3 +1,2 @@
|
||||
enabled: false
|
||||
timeout: null
|
||||
url: ''
|
||||
|
@ -3,22 +3,14 @@ max_timeout: 172800
|
||||
padding: 360
|
||||
role_logout: true
|
||||
redirect_url: /
|
||||
no_dialog: true
|
||||
no_dialog: false
|
||||
message: 'Your session is about to expire. Do you want to reset it?'
|
||||
inactivity_message: ''
|
||||
enforce_admin: false
|
||||
jstimer_format: '%hours%:%mins%:%secs%'
|
||||
jstimer_js_load_option: false
|
||||
use_alt_logout_method: true
|
||||
use_alt_logout_method: false
|
||||
use_watchdog: true
|
||||
langcode: fr
|
||||
_core:
|
||||
default_config_hash: m2pxH8tc4KIlh127R5TYim65W7NBY9gpYQnIXlvDp0M
|
||||
dialog_title: 'materiO’ Alert'
|
||||
no_individual_logout_threshold: true
|
||||
role_logout_max: true
|
||||
inactivity_message_type: status
|
||||
disable_buttons: false
|
||||
yes_button: ''
|
||||
no_button: ''
|
||||
whitelisted_ip_addresses: ''
|
||||
|
@ -1,63 +0,0 @@
|
||||
position: tr
|
||||
vertical: 50
|
||||
horizontal: 5
|
||||
fixed: 0
|
||||
width: 600px
|
||||
autoclose: 10
|
||||
opendelay: 0.3
|
||||
disable_autoclose: 1
|
||||
show_countdown: 0
|
||||
hover_autoclose: 1
|
||||
popin:
|
||||
effect: fadeIn
|
||||
duration: normal
|
||||
popout:
|
||||
effect: fadeIn
|
||||
duration: fast
|
||||
jquery_ui:
|
||||
draggable: 0
|
||||
resizable: 0
|
||||
visibility:
|
||||
message_type:
|
||||
id: message_type
|
||||
message_types: { }
|
||||
negate: false
|
||||
context_mapping:
|
||||
better_messages: '@better_messages.context:better_messages'
|
||||
'entity_bundle:commerce_product':
|
||||
id: 'entity_bundle:commerce_product'
|
||||
bundles: { }
|
||||
negate: false
|
||||
context_mapping:
|
||||
commerce_product: '@commerce_product.product_route_context:commerce_product'
|
||||
'entity_bundle:node':
|
||||
id: 'entity_bundle:node'
|
||||
bundles: { }
|
||||
negate: false
|
||||
context_mapping:
|
||||
node: '@node.node_route_context:node'
|
||||
language:
|
||||
id: language
|
||||
langcodes: { }
|
||||
negate: false
|
||||
context_mapping:
|
||||
language: '@language.current_language_context:language_interface'
|
||||
node_type:
|
||||
id: node_type
|
||||
bundles: { }
|
||||
negate: false
|
||||
context_mapping:
|
||||
node: '@node.node_route_context:node'
|
||||
request_path:
|
||||
id: request_path
|
||||
pages: ''
|
||||
negate: false
|
||||
user_role:
|
||||
id: user_role
|
||||
roles: { }
|
||||
negate: false
|
||||
context_mapping:
|
||||
user: '@user.current_user_context:current_user'
|
||||
langcode: fr
|
||||
_core:
|
||||
default_config_hash: VcrgfJ8s9xNvGnogt3JciEvtMgPkMsHeE9BOLXd7jHk
|
@ -1,21 +0,0 @@
|
||||
uuid: 90f98c52-9624-4758-9c38-3904d5ef5faa
|
||||
langcode: en
|
||||
status: false
|
||||
dependencies:
|
||||
module:
|
||||
- commerce_cart
|
||||
theme:
|
||||
- materiotheme
|
||||
id: cart
|
||||
theme: materiotheme
|
||||
region: header_right
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: commerce_cart
|
||||
settings:
|
||||
id: commerce_cart
|
||||
label: Cart
|
||||
provider: commerce_cart
|
||||
label_display: visible
|
||||
dropdown: true
|
||||
visibility: { }
|
@ -1,46 +0,0 @@
|
||||
uuid: f1f79e84-77c7-4d8a-a4b5-a8a84f380cb0
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- commerce_checkout
|
||||
- context
|
||||
- ctools
|
||||
theme:
|
||||
- materiotheme
|
||||
id: checkoutprogress
|
||||
theme: materiotheme
|
||||
region: content_top
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: commerce_checkout_progress
|
||||
settings:
|
||||
id: commerce_checkout_progress
|
||||
label: 'Checkout progress'
|
||||
provider: commerce_checkout
|
||||
label_display: '0'
|
||||
visibility:
|
||||
view_inclusion:
|
||||
id: view_inclusion
|
||||
negate: null
|
||||
view_inclusion: { }
|
||||
context_mapping: { }
|
||||
request_path_exclusion:
|
||||
id: request_path_exclusion
|
||||
pages: ''
|
||||
negate: null
|
||||
context_mapping: { }
|
||||
'entity_bundle:commerce_product_variation':
|
||||
id: 'entity_bundle:commerce_product_variation'
|
||||
bundles:
|
||||
materio_product_variation_type: materio_product_variation_type
|
||||
negate: false
|
||||
context_mapping:
|
||||
commerce_product_variation: '@commerce_product.product_variation_route_context:commerce_product_variation'
|
||||
'entity_bundle:commerce_product':
|
||||
id: 'entity_bundle:commerce_product'
|
||||
bundles:
|
||||
materio_product_type: materio_product_type
|
||||
negate: false
|
||||
context_mapping:
|
||||
commerce_product: '@commerce_product.product_route_context:commerce_product'
|
@ -1,31 +0,0 @@
|
||||
uuid: d16db992-5c92-4832-a386-69b50313a3e9
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.header
|
||||
module:
|
||||
- menu_block
|
||||
theme:
|
||||
- materiotheme
|
||||
id: header
|
||||
theme: materiotheme
|
||||
region: header_right
|
||||
weight: -2
|
||||
provider: null
|
||||
plugin: 'menu_block:header'
|
||||
settings:
|
||||
id: 'menu_block:header'
|
||||
label: Header
|
||||
provider: menu_block
|
||||
label_display: '0'
|
||||
follow: false
|
||||
follow_parent: child
|
||||
level: 1
|
||||
depth: 0
|
||||
expand_all_items: false
|
||||
parent: 'header:'
|
||||
suggestion: header
|
||||
label_type: block
|
||||
label_link: false
|
||||
visibility: { }
|
@ -14,7 +14,7 @@ provider: null
|
||||
plugin: 'language_block:language_interface'
|
||||
settings:
|
||||
id: 'language_block:language_interface'
|
||||
label: Langue
|
||||
label: Language
|
||||
provider: language
|
||||
label_display: visible
|
||||
visibility: { }
|
||||
|
@ -3,9 +3,7 @@ langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- context
|
||||
- materio_sapi
|
||||
- system
|
||||
theme:
|
||||
- materiotheme
|
||||
id: materiosapisearchblock
|
||||
@ -19,19 +17,4 @@ settings:
|
||||
label: 'Materio sapi search block'
|
||||
provider: materio_sapi
|
||||
label_display: '0'
|
||||
visibility:
|
||||
view_inclusion:
|
||||
id: view_inclusion
|
||||
negate: null
|
||||
view_inclusion: { }
|
||||
context_mapping: { }
|
||||
request_path_exclusion:
|
||||
id: request_path_exclusion
|
||||
pages: ''
|
||||
negate: null
|
||||
context_mapping: { }
|
||||
request_path:
|
||||
id: request_path
|
||||
pages: '/checkout/*'
|
||||
negate: true
|
||||
context_mapping: { }
|
||||
visibility: { }
|
||||
|
@ -1,49 +0,0 @@
|
||||
uuid: 9707958e-dc3d-43f9-a449-84993d135dae
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- context
|
||||
- materio_simplenews
|
||||
- system
|
||||
- user
|
||||
theme:
|
||||
- materiotheme
|
||||
id: materiosimplenewssubscription
|
||||
theme: materiotheme
|
||||
region: footer_left
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: materio_simplenews_subscription_block
|
||||
settings:
|
||||
id: materio_simplenews_subscription_block
|
||||
label: 'Inscription newsletter Materio'
|
||||
provider: materio_simplenews
|
||||
label_display: '0'
|
||||
newsletters:
|
||||
materio_newsletter: materio_newsletter
|
||||
message: 'Subscribe to our monthly newsletter.'
|
||||
unique_id: d0c7bdf4-c218-4ded-840a-9c4c731ec469
|
||||
visibility:
|
||||
view_inclusion:
|
||||
id: view_inclusion
|
||||
negate: false
|
||||
view_inclusion: { }
|
||||
context_mapping: { }
|
||||
request_path_exclusion:
|
||||
id: request_path_exclusion
|
||||
pages: ''
|
||||
negate: true
|
||||
context_mapping: { }
|
||||
user_role:
|
||||
id: user_role
|
||||
roles:
|
||||
anonymous: anonymous
|
||||
negate: false
|
||||
context_mapping:
|
||||
user: '@user.current_user_context:current_user'
|
||||
request_path:
|
||||
id: request_path
|
||||
pages: '<front>'
|
||||
negate: false
|
||||
context_mapping: { }
|
@ -1,31 +0,0 @@
|
||||
uuid: 4c2a2713-7fd0-4b0a-ab12-0e23ac5f266d
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- system.menu.footer
|
||||
module:
|
||||
- menu_block
|
||||
theme:
|
||||
- materiotheme
|
||||
id: pieddepage
|
||||
theme: materiotheme
|
||||
region: footer_right
|
||||
weight: 0
|
||||
provider: null
|
||||
plugin: 'menu_block:footer'
|
||||
settings:
|
||||
id: 'menu_block:footer'
|
||||
label: 'Pied de page'
|
||||
provider: menu_block
|
||||
label_display: '0'
|
||||
follow: false
|
||||
follow_parent: child
|
||||
level: 1
|
||||
depth: 0
|
||||
expand_all_items: false
|
||||
parent: 'footer:'
|
||||
suggestion: footer
|
||||
label_type: block
|
||||
label_link: false
|
||||
visibility: { }
|
@ -1,140 +0,0 @@
|
||||
uuid: f3053235-8080-4c5a-b6df-800f3c16eaac
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- context
|
||||
- social_media_links
|
||||
theme:
|
||||
- materiotheme
|
||||
id: socialmedialinks
|
||||
theme: materiotheme
|
||||
region: header_right
|
||||
weight: -5
|
||||
provider: null
|
||||
plugin: social_media_links_block
|
||||
settings:
|
||||
id: social_media_links_block
|
||||
label: 'Social Media Links'
|
||||
provider: social_media_links
|
||||
label_display: '0'
|
||||
platforms:
|
||||
website:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-10'
|
||||
instagram:
|
||||
value: materio_fr
|
||||
description: ''
|
||||
weight: '-9'
|
||||
xing:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-8'
|
||||
contact:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-7'
|
||||
rss:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-6'
|
||||
bitbucket:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-5'
|
||||
vkontakte:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-4'
|
||||
slideshare:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-3'
|
||||
github:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-2'
|
||||
behance:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '-1'
|
||||
vimeo:
|
||||
value: materio
|
||||
description: ''
|
||||
weight: '0'
|
||||
linkedin:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '1'
|
||||
youtube_channel:
|
||||
value: UChKuhMq9rSfLqUmPc9dEgXw
|
||||
description: ''
|
||||
weight: '2'
|
||||
googleplus:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '3'
|
||||
facebook:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '4'
|
||||
drupal:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '5'
|
||||
flickr:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '6'
|
||||
gitlab:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '7'
|
||||
tumblr:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '8'
|
||||
youtube:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '9'
|
||||
pinterest:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '10'
|
||||
email:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '11'
|
||||
twitter:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '12'
|
||||
whatsapp:
|
||||
value: ''
|
||||
description: ''
|
||||
weight: '13'
|
||||
appearance:
|
||||
orientation: h
|
||||
show_name: 0
|
||||
suggestion: ''
|
||||
link_attributes:
|
||||
target: _blank
|
||||
rel: nofollow
|
||||
iconset:
|
||||
style: 'fontawesome:fw'
|
||||
installed_iconsets:
|
||||
fontawesome:
|
||||
examples: ''
|
||||
visibility:
|
||||
view_inclusion:
|
||||
id: view_inclusion
|
||||
negate: null
|
||||
view_inclusion: { }
|
||||
context_mapping: { }
|
||||
request_path_exclusion:
|
||||
id: request_path_exclusion
|
||||
pages: ''
|
||||
negate: null
|
||||
context_mapping: { }
|
@ -3,7 +3,6 @@ langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- context
|
||||
- user
|
||||
theme:
|
||||
- materiotheme
|
||||
@ -24,19 +23,8 @@ visibility:
|
||||
user_role:
|
||||
id: user_role
|
||||
roles:
|
||||
authenticated: authenticated
|
||||
admin: admin
|
||||
root: root
|
||||
negate: false
|
||||
context_mapping:
|
||||
user: '@user.current_user_context:current_user'
|
||||
view_inclusion:
|
||||
id: view_inclusion
|
||||
negate: null
|
||||
view_inclusion: { }
|
||||
context_mapping: { }
|
||||
request_path_exclusion:
|
||||
id: request_path_exclusion
|
||||
pages: ''
|
||||
negate: null
|
||||
context_mapping: { }
|
||||
|
@ -10,7 +10,7 @@ dependencies:
|
||||
id: userblock
|
||||
theme: materiotheme
|
||||
region: header_right
|
||||
weight: -3
|
||||
weight: -2
|
||||
provider: null
|
||||
plugin: user_block
|
||||
settings:
|
||||
|
@ -3,29 +3,18 @@ langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- context
|
||||
- user
|
||||
theme:
|
||||
- materiotheme
|
||||
id: userlogin
|
||||
theme: materiotheme
|
||||
region: header_right
|
||||
weight: -4
|
||||
weight: -3
|
||||
provider: null
|
||||
plugin: user_login_block
|
||||
settings:
|
||||
id: user_login_block
|
||||
label: 'Accès membre'
|
||||
label: 'Member Access'
|
||||
provider: user
|
||||
label_display: visible
|
||||
visibility:
|
||||
view_inclusion:
|
||||
id: view_inclusion
|
||||
negate: null
|
||||
view_inclusion: { }
|
||||
context_mapping: { }
|
||||
request_path_exclusion:
|
||||
id: request_path_exclusion
|
||||
pages: ''
|
||||
negate: null
|
||||
context_mapping: { }
|
||||
visibility: { }
|
||||
|
@ -1,26 +0,0 @@
|
||||
progress:
|
||||
'#changed': 1626258737
|
||||
'#changed_by': '1'
|
||||
'#completed_items': 7
|
||||
'#items':
|
||||
responsibility_agreement:
|
||||
'#completed': 1626252228
|
||||
'#uid': '1'
|
||||
recommended_resources:
|
||||
'#completed': 1626252228
|
||||
'#uid': '1'
|
||||
data1:
|
||||
'#completed': 1626256183
|
||||
'#uid': '1'
|
||||
external_traffic_measurement:
|
||||
'#completed': 1626258737
|
||||
'#uid': '1'
|
||||
social_media_connections:
|
||||
'#completed': 1626258737
|
||||
'#uid': '1'
|
||||
module_data_collection:
|
||||
'#completed': 1626258737
|
||||
'#uid': '1'
|
||||
user_role_permissions:
|
||||
'#completed': 1626258737
|
||||
'#uid': '1'
|
@ -5,84 +5,48 @@ dependencies:
|
||||
module:
|
||||
- commerce_payment
|
||||
- commerce_promotion
|
||||
- commerce_stripe
|
||||
- email_registration
|
||||
- materio_commerce
|
||||
id: materio_checkout_flow
|
||||
label: 'materio checkout flow'
|
||||
plugin: multistep_default
|
||||
configuration:
|
||||
display_checkout_progress: true
|
||||
display_checkout_progress_breadcrumb_links: true
|
||||
panes:
|
||||
login:
|
||||
allow_guest_checkout: false
|
||||
allow_registration: true
|
||||
step: login
|
||||
weight: 10
|
||||
review:
|
||||
step: review
|
||||
weight: 10
|
||||
completion_message:
|
||||
step: complete
|
||||
weight: 10
|
||||
completion_register:
|
||||
step: complete
|
||||
weight: 10
|
||||
order_summary:
|
||||
view: ''
|
||||
step: _sidebar
|
||||
weight: 10
|
||||
contact_information:
|
||||
double_entry: false
|
||||
step: order_information
|
||||
weight: 0
|
||||
allow_guest_checkout: true
|
||||
allow_registration: false
|
||||
payment_information:
|
||||
step: order_information
|
||||
weight: 1
|
||||
materio_commerce_agree_terms:
|
||||
path:
|
||||
route_name: materio_commerce.terms_viewer
|
||||
route_parameters: { }
|
||||
link_text: 'Terms and Conditions'
|
||||
prefix_text: 'I agree with the %terms'
|
||||
invalid_text: 'You must agree with the %terms before continuing'
|
||||
new_window: '1'
|
||||
step: order_information
|
||||
weight: 2
|
||||
nid: '1'
|
||||
materio_commerce_agree_nominative:
|
||||
path: /pricing/multijoueur
|
||||
text: "I have taken note that the membership of materialO 'is exclusively nominative. \r\nThe use of an account by more than one person is not allowed.\r\nI can fill the %multi form for multi user order."
|
||||
link_text: Multi-Joueurs
|
||||
invalid_text: 'You must agree with the nominative terms before continuing'
|
||||
step: order_information
|
||||
weight: 3
|
||||
prefix_text: 'I agree with the %terms'
|
||||
new_window: '1'
|
||||
nid: '1'
|
||||
review:
|
||||
step: review
|
||||
weight: 4
|
||||
stripe_review:
|
||||
button_id: edit-actions-next
|
||||
step: review
|
||||
weight: 5
|
||||
weight: 10
|
||||
payment_process:
|
||||
capture: true
|
||||
step: payment
|
||||
weight: 6
|
||||
completion_message:
|
||||
message:
|
||||
value: "<p class=\"welcom\">[current-user:customer:address:given_name] [current-user:customer:address:family_name] thank you and welcome to <strong>[site:name]</strong>!</p>\r\n\r\n<p>Once your order is confirmed, you have access to more than 10,000 inspiring and innovative material sheets!</p>\r\n"
|
||||
format: wysiwyg
|
||||
step: complete
|
||||
weight: 7
|
||||
order_summary:
|
||||
view: commerce_checkout_order_summary
|
||||
step: _sidebar
|
||||
weight: 8
|
||||
weight: 10
|
||||
payment_information:
|
||||
step: order_information
|
||||
weight: 10
|
||||
coupon_redemption:
|
||||
allow_multiple: false
|
||||
step: _sidebar
|
||||
weight: 9
|
||||
weight: 10
|
||||
email_registration_login:
|
||||
allow_guest_checkout: true
|
||||
allow_registration: false
|
||||
step: _disabled
|
||||
weight: 10
|
||||
email_registration_completion_registration:
|
||||
step: _disabled
|
||||
weight: 11
|
||||
completion_register:
|
||||
step: _disabled
|
||||
weight: 12
|
||||
login:
|
||||
allow_guest_checkout: true
|
||||
allow_registration: false
|
||||
step: _disabled
|
||||
weight: 13
|
||||
|
@ -1,13 +0,0 @@
|
||||
uuid: 2fef55d7-b4f1-4e46-8b78-8a66a24cbe46
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
id: order_default
|
||||
label: Default
|
||||
targetEntityType: commerce_order
|
||||
plugin: infinite
|
||||
configuration:
|
||||
pattern: '[pattern:number]'
|
||||
initial_number: 1
|
||||
padding: 0
|
||||
per_store_sequence: true
|
@ -9,13 +9,11 @@ third_party_settings:
|
||||
commerce_cart:
|
||||
cart_form_view: commerce_cart_form
|
||||
cart_block_view: commerce_cart_block
|
||||
cart_expiration: { }
|
||||
commerce_checkout:
|
||||
checkout_flow: materio_checkout_flow
|
||||
label: 'materio order type'
|
||||
id: materio_order_type
|
||||
workflow: order_default
|
||||
numberPattern: order_default
|
||||
refresh_mode: customer
|
||||
refresh_frequency: 300
|
||||
sendReceipt: true
|
||||
|
@ -1 +0,0 @@
|
||||
log_version_mismatch: true
|
@ -0,0 +1,22 @@
|
||||
uuid: 9fd9ac25-5b14-4630-a056-546da6b3b418
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- commerce_cmcic
|
||||
id: cm_cic
|
||||
label: CM-CIC
|
||||
weight: null
|
||||
plugin: commerce_cmcic
|
||||
configuration:
|
||||
display_label: CM-CIC
|
||||
mode: test
|
||||
payment_method_types:
|
||||
- credit_card
|
||||
bank_type: cic
|
||||
version: '3.0'
|
||||
security_key: 7C86189FA72DA637A722BB395BFB9D403D3C70P7
|
||||
tpe: '6277685'
|
||||
company: materio
|
||||
conditions: { }
|
||||
conditionOperator: AND
|
@ -1,25 +0,0 @@
|
||||
uuid: f8318796-0261-48b2-9f16-0b127f0cd47f
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies: { }
|
||||
id: manual
|
||||
label: Manuel
|
||||
weight: null
|
||||
plugin: manual
|
||||
configuration:
|
||||
instructions:
|
||||
value: "Paiement par chèque: à l’ordre de matériO’, et à envoyer à \r\nmatériO’ SAS \r\n8, rue Chaptal \r\n75009 Paris \r\nFrance\r\n\r\nPaiement par virement: \r\nIBAN : FR76 3006 6106 6100 0104 4360 109\r\nBIC : CMCIFRPP\r\n\r\nVotre accès à la base sera activé dès réception de votre paiement.\r\n"
|
||||
format: plain_text
|
||||
display_label: 'Virement ou chèque'
|
||||
mode: n/a
|
||||
payment_method_types:
|
||||
- credit_card
|
||||
collect_billing_information: true
|
||||
conditions:
|
||||
-
|
||||
plugin: 'order_purchased_entity:commerce_product_variation'
|
||||
configuration:
|
||||
entities:
|
||||
4: 2eb9460f-5816-4cda-8fb5-aca553d7d473
|
||||
6: 56bbfeba-a2af-4e97-b04a-9ac31f24c6b9
|
||||
conditionOperator: AND
|
@ -1,20 +0,0 @@
|
||||
uuid: e41e2a00-d6e1-4a9b-add4-058e4fbde0d2
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- commerce_stripe
|
||||
id: stripe
|
||||
label: Stripe
|
||||
weight: -10
|
||||
plugin: stripe
|
||||
configuration:
|
||||
publishable_key: pk_test_51I7RAuBp8BkjanLQtX3lktLLC3PIOkzKVqPqijC9GZz1XD2PHLZHEQOSJzjVnvxO2aMuk0mQybVZnNnLsJDSWMP800VENEIUqZ
|
||||
secret_key: sk_test_51I7RAuBp8BkjanLQSwUpyIDFUwvWgXjsJZHI5HAcZK9XCe3Gw1BuhxvvgZccv5Feb6jAo8ZskId2K5Oy4IIUsOQP00Mb4LdMfO
|
||||
display_label: Stripe
|
||||
mode: test
|
||||
payment_method_types:
|
||||
- credit_card
|
||||
collect_billing_information: true
|
||||
conditions: { }
|
||||
conditionOperator: AND
|
@ -8,7 +8,7 @@ third_party_settings:
|
||||
commerce_license:
|
||||
license_types:
|
||||
role: role
|
||||
activate_on_place: false
|
||||
activate_on_place: true
|
||||
id: materio_product_variation_type
|
||||
label: 'materio product variation type'
|
||||
orderItemType: materio_order_item_type
|
||||
|
3
config/sync/commerce_store.settings.yml
Normal file
3
config/sync/commerce_store.settings.yml
Normal file
@ -0,0 +1,3 @@
|
||||
default_store: bb23cf22-6a06-4f8d-88fc-0998f15ff2d0
|
||||
_core:
|
||||
default_config_hash: B9ZFGR76POyzj9f3Sh66F346_Jp-wnnUc78Hk3Q-60o
|
@ -6,4 +6,4 @@ id: eu
|
||||
label: EU
|
||||
plugin: european_union_vat
|
||||
configuration:
|
||||
display_inclusive: false
|
||||
display_inclusive: true
|
||||
|
@ -1,17 +1,7 @@
|
||||
ignored_config_entities:
|
||||
- system.performance
|
||||
- devel.settings
|
||||
- piwik.settings
|
||||
- 'flag.flag.*'
|
||||
- 'system.action.flag_action.*'
|
||||
- ~flag.flag.dossier
|
||||
- ~flag_lists.flag_for_list.dossier.yml
|
||||
- ~system.action.flag_action.dossier_flag.yml
|
||||
- ~system.action.flag_action.dossier_unflag.yml
|
||||
- ~flag.flag.flag_list_template_1.yml
|
||||
- ~flag_lists.flag_for_list.flag_list_template_1.yml
|
||||
- ~system.action.flag_action.flag_list_template_1_flag.yml
|
||||
- ~system.action.flag_action.flag_list_template_1_unflag.yml
|
||||
0: system.performance
|
||||
2: devel.settings
|
||||
4: piwik.settings
|
||||
langcode: fr
|
||||
_core:
|
||||
default_config_hash: IullHNodatpZ32WixustQwIfzdZVNNBx8cz0-RYLSa8
|
||||
|
@ -1,17 +0,0 @@
|
||||
uuid: f6f21b8c-e8ca-4a8a-ba93-abe3faf27ec6
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies: { }
|
||||
id: privacy_policy
|
||||
label: 'Privacy Policy'
|
||||
context:
|
||||
show_warning: true
|
||||
group:
|
||||
language: true
|
||||
fallback:
|
||||
language: ''
|
||||
menu:
|
||||
path: /admin/content/pp
|
||||
weight: 0
|
||||
description: ''
|
||||
token: false
|
@ -1,17 +0,0 @@
|
||||
uuid: 689d8780-02a4-4787-bf07-ab36c5ff7454
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies: { }
|
||||
id: terms_of_services
|
||||
label: 'Terms of services'
|
||||
context:
|
||||
show_warning: true
|
||||
group:
|
||||
language: true
|
||||
fallback:
|
||||
language: ''
|
||||
menu:
|
||||
path: /admin/content/tos
|
||||
weight: 0
|
||||
description: ''
|
||||
token: false
|
@ -11,7 +11,6 @@ module:
|
||||
context_ui: 0
|
||||
dblog: 0
|
||||
devel: 0
|
||||
devel_generate: 0
|
||||
entity_clone: 0
|
||||
views_ui: 0
|
||||
webprofiler: 0
|
||||
|
@ -8,8 +8,6 @@ description: ''
|
||||
folder: ../config/prod
|
||||
module:
|
||||
matomo: 0
|
||||
pwa: 0
|
||||
pwa_extras: 0
|
||||
theme: { }
|
||||
blacklist: { }
|
||||
graylist: { }
|
||||
|
@ -1,16 +1,14 @@
|
||||
uuid: eabce79f-6b0c-4e68-824f-52569c9fb2d0
|
||||
langcode: en
|
||||
status: false
|
||||
status: true
|
||||
dependencies: { }
|
||||
id: stage
|
||||
label: Stage
|
||||
description: ''
|
||||
folder: ../config/stage
|
||||
folder: ''
|
||||
module:
|
||||
devel: 0
|
||||
devel_generate: 0
|
||||
pwa: 0
|
||||
pwa_extras: 0
|
||||
theme: { }
|
||||
blacklist: { }
|
||||
graylist: { }
|
||||
|
@ -2,6 +2,6 @@ default_form: feedback
|
||||
flood:
|
||||
limit: 5
|
||||
interval: 3600
|
||||
user_default_enabled: false
|
||||
user_default_enabled: true
|
||||
_core:
|
||||
default_config_hash: U69DBeuvXuNVOC15rVNaBjDPK2fWFbo9v4takdYSSO8
|
||||
|
@ -1,18 +0,0 @@
|
||||
uuid: 6a3c58fc-2e5b-40d2-9cb0-6b5d989fc71a
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- commerce_product.commerce_product_type.default
|
||||
id: commerce_product.default.changed
|
||||
field_name: changed
|
||||
entity_type: commerce_product
|
||||
bundle: default
|
||||
label: Modifié
|
||||
description: 'The time when the product was last edited.'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings: { }
|
||||
field_type: changed
|
@ -1,18 +0,0 @@
|
||||
uuid: 77c85057-1c5c-4876-b514-2ab600cbf6b4
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- commerce_product.commerce_product_type.default
|
||||
id: commerce_product.default.created
|
||||
field_name: created
|
||||
entity_type: commerce_product
|
||||
bundle: default
|
||||
label: Créé
|
||||
description: 'The time when the product was created.'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings: { }
|
||||
field_type: created
|
@ -1,20 +0,0 @@
|
||||
uuid: f6633354-6a2b-4ec4-b114-610fe18f28b6
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- commerce_product.commerce_product_type.default
|
||||
module:
|
||||
- path
|
||||
id: commerce_product.default.path
|
||||
field_name: path
|
||||
entity_type: commerce_product
|
||||
bundle: default
|
||||
label: 'Alias d''URL'
|
||||
description: 'The product URL alias.'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings: { }
|
||||
field_type: path
|
@ -1,22 +0,0 @@
|
||||
uuid: 3740f152-816b-40fc-9219-c96a9ddbaff9
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- commerce_product.commerce_product_type.default
|
||||
id: commerce_product.default.status
|
||||
field_name: status
|
||||
entity_type: commerce_product
|
||||
bundle: default
|
||||
label: Publié
|
||||
description: ''
|
||||
required: false
|
||||
translatable: false
|
||||
default_value:
|
||||
-
|
||||
value: 1
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
on_label: Activé
|
||||
off_label: Désactivé
|
||||
field_type: boolean
|
@ -1,20 +0,0 @@
|
||||
uuid: a5a9c5fa-7b8b-4441-a208-96b062c8d135
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- commerce_product.commerce_product_type.default
|
||||
id: commerce_product.default.uid
|
||||
field_name: uid
|
||||
entity_type: commerce_product
|
||||
bundle: default
|
||||
label: Auteur
|
||||
description: 'L''auteur du produit.'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: 'Drupal\commerce_product\Entity\Product::getDefaultEntityOwner'
|
||||
settings:
|
||||
handler: default
|
||||
handler_settings: { }
|
||||
field_type: entity_reference
|
@ -1,18 +0,0 @@
|
||||
uuid: 038bb662-ec4a-4e32-a750-9b07b0c96f5a
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- commerce_product.commerce_product_type.materio_product_type
|
||||
id: commerce_product.materio_product_type.changed
|
||||
field_name: changed
|
||||
entity_type: commerce_product
|
||||
bundle: materio_product_type
|
||||
label: Modifié
|
||||
description: 'The time when the product was last edited.'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings: { }
|
||||
field_type: changed
|
@ -1,18 +0,0 @@
|
||||
uuid: 7d6bfc53-c873-4b55-be54-206774a05d66
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- commerce_product.commerce_product_type.materio_product_type
|
||||
id: commerce_product.materio_product_type.created
|
||||
field_name: created
|
||||
entity_type: commerce_product
|
||||
bundle: materio_product_type
|
||||
label: Créé
|
||||
description: 'The time when the product was created.'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings: { }
|
||||
field_type: created
|
@ -1,20 +0,0 @@
|
||||
uuid: 16bf42be-b3b9-4aa3-92ab-9e15b9690535
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- commerce_product.commerce_product_type.materio_product_type
|
||||
module:
|
||||
- path
|
||||
id: commerce_product.materio_product_type.path
|
||||
field_name: path
|
||||
entity_type: commerce_product
|
||||
bundle: materio_product_type
|
||||
label: 'Alias d''URL'
|
||||
description: 'The product URL alias.'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings: { }
|
||||
field_type: path
|
@ -1,22 +0,0 @@
|
||||
uuid: eae8fe01-d2ac-4de2-8aaf-f5047349b686
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- commerce_product.commerce_product_type.materio_product_type
|
||||
id: commerce_product.materio_product_type.status
|
||||
field_name: status
|
||||
entity_type: commerce_product
|
||||
bundle: materio_product_type
|
||||
label: Publié
|
||||
description: ''
|
||||
required: false
|
||||
translatable: false
|
||||
default_value:
|
||||
-
|
||||
value: 1
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
on_label: Activé
|
||||
off_label: Désactivé
|
||||
field_type: boolean
|
@ -1,20 +0,0 @@
|
||||
uuid: e8db3c03-a361-4f48-b802-437f2e67d1fb
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- commerce_product.commerce_product_type.materio_product_type
|
||||
id: commerce_product.materio_product_type.uid
|
||||
field_name: uid
|
||||
entity_type: commerce_product
|
||||
bundle: materio_product_type
|
||||
label: Auteur
|
||||
description: 'L''auteur du produit.'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: 'Drupal\commerce_product\Entity\Product::getDefaultEntityOwner'
|
||||
settings:
|
||||
handler: default
|
||||
handler_settings: { }
|
||||
field_type: entity_reference
|
@ -1,18 +0,0 @@
|
||||
uuid: 9dee2c52-68a2-48ad-897d-140a8775da71
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- commerce_product.commerce_product_variation_type.default
|
||||
id: commerce_product_variation.default.changed
|
||||
field_name: changed
|
||||
entity_type: commerce_product_variation
|
||||
bundle: default
|
||||
label: Changed
|
||||
description: 'The time when the variation was last edited.'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings: { }
|
||||
field_type: changed
|
@ -1,18 +0,0 @@
|
||||
uuid: c177943c-5c6a-4de1-bb92-52d7f8b2dfdb
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- commerce_product.commerce_product_variation_type.default
|
||||
id: commerce_product_variation.default.created
|
||||
field_name: created
|
||||
entity_type: commerce_product_variation
|
||||
bundle: default
|
||||
label: Created
|
||||
description: 'The time when the variation was created.'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings: { }
|
||||
field_type: created
|
@ -1,22 +0,0 @@
|
||||
uuid: 11ace372-b3d0-4ed6-8a9a-467ab095571d
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- commerce_product.commerce_product_variation_type.default
|
||||
id: commerce_product_variation.default.status
|
||||
field_name: status
|
||||
entity_type: commerce_product_variation
|
||||
bundle: default
|
||||
label: Published
|
||||
description: ''
|
||||
required: false
|
||||
translatable: false
|
||||
default_value:
|
||||
-
|
||||
value: 1
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
on_label: 'On'
|
||||
off_label: 'Off'
|
||||
field_type: boolean
|
@ -1,18 +0,0 @@
|
||||
uuid: 2cb1f0f8-8678-46f9-b883-160a51dd5777
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- commerce_product.commerce_product_variation_type.default
|
||||
id: commerce_product_variation.default.title
|
||||
field_name: title
|
||||
entity_type: commerce_product_variation
|
||||
bundle: default
|
||||
label: Title
|
||||
description: 'The variation title.'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings: { }
|
||||
field_type: string
|
@ -1,20 +0,0 @@
|
||||
uuid: 9e0f3894-7c13-4d69-ac56-312c4ca6a7bb
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- commerce_product.commerce_product_variation_type.default
|
||||
id: commerce_product_variation.default.uid
|
||||
field_name: uid
|
||||
entity_type: commerce_product_variation
|
||||
bundle: default
|
||||
label: Author
|
||||
description: 'The variation author.'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: 'Drupal\commerce_product\Entity\ProductVariation::getDefaultEntityOwner'
|
||||
settings:
|
||||
handler: default
|
||||
handler_settings: { }
|
||||
field_type: entity_reference
|
@ -1,18 +0,0 @@
|
||||
uuid: b8278e91-ee9e-470f-93a9-ffd79d870163
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- commerce_product.commerce_product_variation_type.materio_product_variation_type
|
||||
id: commerce_product_variation.materio_product_variation_type.changed
|
||||
field_name: changed
|
||||
entity_type: commerce_product_variation
|
||||
bundle: materio_product_variation_type
|
||||
label: Changed
|
||||
description: 'The time when the variation was last edited.'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings: { }
|
||||
field_type: changed
|
@ -1,18 +0,0 @@
|
||||
uuid: a5444ccb-b3c8-4019-b361-5a6d16757e18
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- commerce_product.commerce_product_variation_type.materio_product_variation_type
|
||||
id: commerce_product_variation.materio_product_variation_type.created
|
||||
field_name: created
|
||||
entity_type: commerce_product_variation
|
||||
bundle: materio_product_variation_type
|
||||
label: Created
|
||||
description: 'The time when the variation was created.'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings: { }
|
||||
field_type: created
|
@ -1,22 +0,0 @@
|
||||
uuid: 5dfa307e-e602-4f22-9bb9-cca9cfa58af9
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- commerce_product.commerce_product_variation_type.materio_product_variation_type
|
||||
id: commerce_product_variation.materio_product_variation_type.status
|
||||
field_name: status
|
||||
entity_type: commerce_product_variation
|
||||
bundle: materio_product_variation_type
|
||||
label: Published
|
||||
description: ''
|
||||
required: false
|
||||
translatable: false
|
||||
default_value:
|
||||
-
|
||||
value: 1
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
on_label: 'On'
|
||||
off_label: 'Off'
|
||||
field_type: boolean
|
@ -1,18 +0,0 @@
|
||||
uuid: e165fb64-ae62-47b9-9012-b0f20be7e3fe
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- commerce_product.commerce_product_variation_type.materio_product_variation_type
|
||||
id: commerce_product_variation.materio_product_variation_type.title
|
||||
field_name: title
|
||||
entity_type: commerce_product_variation
|
||||
bundle: materio_product_variation_type
|
||||
label: Title
|
||||
description: 'The variation title.'
|
||||
required: true
|
||||
translatable: true
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings: { }
|
||||
field_type: string
|
@ -1,20 +0,0 @@
|
||||
uuid: f6b4e2d4-bc7a-4960-b2e7-487cf1264873
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- commerce_product.commerce_product_variation_type.materio_product_variation_type
|
||||
id: commerce_product_variation.materio_product_variation_type.uid
|
||||
field_name: uid
|
||||
entity_type: commerce_product_variation
|
||||
bundle: materio_product_variation_type
|
||||
label: Author
|
||||
description: 'The variation author.'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: 'Drupal\commerce_product\Entity\ProductVariation::getDefaultEntityOwner'
|
||||
settings:
|
||||
handler: default
|
||||
handler_settings: { }
|
||||
field_type: entity_reference
|
@ -1,20 +0,0 @@
|
||||
uuid: 4c4d32da-e167-4429-a6a8-e64919f1fd4d
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- commerce_promotion
|
||||
id: commerce_promotion.commerce_promotion.description
|
||||
field_name: description
|
||||
entity_type: commerce_promotion
|
||||
bundle: commerce_promotion
|
||||
label: Description
|
||||
description: 'Additional information about the promotion to show to the customer'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value:
|
||||
-
|
||||
value: ''
|
||||
default_value_callback: ''
|
||||
settings: { }
|
||||
field_type: string_long
|
@ -1,18 +0,0 @@
|
||||
uuid: 12d95ee0-8fd9-4dd7-8646-4bd9b9e7f3ec
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- commerce_promotion
|
||||
id: commerce_promotion.commerce_promotion.display_name
|
||||
field_name: display_name
|
||||
entity_type: commerce_promotion
|
||||
bundle: commerce_promotion
|
||||
label: 'Nom de l''affichage'
|
||||
description: 'If provided, shown on the order instead of "Discount".'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings: { }
|
||||
field_type: string
|
@ -1,18 +0,0 @@
|
||||
uuid: 4ff81977-7ace-494e-8561-8780f3621fac
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- commerce_promotion
|
||||
id: commerce_promotion.commerce_promotion.name
|
||||
field_name: name
|
||||
entity_type: commerce_promotion
|
||||
bundle: commerce_promotion
|
||||
label: Nom
|
||||
description: 'The promotion name.'
|
||||
required: true
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings: { }
|
||||
field_type: string
|
@ -1,20 +0,0 @@
|
||||
uuid: 25da7bea-24c6-40b6-82d4-eb2e05cd213a
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- commerce_store.commerce_store_type.online
|
||||
id: commerce_store.online.default_currency
|
||||
field_name: default_currency
|
||||
entity_type: commerce_store
|
||||
bundle: online
|
||||
label: 'Default currency'
|
||||
description: 'The default currency of the store.'
|
||||
required: true
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
handler: default
|
||||
handler_settings: { }
|
||||
field_type: entity_reference
|
@ -1,18 +0,0 @@
|
||||
uuid: 597cc6b9-f7c0-4c9f-94cd-35fc127532f4
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- commerce_store.commerce_store_type.online
|
||||
id: commerce_store.online.name
|
||||
field_name: name
|
||||
entity_type: commerce_store
|
||||
bundle: online
|
||||
label: Name
|
||||
description: 'The store name.'
|
||||
required: true
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings: { }
|
||||
field_type: string
|
@ -1,20 +0,0 @@
|
||||
uuid: f4d6896b-2b30-4bda-ac40-84079cceb5a7
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- commerce_store.commerce_store_type.online
|
||||
module:
|
||||
- path
|
||||
id: commerce_store.online.path
|
||||
field_name: path
|
||||
entity_type: commerce_store
|
||||
bundle: online
|
||||
label: 'URL alias'
|
||||
description: 'The store URL alias.'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings: { }
|
||||
field_type: path
|
@ -1,20 +0,0 @@
|
||||
uuid: ac9a43ee-8971-4ee3-9c49-77b678bad732
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- commerce_store.commerce_store_type.online
|
||||
id: commerce_store.online.uid
|
||||
field_name: uid
|
||||
entity_type: commerce_store
|
||||
bundle: online
|
||||
label: Propriétaire
|
||||
description: 'The store owner.'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: 'Drupal\commerce_store\Entity\Store::getDefaultEntityOwner'
|
||||
settings:
|
||||
handler: default
|
||||
handler_settings: { }
|
||||
field_type: entity_reference
|
@ -1,18 +0,0 @@
|
||||
uuid: bb585f30-df0d-4592-afe4-9eca24729056
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- consumers
|
||||
id: consumer.consumer.description
|
||||
field_name: description
|
||||
entity_type: consumer
|
||||
bundle: consumer
|
||||
label: Description
|
||||
description: 'A description of the consumer. This text will be shown to the users to authorize sharing their data to create an access token.'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings: { }
|
||||
field_type: string_long
|
@ -1,36 +0,0 @@
|
||||
uuid: a5fbd09e-fe25-4c90-8ea9-cec12b19fd00
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- consumers
|
||||
- image
|
||||
id: consumer.consumer.image
|
||||
field_name: image
|
||||
entity_type: consumer
|
||||
bundle: consumer
|
||||
label: Logo
|
||||
description: 'Logo of the consumer.'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
file_extensions: 'png gif jpg jpeg'
|
||||
alt_field: true
|
||||
alt_field_required: true
|
||||
title_field: false
|
||||
title_field_required: false
|
||||
max_resolution: ''
|
||||
min_resolution: ''
|
||||
default_image:
|
||||
uuid: null
|
||||
alt: ''
|
||||
title: ''
|
||||
width: null
|
||||
height: null
|
||||
file_directory: '[date:custom:Y]-[date:custom:m]'
|
||||
max_filesize: ''
|
||||
handler: default
|
||||
handler_settings: { }
|
||||
field_type: image
|
@ -1,22 +0,0 @@
|
||||
uuid: 12b20375-e721-4b61-bd63-79fafabc7120
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- consumers
|
||||
id: consumer.consumer.is_default
|
||||
field_name: is_default
|
||||
entity_type: consumer
|
||||
bundle: consumer
|
||||
label: 'Is this the default consumer?'
|
||||
description: 'There can only be one default consumer. Mark this to use this consumer when none other applies.'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value:
|
||||
-
|
||||
value: 0
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
on_label: 'On'
|
||||
off_label: 'Off'
|
||||
field_type: boolean
|
@ -1,18 +0,0 @@
|
||||
uuid: 45e76188-fc99-498a-aa5e-ee9b35f1bb0f
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- consumers
|
||||
id: consumer.consumer.label
|
||||
field_name: label
|
||||
entity_type: consumer
|
||||
bundle: consumer
|
||||
label: Label
|
||||
description: 'The consumer label.'
|
||||
required: true
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings: { }
|
||||
field_type: string
|
@ -1,20 +0,0 @@
|
||||
uuid: 4462bbde-2ade-4f26-a28a-0f2a9ae2f6fe
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- consumers
|
||||
id: consumer.consumer.owner_id
|
||||
field_name: owner_id
|
||||
entity_type: consumer
|
||||
bundle: consumer
|
||||
label: 'User ID'
|
||||
description: ''
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: 'Drupal\consumers\Entity\Consumer::getDefaultEntityOwner'
|
||||
settings:
|
||||
handler: default
|
||||
handler_settings: { }
|
||||
field_type: entity_reference
|
@ -1,22 +0,0 @@
|
||||
uuid: ddf4a4a5-a6e0-40b2-bf1b-d6643e180ed5
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- consumers
|
||||
id: consumer.consumer.third_party
|
||||
field_name: third_party
|
||||
entity_type: consumer
|
||||
bundle: consumer
|
||||
label: 'Is this consumer 3rd party?'
|
||||
description: 'Mark this if the organization behind this consumer is not the same as the one behind the Drupal API.'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value:
|
||||
-
|
||||
value: 1
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
on_label: 'On'
|
||||
off_label: 'Off'
|
||||
field_type: boolean
|
@ -1,20 +0,0 @@
|
||||
uuid: 707b2946-6937-4a85-8b0f-396f57489133
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- flag_lists
|
||||
id: flag_list_item.flag_list_item.user_id
|
||||
field_name: user_id
|
||||
entity_type: flag_list_item
|
||||
bundle: flag_list_item
|
||||
label: 'Écrit par'
|
||||
description: 'The user ID of author of the Flag list item entity.'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
handler: default
|
||||
handler_settings: { }
|
||||
field_type: entity_reference
|
@ -1,20 +0,0 @@
|
||||
uuid: 836a8431-ec09-4de1-9cd4-817f7f3a3300
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- flag_lists.flagging_collection_type.flagging_collection_type_1
|
||||
id: flagging_collection.flagging_collection_type_1.relatedflag
|
||||
field_name: relatedflag
|
||||
entity_type: flagging_collection
|
||||
bundle: flagging_collection_type_1
|
||||
label: 'Related flag'
|
||||
description: 'The related flag used for for this list'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
handler: default
|
||||
handler_settings: { }
|
||||
field_type: entity_reference
|
@ -1,20 +0,0 @@
|
||||
uuid: 3609dd9c-85eb-4dc4-b4da-e48836e465a5
|
||||
langcode: fr
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- flag_lists.flagging_collection_type.flagging_collection_type_1
|
||||
id: flagging_collection.flagging_collection_type_1.templateflag
|
||||
field_name: templateflag
|
||||
entity_type: flagging_collection
|
||||
bundle: flagging_collection_type_1
|
||||
label: 'Base flag'
|
||||
description: 'The flag list used as base'
|
||||
required: false
|
||||
translatable: false
|
||||
default_value: { }
|
||||
default_value_callback: ''
|
||||
settings:
|
||||
handler: default
|
||||
handler_settings: { }
|
||||
field_type: entity_reference
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user