From 165527c1d889b28c1c1d9a9ab0477b34a1134d4e Mon Sep 17 00:00:00 2001 From: Arnold Peter Date: Wed, 20 Sep 2017 11:42:52 +0300 Subject: [PATCH] Added Commerce module with dependencies. See #19. --- composer.json | 3 +- composer.lock | 866 ++++++++++++--- ...order.commerce_order_item_type.default.yml | 14 + ...erce_order.commerce_order_type.default.yml | 14 + ..._product.commerce_product_type.default.yml | 12 + ...ommerce_product_variation_type.default.yml | 11 + ...merce_store.commerce_store_type.online.yml | 10 + config/sync/commerce_store.settings.yml | 3 + ...display.commerce_order.default.default.yml | 50 + ...ay.commerce_order_item.default.default.yml | 46 + ...splay.commerce_product.default.default.yml | 96 ++ ...erce_product_variation.default.default.yml | 45 + ..._form_display.profile.customer.default.yml | 26 + ...display.commerce_order.default.default.yml | 95 ++ ...ew_display.commerce_order.default.user.yml | 89 ++ ...ay.commerce_order_item.default.default.yml | 58 ++ ...splay.commerce_product.default.default.yml | 41 + ..._display.commerce_store.online.default.yml | 28 + ..._view_display.profile.customer.default.yml | 27 + ...e.entity_view_mode.commerce_order.user.yml | 12 + config/sync/core.extension.yml | 11 + ...eld.commerce_order.default.order_items.yml | 23 + ...ld.field.commerce_product.default.body.yml | 24 + ....field.commerce_product.default.stores.yml | 23 + ...ld.commerce_product.default.variations.yml | 26 + .../field.field.profile.customer.address.yml | 37 + ...eld.field.user.user.commerce_remote_id.yml | 26 + ...eld.storage.commerce_order.order_items.yml | 21 + .../field.storage.commerce_product.body.yml | 21 + .../field.storage.commerce_product.stores.yml | 22 + ...ld.storage.commerce_product.variations.yml | 21 + config/sync/field.storage.profile.address.yml | 24 + .../field.storage.user.commerce_remote_id.yml | 24 + config/sync/profile.type.customer.yml | 17 + ...em.action.commerce_order_delete_action.yml | 16 + ....action.commerce_product_delete_action.yml | 16 + ...system.action.commerce_publish_product.yml | 13 + ...em.action.commerce_store_delete_action.yml | 16 + ...stem.action.commerce_unpublish_product.yml | 13 + .../system.action.profile_delete_action.yml | 13 + .../system.action.profile_publish_action.yml | 13 + ...system.action.profile_unpublish_action.yml | 13 + config/sync/user.role.anonymous.yml | 1 + config/sync/user.role.authenticated.yml | 1 + .../views.view.commerce_order_item_table.yml | 400 +++++++ config/sync/views.view.commerce_orders.yml | 983 ++++++++++++++++++ config/sync/views.view.commerce_products.yml | 629 +++++++++++ config/sync/views.view.commerce_stores.yml | 439 ++++++++ .../sync/views.view.commerce_user_orders.yml | 596 +++++++++++ config/sync/views.view.profiles.yml | 384 +++++++ 50 files changed, 5267 insertions(+), 145 deletions(-) create mode 100644 config/sync/commerce_order.commerce_order_item_type.default.yml create mode 100644 config/sync/commerce_order.commerce_order_type.default.yml create mode 100644 config/sync/commerce_product.commerce_product_type.default.yml create mode 100644 config/sync/commerce_product.commerce_product_variation_type.default.yml create mode 100644 config/sync/commerce_store.commerce_store_type.online.yml create mode 100644 config/sync/commerce_store.settings.yml create mode 100644 config/sync/core.entity_form_display.commerce_order.default.default.yml create mode 100644 config/sync/core.entity_form_display.commerce_order_item.default.default.yml create mode 100644 config/sync/core.entity_form_display.commerce_product.default.default.yml create mode 100644 config/sync/core.entity_form_display.commerce_product_variation.default.default.yml create mode 100644 config/sync/core.entity_form_display.profile.customer.default.yml create mode 100644 config/sync/core.entity_view_display.commerce_order.default.default.yml create mode 100644 config/sync/core.entity_view_display.commerce_order.default.user.yml create mode 100644 config/sync/core.entity_view_display.commerce_order_item.default.default.yml create mode 100644 config/sync/core.entity_view_display.commerce_product.default.default.yml create mode 100644 config/sync/core.entity_view_display.commerce_store.online.default.yml create mode 100644 config/sync/core.entity_view_display.profile.customer.default.yml create mode 100644 config/sync/core.entity_view_mode.commerce_order.user.yml create mode 100644 config/sync/field.field.commerce_order.default.order_items.yml create mode 100644 config/sync/field.field.commerce_product.default.body.yml create mode 100644 config/sync/field.field.commerce_product.default.stores.yml create mode 100644 config/sync/field.field.commerce_product.default.variations.yml create mode 100644 config/sync/field.field.profile.customer.address.yml create mode 100644 config/sync/field.field.user.user.commerce_remote_id.yml create mode 100644 config/sync/field.storage.commerce_order.order_items.yml create mode 100644 config/sync/field.storage.commerce_product.body.yml create mode 100644 config/sync/field.storage.commerce_product.stores.yml create mode 100644 config/sync/field.storage.commerce_product.variations.yml create mode 100644 config/sync/field.storage.profile.address.yml create mode 100644 config/sync/field.storage.user.commerce_remote_id.yml create mode 100644 config/sync/profile.type.customer.yml create mode 100644 config/sync/system.action.commerce_order_delete_action.yml create mode 100644 config/sync/system.action.commerce_product_delete_action.yml create mode 100644 config/sync/system.action.commerce_publish_product.yml create mode 100644 config/sync/system.action.commerce_store_delete_action.yml create mode 100644 config/sync/system.action.commerce_unpublish_product.yml create mode 100644 config/sync/system.action.profile_delete_action.yml create mode 100644 config/sync/system.action.profile_publish_action.yml create mode 100644 config/sync/system.action.profile_unpublish_action.yml create mode 100644 config/sync/views.view.commerce_order_item_table.yml create mode 100644 config/sync/views.view.commerce_orders.yml create mode 100644 config/sync/views.view.commerce_products.yml create mode 100644 config/sync/views.view.commerce_stores.yml create mode 100644 config/sync/views.view.commerce_user_orders.yml create mode 100644 config/sync/views.view.profiles.yml diff --git a/composer.json b/composer.json index f76ce60..6ecfea7 100644 --- a/composer.json +++ b/composer.json @@ -21,6 +21,7 @@ "drupal-composer/drupal-scaffold": "^2.2", "drupal/addtoany": "^1.8", "drupal/admin_toolbar": "^1.19", + "drupal/commerce": "2.x-dev", "drupal/console": "~1.0", "drupal/core": "~8.0", "drupal/disqus": "^1.0@RC", @@ -31,9 +32,9 @@ "drupal/paragraphs": "^1.1", "drupal/pathauto": "^1.0", "drupal/redirect": "^1.0@alpha", + "drupal/search_api": "^1.1", "drupal/simple_sitemap": "^2.9", "drupal/yoast_seo": "^1.2", - "drupal/search_api": "^1.1", "drush/drush": "~8.0", "webflo/drupal-finder": "^0.2.1", "webmozart/path-util": "^2.3" diff --git a/composer.lock b/composer.lock index 8fa1c89..36eb7be 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,8 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "content-hash": "dd93aef38951382f71e5cee649b93d5c", + "hash": "2d774bd4cc2be42865155ee61e93810a", + "content-hash": "0e8b4b73810f06b53bf69b0c32c15344", "packages": [ { "name": "alchemy/zippy", @@ -68,7 +69,7 @@ "tar", "zip" ], - "time": "2016-11-03T16:10:31+00:00" + "time": "2016-11-03 16:10:31" }, { "name": "asm89/stack-cors", @@ -120,7 +121,152 @@ "cors", "stack" ], - "time": "2017-04-11T20:03:41+00:00" + "time": "2017-04-11 20:03:41" + }, + { + "name": "commerceguys/addressing", + "version": "v1.0.0-beta3", + "source": { + "type": "git", + "url": "https://github.com/commerceguys/addressing.git", + "reference": "615464980031d353865fd0a4b5da3acb3f567129" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/commerceguys/addressing/zipball/615464980031d353865fd0a4b5da3acb3f567129", + "reference": "615464980031d353865fd0a4b5da3acb3f567129", + "shasum": "" + }, + "require": { + "commerceguys/enum": "~1.0", + "doctrine/collections": "~1.0", + "php": ">=5.5.0" + }, + "require-dev": { + "mikey179/vfsstream": "1.*", + "phpunit/phpunit": "~4.0", + "squizlabs/php_codesniffer": "2.*", + "symfony/intl": ">=2.3", + "symfony/validator": ">=2.3" + }, + "suggest": { + "commerceguys/intl": "to use it as the source of country data", + "symfony/intl": "to use it as the source of country data", + "symfony/validator": "to validate addresses" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "CommerceGuys\\Addressing\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bojan Zivanovic" + }, + { + "name": "Damien Tournoud" + } + ], + "description": "Addressing library powered by Google's address data.", + "keywords": [ + "address", + "internationalization", + "localization", + "postal" + ], + "time": "2017-04-20 12:32:07" + }, + { + "name": "commerceguys/enum", + "version": "v1.0", + "source": { + "type": "git", + "url": "https://github.com/commerceguys/enum.git", + "reference": "1d9db2dbeb1a02500e7a14589ae2f9cb402c5c95" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/commerceguys/enum/zipball/1d9db2dbeb1a02500e7a14589ae2f9cb402c5c95", + "reference": "1d9db2dbeb1a02500e7a14589ae2f9cb402c5c95", + "shasum": "" + }, + "require": { + "php": ">=5.4.0" + }, + "require-dev": { + "phpunit/phpunit": "~4.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "CommerceGuys\\Enum\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bojan Zivanovic" + } + ], + "description": "A PHP 5.4+ enumeration library.", + "time": "2015-02-27 21:36:56" + }, + { + "name": "commerceguys/intl", + "version": "v0.7.4", + "source": { + "type": "git", + "url": "https://github.com/commerceguys/intl.git", + "reference": "edfcfc26ed8505c4f6fcf862eb36dfda1af74b00" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/commerceguys/intl/zipball/edfcfc26ed8505c4f6fcf862eb36dfda1af74b00", + "reference": "edfcfc26ed8505c4f6fcf862eb36dfda1af74b00", + "shasum": "" + }, + "require": { + "php": ">=5.4.0" + }, + "require-dev": { + "mikey179/vfsstream": "1.*", + "phpunit/phpunit": "~4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "0.x-dev" + } + }, + "autoload": { + "psr-4": { + "CommerceGuys\\Intl\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bojan Zivanovic" + } + ], + "description": "Internationalization library powered by CLDR data.", + "time": "2016-12-13 12:33:19" }, { "name": "composer/installers", @@ -237,7 +383,7 @@ "zend", "zikula" ], - "time": "2017-08-09T07:53:48+00:00" + "time": "2017-08-09 07:53:48" }, { "name": "composer/semver", @@ -299,20 +445,20 @@ "validation", "versioning" ], - "time": "2016-08-30T16:08:34+00:00" + "time": "2016-08-30 16:08:34" }, { "name": "consolidation/annotated-command", - "version": "2.4.13", + "version": "2.6.1", "source": { "type": "git", "url": "https://github.com/consolidation/annotated-command.git", - "reference": "abb685e42c83d0b698b4e22059e5d505588f7d3c" + "reference": "7a634471471b913e63888b64b626b544799db282" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/abb685e42c83d0b698b4e22059e5d505588f7d3c", - "reference": "abb685e42c83d0b698b4e22059e5d505588f7d3c", + "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/7a634471471b913e63888b64b626b544799db282", + "reference": "7a634471471b913e63888b64b626b544799db282", "shasum": "" }, "require": { @@ -351,7 +497,7 @@ } ], "description": "Initialize Symfony Console commands from annotated command class methods.", - "time": "2017-08-28T20:16:37+00:00" + "time": "2017-09-18 21:45:28" }, { "name": "consolidation/output-formatters", @@ -400,7 +546,7 @@ } ], "description": "Format text by applying transformations provided by plug-in formatters.", - "time": "2017-08-17T22:11:07+00:00" + "time": "2017-08-17 22:11:07" }, { "name": "cweagans/composer-patches", @@ -444,7 +590,7 @@ } ], "description": "Provides a way to patch Composer packages.", - "time": "2017-08-30T16:41:23+00:00" + "time": "2017-08-30 16:41:23" }, { "name": "dflydev/dot-access-configuration", @@ -504,7 +650,7 @@ "config", "configuration" ], - "time": "2014-11-14T03:26:12+00:00" + "time": "2014-11-14 03:26:12" }, { "name": "dflydev/dot-access-data", @@ -563,7 +709,7 @@ "dot", "notation" ], - "time": "2017-01-20T21:14:22+00:00" + "time": "2017-01-20 21:14:22" }, { "name": "dflydev/placeholder-resolver", @@ -615,7 +761,7 @@ "placeholder", "resolver" ], - "time": "2012-10-28T21:08:28+00:00" + "time": "2012-10-28 21:08:28" }, { "name": "dnoegel/php-xdg-base-dir", @@ -648,7 +794,7 @@ "MIT" ], "description": "implementation of xdg base directory specification for php", - "time": "2014-10-24T07:27:01+00:00" + "time": "2014-10-24 07:27:01" }, { "name": "doctrine/annotations", @@ -716,7 +862,7 @@ "docblock", "parser" ], - "time": "2015-08-31T12:32:49+00:00" + "time": "2015-08-31 12:32:49" }, { "name": "doctrine/cache", @@ -786,7 +932,7 @@ "cache", "caching" ], - "time": "2017-07-22T12:49:21+00:00" + "time": "2017-07-22 12:49:21" }, { "name": "doctrine/collections", @@ -853,7 +999,7 @@ "collections", "iterator" ], - "time": "2017-01-03T10:49:41+00:00" + "time": "2017-01-03 10:49:41" }, { "name": "doctrine/common", @@ -926,7 +1072,7 @@ "persistence", "spl" ], - "time": "2017-07-22T08:35:12+00:00" + "time": "2017-07-22 08:35:12" }, { "name": "doctrine/inflector", @@ -993,7 +1139,7 @@ "singularize", "string" ], - "time": "2017-07-22T12:18:28+00:00" + "time": "2017-07-22 12:18:28" }, { "name": "doctrine/lexer", @@ -1047,7 +1193,7 @@ "lexer", "parser" ], - "time": "2014-09-09T13:34:57+00:00" + "time": "2014-09-09 13:34:57" }, { "name": "drexarj/disqus-php", @@ -1077,7 +1223,7 @@ "Apache-2.0" ], "description": "The official PHP client library for disqus, with added composer.json.", - "time": "2013-11-07T10:47:07+00:00" + "time": "2013-11-07 10:47:07" }, { "name": "drupal-composer/drupal-scaffold", @@ -1118,7 +1264,64 @@ "GPL-2.0+" ], "description": "Composer Plugin for updating the Drupal scaffold files when using drupal/core", - "time": "2017-05-05T21:26:28+00:00" + "time": "2017-05-05 21:26:28" + }, + { + "name": "drupal/address", + "version": "1.2.0", + "source": { + "type": "git", + "url": "https://git.drupal.org/project/address", + "reference": "8.x-1.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/address-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "041445ac14087be943c0c1c562b9bf800d87f7e8" + }, + "require": { + "commerceguys/addressing": "~1.0", + "commerceguys/intl": "~0.7", + "drupal/core": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.2", + "datestamp": "1505896144", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "googletorp", + "homepage": "https://www.drupal.org/user/386230" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + } + ], + "description": "Provides functionality for storing, validating and displaying international postal addresses.", + "homepage": "http://drupal.org/project/address", + "support": { + "source": "http://cgit.drupalcode.org/address" + } }, { "name": "drupal/addtoany", @@ -1173,17 +1376,17 @@ }, { "name": "drupal/admin_toolbar", - "version": "1.19.0", + "version": "1.20.0", "source": { "type": "git", "url": "https://git.drupal.org/project/admin_toolbar", - "reference": "8.x-1.19" + "reference": "8.x-1.20" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-1.19.zip", - "reference": "8.x-1.19", - "shasum": "87de41eab3c5cd49d4e1b5b764cb3b9d5ad683a0" + "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-1.20.zip", + "reference": "8.x-1.20", + "shasum": "ebeb6b630c0c614b36263ac4a024b269113b6a99" }, "require": { "drupal/core": "*" @@ -1194,8 +1397,12 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.19", - "datestamp": "1491487683" + "version": "8.x-1.20", + "datestamp": "1505199844", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -1231,6 +1438,83 @@ "issues": "https://www.drupal.org/project/issues/admin_toolbar" } }, + { + "name": "drupal/commerce", + "version": "dev-2.x", + "source": { + "type": "git", + "url": "https://git.drupal.org/project/commerce", + "reference": "5f90449c7cb363c6242cf43538367db654a7ad18" + }, + "require": { + "commerceguys/intl": "~0.7", + "drupal/address": "~1.0", + "drupal/core": "~8.3", + "drupal/entity": "~1.0", + "drupal/entity_reference_revisions": "~1.0", + "drupal/inline_entity_form": "~1.0", + "drupal/profile": "~1.0", + "drupal/state_machine": "~1.0" + }, + "require-dev": { + "drupal/commerce_cart": "*", + "drupal/commerce_order": "*", + "drupal/commerce_payment": "*", + "drupal/commerce_price": "*", + "drupal/commerce_product": "*", + "drupal/commerce_store": "*", + "drupal/entity_reference_revisions": "*", + "drupal/inline_entity_form": "*", + "drupal/profile": "*", + "drupal/state_machine": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-2.x": "2.x-dev" + }, + "drupal": { + "version": "8.x-2.0-rc3+3-dev", + "datestamp": "1505896444", + "security-coverage": { + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Damien Tournoud", + "homepage": "https://www.drupal.org/user/22211" + }, + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + } + ], + "description": "Drupal Commerce is a flexible eCommerce solution.", + "homepage": "http://drupal.org/project/commerce", + "support": { + "source": "http://cgit.drupalcode.org/commerce" + }, + "time": "2017-09-20 08:33:46" + }, { "name": "drupal/console", "version": "1.0.0-rc19", @@ -1307,7 +1591,7 @@ "drupal", "symfony" ], - "time": "2017-05-08T16:49:07+00:00" + "time": "2017-05-08 16:49:07" }, { "name": "drupal/console-core", @@ -1387,7 +1671,7 @@ "drupal", "symfony" ], - "time": "2017-05-08T16:08:29+00:00" + "time": "2017-05-08 16:08:29" }, { "name": "drupal/console-en", @@ -1441,7 +1725,7 @@ "drupal", "symfony" ], - "time": "2017-05-05T21:51:49+00:00" + "time": "2017-05-05 21:51:49" }, { "name": "drupal/console-extend-plugin", @@ -1482,7 +1766,7 @@ } ], "description": "Drupal Console Extend Plugin", - "time": "2017-07-28T17:11:54+00:00" + "time": "2017-07-28 17:11:54" }, { "name": "drupal/core", @@ -1667,7 +1951,7 @@ "GPL-2.0+" ], "description": "Drupal is an open source content management platform powering millions of websites and applications.", - "time": "2017-08-16T17:10:35+00:00" + "time": "2017-08-16 17:10:35" }, { "name": "drupal/ctools", @@ -1818,6 +2102,69 @@ "source": "http://cgit.drupalcode.org/disqus" } }, + { + "name": "drupal/entity", + "version": "1.0.0-beta1", + "source": { + "type": "git", + "url": "https://git.drupal.org/project/entity", + "reference": "8.x-1.0-beta1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0-beta1.zip", + "reference": "8.x-1.0-beta1", + "shasum": "6965349818de8cb820113b6841076162190c1a4c" + }, + "require": { + "drupal/core": "~8.3" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta1", + "datestamp": "1505895844", + "security-coverage": { + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Berdir", + "homepage": "https://www.drupal.org/user/214652" + }, + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "dawehner", + "homepage": "https://www.drupal.org/user/99340" + }, + { + "name": "dixon_", + "homepage": "https://www.drupal.org/user/239911" + }, + { + "name": "fago", + "homepage": "https://www.drupal.org/user/16747" + } + ], + "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.", + "homepage": "http://drupal.org/project/entity", + "support": { + "source": "http://cgit.drupalcode.org/entity" + } + }, { "name": "drupal/entity_reference_revisions", "version": "1.3.0", @@ -1970,6 +2317,72 @@ "source": "http://cgit.drupalcode.org/hreflang" } }, + { + "name": "drupal/inline_entity_form", + "version": "1.0.0-beta1", + "source": { + "type": "git", + "url": "https://git.drupal.org/project/inline_entity_form", + "reference": "8.x-1.0-beta1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-beta1.zip", + "reference": "8.x-1.0-beta1", + "shasum": "185ffc28a7b68d19cce057855d1c111f1741a3ea" + }, + "require": { + "drupal/core": "~8.0" + }, + "require-dev": { + "drupal/entity_reference_revisions": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta1", + "datestamp": "1477868343", + "security-coverage": { + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "dawehner", + "homepage": "https://www.drupal.org/user/99340" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + }, + { + "name": "slashrsm", + "homepage": "https://www.drupal.org/user/744628" + }, + { + "name": "webflo", + "homepage": "https://www.drupal.org/user/254778" + } + ], + "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.", + "homepage": "https://www.drupal.org/project/inline_entity_form", + "support": { + "source": "http://cgit.drupalcode.org/inline_entity_form" + } + }, { "name": "drupal/metatag", "version": "1.2.0", @@ -2095,27 +2508,28 @@ }, { "name": "drupal/paragraphs", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupal.org/project/paragraphs", - "reference": "8.x-1.1" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "c678e5704a98c6a0549e415412da081cfeb03a00" + "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "6efc9d4351d4b21a55e7a6428c78495aaca662ef" }, "require": { - "drupal/core": "~8.0", - "drupal/entity_reference_revisions": "*" + "drupal/core": "~8", + "drupal/entity_reference_revisions": "~1.3" }, "require-dev": { - "drupal/diff": "*", - "drupal/field_group": "*", - "drupal/inline_entity_form": "*", - "drupal/replicate": "*", + "drupal/block_field": "~1.0", + "drupal/diff": "~1.0", + "drupal/field_group": "~1.0", + "drupal/inline_entity_form": "~1.0", + "drupal/replicate": "~1.0", "drupal/search_api": "*", "drupal/search_api_db": "*" }, @@ -2125,13 +2539,17 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.1", - "datestamp": "1487331784" + "version": "8.x-1.2", + "datestamp": "1505802867", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0" ], "authors": [ { @@ -2155,7 +2573,7 @@ "homepage": "https://www.drupal.org/user/227761" } ], - "description": "Enables the creation of paragraphs entities.", + "description": "Enables the creation of Paragraphs entities.", "homepage": "https://www.drupal.org/project/paragraphs", "support": { "source": "http://cgit.drupalcode.org/paragraphs" @@ -2218,6 +2636,70 @@ "source": "http://cgit.drupalcode.org/pathauto" } }, + { + "name": "drupal/profile", + "version": "1.0.0-rc1", + "source": { + "type": "git", + "url": "https://git.drupal.org/project/profile", + "reference": "8.x-1.0-rc1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.0-rc1.zip", + "reference": "8.x-1.0-rc1", + "shasum": "cc537ca25412adc4fa601ff42cf2fb5cbc6e7b6b" + }, + "require": { + "drupal/core": "~8.1", + "drupal/entity": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-rc1", + "datestamp": "1505830145", + "security-coverage": { + "status": "not-covered", + "message": "RC releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "dakala", + "homepage": "https://www.drupal.org/user/53175" + }, + { + "name": "fago", + "homepage": "https://www.drupal.org/user/16747" + }, + { + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" + }, + { + "name": "pcambra", + "homepage": "https://www.drupal.org/user/122101" + } + ], + "description": "Provides configurable user profiles.", + "homepage": "http://drupal.org/project/profile", + "support": { + "source": "http://cgit.drupalcode.org/profile" + } + }, { "name": "drupal/redirect", "version": "1.0.0-beta1", @@ -2271,17 +2753,17 @@ }, { "name": "drupal/search_api", - "version": "1.3.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupal.org/project/search_api", - "reference": "8.x-1.3" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "e064dc8769a95ce3ebb3f30cdfe0fba8ea661dfb" + "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "750555dee199d8ab62a609b394fb11206b8fbe4c" }, "require": { "drupal/core": "^8.3" @@ -2295,8 +2777,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.3", - "datestamp": "1500483242", + "version": "8.x-1.4", + "datestamp": "1504799343", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2381,6 +2863,101 @@ "irc": "irc://irc.freenode.org/drupal-contribute" } }, + { + "name": "drupal/state_machine", + "version": "1.0.0-beta3", + "source": { + "type": "git", + "url": "https://git.drupal.org/project/state_machine", + "reference": "8.x-1.0-beta3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/state_machine-8.x-1.0-beta3.zip", + "reference": "8.x-1.0-beta3", + "shasum": "9ca0101738db00673f2511707a76d6ea0c9ce4db" + }, + "require": { + "drupal/core": "~8.0" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta3", + "datestamp": "1477868939", + "security-coverage": { + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Brandonian", + "homepage": "https://www.drupal.org/user/77766" + }, + { + "name": "Elijah Lynn", + "homepage": "https://www.drupal.org/user/353190" + }, + { + "name": "arithmetric", + "homepage": "https://www.drupal.org/user/162305" + }, + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "das-peter", + "homepage": "https://www.drupal.org/user/762870" + }, + { + "name": "e2thex", + "homepage": "https://www.drupal.org/user/189123" + }, + { + "name": "ericduran", + "homepage": "https://www.drupal.org/user/244460" + }, + { + "name": "fmitchell", + "homepage": "https://www.drupal.org/user/213574" + }, + { + "name": "indytechcook", + "homepage": "https://www.drupal.org/user/245817" + }, + { + "name": "robeano", + "homepage": "https://www.drupal.org/user/67660" + }, + { + "name": "stevector", + "homepage": "https://www.drupal.org/user/179805" + }, + { + "name": "timcosgrove", + "homepage": "https://www.drupal.org/user/118452" + }, + { + "name": "zroger", + "homepage": "https://www.drupal.org/user/67977" + } + ], + "description": "Provides code-driven workflow functionality.", + "homepage": "https://www.drupal.org/project/state_machine", + "support": { + "source": "http://cgit.drupalcode.org/state_machine" + } + }, { "name": "drupal/token", "version": "1.0.0", @@ -2623,7 +3200,7 @@ ], "description": "Drush is a command line shell and scripting interface for Drupal, a veritable Swiss Army knife designed to make life easier for those of us who spend some of our working hours hacking away at the command prompt.", "homepage": "http://www.drush.org", - "time": "2017-08-22T17:28:25+00:00" + "time": "2017-08-22 17:28:25" }, { "name": "easyrdf/easyrdf", @@ -2685,7 +3262,7 @@ "rdfa", "sparql" ], - "time": "2015-02-27T09:45:49+00:00" + "time": "2015-02-27 09:45:49" }, { "name": "egulias/email-validator", @@ -2737,7 +3314,7 @@ "validation", "validator" ], - "time": "2017-02-03T22:48:59+00:00" + "time": "2017-02-03 22:48:59" }, { "name": "gabordemooij/redbean", @@ -2778,7 +3355,7 @@ "keywords": [ "orm" ], - "time": "2017-03-07T22:26:54+00:00" + "time": "2017-03-07 22:26:54" }, { "name": "guzzlehttp/guzzle", @@ -2843,7 +3420,7 @@ "rest", "web service" ], - "time": "2017-06-22T18:50:49+00:00" + "time": "2017-06-22 18:50:49" }, { "name": "guzzlehttp/promises", @@ -2894,7 +3471,7 @@ "keywords": [ "promise" ], - "time": "2016-12-20T10:07:11+00:00" + "time": "2016-12-20 10:07:11" }, { "name": "guzzlehttp/psr7", @@ -2959,7 +3536,7 @@ "uri", "url" ], - "time": "2017-03-20T17:10:46+00:00" + "time": "2017-03-20 17:10:46" }, { "name": "ircmaxell/password-compat", @@ -3001,7 +3578,7 @@ "hashing", "password" ], - "time": "2014-11-20T16:49:30+00:00" + "time": "2014-11-20 16:49:30" }, { "name": "jakub-onderka/php-console-color", @@ -3044,7 +3621,7 @@ "homepage": "http://www.acci.cz" } ], - "time": "2014-04-08T15:00:19+00:00" + "time": "2014-04-08 15:00:19" }, { "name": "jakub-onderka/php-console-highlighter", @@ -3088,7 +3665,7 @@ "homepage": "http://www.acci.cz/" } ], - "time": "2015-04-20T18:58:01+00:00" + "time": "2015-04-20 18:58:01" }, { "name": "masterminds/html5", @@ -3153,7 +3730,7 @@ "serializer", "xml" ], - "time": "2017-09-04T12:26:28+00:00" + "time": "2017-09-04 12:26:28" }, { "name": "nikic/php-parser", @@ -3204,7 +3781,7 @@ "parser", "php" ], - "time": "2017-09-02T17:10:46+00:00" + "time": "2017-09-02 17:10:46" }, { "name": "paragonie/random_compat", @@ -3252,7 +3829,7 @@ "pseudorandom", "random" ], - "time": "2017-03-13T16:27:32+00:00" + "time": "2017-03-13 16:27:32" }, { "name": "pear/console_table", @@ -3307,7 +3884,7 @@ "keywords": [ "console" ], - "time": "2016-01-21T16:14:31+00:00" + "time": "2016-01-21 16:14:31" }, { "name": "phpdocumentor/reflection-docblock", @@ -3356,7 +3933,7 @@ "email": "mike.vanriel@naenius.com" } ], - "time": "2016-01-25T08:17:30+00:00" + "time": "2016-01-25 08:17:30" }, { "name": "psr/http-message", @@ -3406,7 +3983,7 @@ "request", "response" ], - "time": "2016-08-06T14:39:51+00:00" + "time": "2016-08-06 14:39:51" }, { "name": "psr/log", @@ -3453,7 +4030,7 @@ "psr", "psr-3" ], - "time": "2016-10-10T12:19:37+00:00" + "time": "2016-10-10 12:19:37" }, { "name": "psy/psysh", @@ -3526,7 +4103,7 @@ "interactive", "shell" ], - "time": "2017-07-29T19:30:02+00:00" + "time": "2017-07-29 19:30:02" }, { "name": "stack/builder", @@ -3575,7 +4152,7 @@ "keywords": [ "stack" ], - "time": "2016-06-02T06:58:42+00:00" + "time": "2016-06-02 06:58:42" }, { "name": "stecman/symfony-console-completion", @@ -3620,7 +4197,7 @@ } ], "description": "Automatic BASH completion for Symfony Console Component based applications.", - "time": "2016-02-24T05:08:54+00:00" + "time": "2016-02-24 05:08:54" }, { "name": "symfony-cmf/routing", @@ -3679,7 +4256,7 @@ "database", "routing" ], - "time": "2017-05-09T08:10:41+00:00" + "time": "2017-05-09 08:10:41" }, { "name": "symfony/class-loader", @@ -3732,7 +4309,7 @@ ], "description": "Symfony ClassLoader Component", "homepage": "https://symfony.com", - "time": "2017-07-05T06:50:35+00:00" + "time": "2017-07-05 06:50:35" }, { "name": "symfony/config", @@ -3788,7 +4365,7 @@ ], "description": "Symfony Config Component", "homepage": "https://symfony.com", - "time": "2017-04-12T14:07:15+00:00" + "time": "2017-04-12 14:07:15" }, { "name": "symfony/console", @@ -3849,7 +4426,7 @@ ], "description": "Symfony Console Component", "homepage": "https://symfony.com", - "time": "2017-08-27T14:29:03+00:00" + "time": "2017-08-27 14:29:03" }, { "name": "symfony/css-selector", @@ -3902,7 +4479,7 @@ ], "description": "Symfony CssSelector Component", "homepage": "https://symfony.com", - "time": "2017-05-01T14:31:55+00:00" + "time": "2017-05-01 14:31:55" }, { "name": "symfony/debug", @@ -3959,7 +4536,7 @@ ], "description": "Symfony Debug Component", "homepage": "https://symfony.com", - "time": "2017-08-27T14:29:03+00:00" + "time": "2017-08-27 14:29:03" }, { "name": "symfony/dependency-injection", @@ -4022,7 +4599,7 @@ ], "description": "Symfony DependencyInjection Component", "homepage": "https://symfony.com", - "time": "2017-08-10T14:42:21+00:00" + "time": "2017-08-10 14:42:21" }, { "name": "symfony/dom-crawler", @@ -4078,7 +4655,7 @@ ], "description": "Symfony DomCrawler Component", "homepage": "https://symfony.com", - "time": "2017-05-25T22:59:05+00:00" + "time": "2017-05-25 22:59:05" }, { "name": "symfony/event-dispatcher", @@ -4138,7 +4715,7 @@ ], "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", - "time": "2017-06-02T07:47:27+00:00" + "time": "2017-06-02 07:47:27" }, { "name": "symfony/expression-language", @@ -4187,7 +4764,7 @@ ], "description": "Symfony ExpressionLanguage Component", "homepage": "https://symfony.com", - "time": "2017-06-01T20:52:29+00:00" + "time": "2017-06-01 20:52:29" }, { "name": "symfony/filesystem", @@ -4236,7 +4813,7 @@ ], "description": "Symfony Filesystem Component", "homepage": "https://symfony.com", - "time": "2017-07-11T07:12:11+00:00" + "time": "2017-07-11 07:12:11" }, { "name": "symfony/finder", @@ -4285,7 +4862,7 @@ ], "description": "Symfony Finder Component", "homepage": "https://symfony.com", - "time": "2017-06-01T20:52:29+00:00" + "time": "2017-06-01 20:52:29" }, { "name": "symfony/http-foundation", @@ -4340,7 +4917,7 @@ ], "description": "Symfony HttpFoundation Component", "homepage": "https://symfony.com", - "time": "2017-08-10T07:04:10+00:00" + "time": "2017-08-10 07:04:10" }, { "name": "symfony/http-kernel", @@ -4423,7 +5000,7 @@ ], "description": "Symfony HttpKernel Component", "homepage": "https://symfony.com", - "time": "2017-08-28T19:21:40+00:00" + "time": "2017-08-28 19:21:40" }, { "name": "symfony/polyfill-apcu", @@ -4476,7 +5053,7 @@ "portable", "shim" ], - "time": "2017-07-05T15:09:33+00:00" + "time": "2017-07-05 15:09:33" }, { "name": "symfony/polyfill-iconv", @@ -4535,7 +5112,7 @@ "portable", "shim" ], - "time": "2017-06-14T15:44:48+00:00" + "time": "2017-06-14 15:44:48" }, { "name": "symfony/polyfill-mbstring", @@ -4594,7 +5171,7 @@ "portable", "shim" ], - "time": "2017-06-14T15:44:48+00:00" + "time": "2017-06-14 15:44:48" }, { "name": "symfony/polyfill-php54", @@ -4652,7 +5229,7 @@ "portable", "shim" ], - "time": "2017-06-14T15:44:48+00:00" + "time": "2017-06-14 15:44:48" }, { "name": "symfony/polyfill-php55", @@ -4708,7 +5285,7 @@ "portable", "shim" ], - "time": "2017-06-14T15:44:48+00:00" + "time": "2017-06-14 15:44:48" }, { "name": "symfony/process", @@ -4757,7 +5334,7 @@ ], "description": "Symfony Process Component", "homepage": "https://symfony.com", - "time": "2017-07-03T08:04:30+00:00" + "time": "2017-07-03 08:04:30" }, { "name": "symfony/psr-http-message-bridge", @@ -4817,7 +5394,7 @@ "http-message", "psr-7" ], - "time": "2016-09-14T18:37:20+00:00" + "time": "2016-09-14 18:37:20" }, { "name": "symfony/routing", @@ -4892,7 +5469,7 @@ "uri", "url" ], - "time": "2017-06-20T23:27:56+00:00" + "time": "2017-06-20 23:27:56" }, { "name": "symfony/serializer", @@ -4956,7 +5533,7 @@ ], "description": "Symfony Serializer Component", "homepage": "https://symfony.com", - "time": "2017-07-03T14:09:54+00:00" + "time": "2017-07-03 14:09:54" }, { "name": "symfony/translation", @@ -5020,7 +5597,7 @@ ], "description": "Symfony Translation Component", "homepage": "https://symfony.com", - "time": "2017-06-24T16:44:49+00:00" + "time": "2017-06-24 16:44:49" }, { "name": "symfony/validator", @@ -5093,7 +5670,7 @@ ], "description": "Symfony Validator Component", "homepage": "https://symfony.com", - "time": "2017-08-27T14:29:03+00:00" + "time": "2017-08-27 14:29:03" }, { "name": "symfony/var-dumper", @@ -5161,7 +5738,7 @@ "debug", "dump" ], - "time": "2017-08-27T14:29:03+00:00" + "time": "2017-08-27 14:29:03" }, { "name": "symfony/yaml", @@ -5210,7 +5787,7 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", - "time": "2017-06-01T20:52:29+00:00" + "time": "2017-06-01 20:52:29" }, { "name": "twig/twig", @@ -5275,7 +5852,7 @@ "keywords": [ "templating" ], - "time": "2017-07-04T13:19:31+00:00" + "time": "2017-07-04 13:19:31" }, { "name": "webflo/drupal-finder", @@ -5312,7 +5889,7 @@ } ], "description": "Helper class to locate a Drupal installation from a given path.", - "time": "2016-11-28T18:50:45+00:00" + "time": "2016-11-28 18:50:45" }, { "name": "webmozart/assert", @@ -5362,7 +5939,7 @@ "check", "validate" ], - "time": "2016-11-23T20:04:58+00:00" + "time": "2016-11-23 20:04:58" }, { "name": "webmozart/path-util", @@ -5408,20 +5985,20 @@ } ], "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.", - "time": "2015-12-17T08:42:14+00:00" + "time": "2015-12-17 08:42:14" }, { "name": "zendframework/zend-diactoros", - "version": "1.5.0", + "version": "1.6.0", "source": { "type": "git", "url": "https://github.com/zendframework/zend-diactoros.git", - "reference": "1d23172f9dc1687a97c195a777b0199f14f7b26e" + "reference": "2faa791b66bac33ca40031d8bce03b7dc8143490" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/1d23172f9dc1687a97c195a777b0199f14f7b26e", - "reference": "1d23172f9dc1687a97c195a777b0199f14f7b26e", + "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/2faa791b66bac33ca40031d8bce03b7dc8143490", + "reference": "2faa791b66bac33ca40031d8bce03b7dc8143490", "shasum": "" }, "require": { @@ -5440,8 +6017,8 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.5-dev", - "dev-develop": "1.6-dev" + "dev-master": "1.6-dev", + "dev-develop": "1.7-dev" } }, "autoload": { @@ -5460,7 +6037,7 @@ "psr", "psr-7" ], - "time": "2017-08-22T20:38:56+00:00" + "time": "2017-09-13 14:47:08" }, { "name": "zendframework/zend-escaper", @@ -5504,7 +6081,7 @@ "escaper", "zf2" ], - "time": "2016-06-30T19:48:38+00:00" + "time": "2016-06-30 19:48:38" }, { "name": "zendframework/zend-feed", @@ -5565,7 +6142,7 @@ "feed", "zf2" ], - "time": "2017-04-01T15:03:14+00:00" + "time": "2017-04-01 15:03:14" }, { "name": "zendframework/zend-stdlib", @@ -5610,7 +6187,7 @@ "stdlib", "zf2" ], - "time": "2016-09-13T14:38:50+00:00" + "time": "2016-09-13 14:38:50" } ], "packages-dev": [ @@ -5670,7 +6247,7 @@ "testing", "web" ], - "time": "2016-03-05T08:26:18+00:00" + "time": "2016-03-05 08:26:18" }, { "name": "behat/mink-browserkit-driver", @@ -5726,7 +6303,7 @@ "browser", "testing" ], - "time": "2016-03-05T08:59:47+00:00" + "time": "2016-03-05 08:59:47" }, { "name": "behat/mink-goutte-driver", @@ -5781,7 +6358,7 @@ "headless", "testing" ], - "time": "2016-03-05T09:04:22+00:00" + "time": "2016-03-05 09:04:22" }, { "name": "doctrine/instantiator", @@ -5835,7 +6412,7 @@ "constructor", "instantiate" ], - "time": "2015-06-14T21:17:01+00:00" + "time": "2015-06-14 21:17:01" }, { "name": "fabpot/goutte", @@ -5884,7 +6461,7 @@ "keywords": [ "scraper" ], - "time": "2017-01-03T13:21:43+00:00" + "time": "2017-01-03 13:21:43" }, { "name": "jcalderonzumba/gastonjs", @@ -5941,7 +6518,7 @@ "headless", "phantomjs" ], - "time": "2016-05-04T16:27:07+00:00" + "time": "2016-05-04 16:27:07" }, { "name": "jcalderonzumba/mink-phantomjs-driver", @@ -5999,7 +6576,7 @@ "phantomjs", "testing" ], - "time": "2016-12-01T10:57:30+00:00" + "time": "2016-12-01 10:57:30" }, { "name": "mikey179/vfsStream", @@ -6045,7 +6622,7 @@ ], "description": "Virtual file system to mock the real file system in unit tests.", "homepage": "http://vfs.bovigo.org/", - "time": "2017-08-01T08:02:14+00:00" + "time": "2017-08-01 08:02:14" }, { "name": "phpspec/prophecy", @@ -6108,7 +6685,7 @@ "spy", "stub" ], - "time": "2017-09-04T11:05:03+00:00" + "time": "2017-09-04 11:05:03" }, { "name": "phpunit/php-code-coverage", @@ -6170,7 +6747,7 @@ "testing", "xunit" ], - "time": "2015-10-06T15:47:00+00:00" + "time": "2015-10-06 15:47:00" }, { "name": "phpunit/php-file-iterator", @@ -6217,7 +6794,7 @@ "filesystem", "iterator" ], - "time": "2016-10-03T07:40:28+00:00" + "time": "2016-10-03 07:40:28" }, { "name": "phpunit/php-text-template", @@ -6258,7 +6835,7 @@ "keywords": [ "template" ], - "time": "2015-06-21T13:50:34+00:00" + "time": "2015-06-21 13:50:34" }, { "name": "phpunit/php-timer", @@ -6307,7 +6884,7 @@ "keywords": [ "timer" ], - "time": "2017-02-26T11:10:40+00:00" + "time": "2017-02-26 11:10:40" }, { "name": "phpunit/php-token-stream", @@ -6356,7 +6933,7 @@ "keywords": [ "tokenizer" ], - "time": "2017-02-27T10:12:30+00:00" + "time": "2017-02-27 10:12:30" }, { "name": "phpunit/phpunit", @@ -6428,7 +7005,7 @@ "testing", "xunit" ], - "time": "2017-06-21T08:07:12+00:00" + "time": "2017-06-21 08:07:12" }, { "name": "phpunit/phpunit-mock-objects", @@ -6484,7 +7061,7 @@ "mock", "xunit" ], - "time": "2015-10-02T06:51:40+00:00" + "time": "2015-10-02 06:51:40" }, { "name": "sebastian/comparator", @@ -6548,7 +7125,7 @@ "compare", "equality" ], - "time": "2017-01-29T09:50:25+00:00" + "time": "2017-01-29 09:50:25" }, { "name": "sebastian/diff", @@ -6600,7 +7177,7 @@ "keywords": [ "diff" ], - "time": "2017-05-22T07:24:03+00:00" + "time": "2017-05-22 07:24:03" }, { "name": "sebastian/environment", @@ -6650,7 +7227,7 @@ "environment", "hhvm" ], - "time": "2016-08-18T05:49:44+00:00" + "time": "2016-08-18 05:49:44" }, { "name": "sebastian/exporter", @@ -6717,7 +7294,7 @@ "export", "exporter" ], - "time": "2016-06-17T09:04:28+00:00" + "time": "2016-06-17 09:04:28" }, { "name": "sebastian/global-state", @@ -6768,7 +7345,7 @@ "keywords": [ "global state" ], - "time": "2015-10-12T03:26:01+00:00" + "time": "2015-10-12 03:26:01" }, { "name": "sebastian/recursion-context", @@ -6821,7 +7398,7 @@ ], "description": "Provides functionality to recursively process PHP variables", "homepage": "http://www.github.com/sebastianbergmann/recursion-context", - "time": "2016-10-03T07:41:43+00:00" + "time": "2016-10-03 07:41:43" }, { "name": "sebastian/version", @@ -6856,11 +7433,11 @@ ], "description": "Library that helps with managing the version number of Git-hosted PHP projects", "homepage": "https://github.com/sebastianbergmann/version", - "time": "2015-06-21T13:59:46+00:00" + "time": "2015-06-21 13:59:46" }, { "name": "symfony/browser-kit", - "version": "v3.3.8", + "version": "v3.3.9", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", @@ -6913,12 +7490,13 @@ ], "description": "Symfony BrowserKit Component", "homepage": "https://symfony.com", - "time": "2017-07-29T21:54:42+00:00" + "time": "2017-07-29 21:54:42" } ], "aliases": [], "minimum-stability": "dev", "stability-flags": { + "drupal/commerce": 20, "drupal/disqus": 5, "drupal/redirect": 15 }, diff --git a/config/sync/commerce_order.commerce_order_item_type.default.yml b/config/sync/commerce_order.commerce_order_item_type.default.yml new file mode 100644 index 0000000..1cbd132 --- /dev/null +++ b/config/sync/commerce_order.commerce_order_item_type.default.yml @@ -0,0 +1,14 @@ +uuid: 0e348dcc-41c2-4aa1-be42-c54d29012d59 +langcode: en +status: true +dependencies: + enforced: + module: + - commerce_product +_core: + default_config_hash: jNPt_s6r5tiynMJ5tvaDZjlOtQ4ply0Ii-GBJ7lMZ7Y +label: Default +id: default +purchasableEntityType: commerce_product_variation +orderType: default +traits: { } diff --git a/config/sync/commerce_order.commerce_order_type.default.yml b/config/sync/commerce_order.commerce_order_type.default.yml new file mode 100644 index 0000000..44ee2db --- /dev/null +++ b/config/sync/commerce_order.commerce_order_type.default.yml @@ -0,0 +1,14 @@ +uuid: 9f2b7715-2a29-4bf6-9ac9-1d3d20789266 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: zf7YA-OOtWhhrphbf3YOlc49POwC9rePktH9cBavEiA +label: Default +id: default +workflow: order_default +traits: { } +refresh_mode: customer +refresh_frequency: 300 +sendReceipt: true +receiptBcc: '' diff --git a/config/sync/commerce_product.commerce_product_type.default.yml b/config/sync/commerce_product.commerce_product_type.default.yml new file mode 100644 index 0000000..f0173ff --- /dev/null +++ b/config/sync/commerce_product.commerce_product_type.default.yml @@ -0,0 +1,12 @@ +uuid: e2dc4eac-91d2-4b7a-9ce1-9ab2c43bd50c +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 96ryTApvzUl00vKGZusJUDgPHQALAKN8Mb13Jxm02KU +id: default +label: Default +description: '' +variationType: default +injectVariationFields: true +traits: { } diff --git a/config/sync/commerce_product.commerce_product_variation_type.default.yml b/config/sync/commerce_product.commerce_product_variation_type.default.yml new file mode 100644 index 0000000..390f54a --- /dev/null +++ b/config/sync/commerce_product.commerce_product_variation_type.default.yml @@ -0,0 +1,11 @@ +uuid: 64828f55-ede3-47f7-a66f-d35b99a4c9a4 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: QPuFH9E4612ox18hXdUXL8FhU021rCvOtYISSmvMQzc +id: default +label: Default +orderItemType: default +generateTitle: true +traits: { } diff --git a/config/sync/commerce_store.commerce_store_type.online.yml b/config/sync/commerce_store.commerce_store_type.online.yml new file mode 100644 index 0000000..7c61220 --- /dev/null +++ b/config/sync/commerce_store.commerce_store_type.online.yml @@ -0,0 +1,10 @@ +uuid: ed44764b-eb75-4ef6-b2a6-0515e6ecfd48 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: uXc7SNfdNF3TJ81MWGMvCjsKlNSElo6Cc0lTrhLSels +id: online +label: Online +description: '' +traits: { } diff --git a/config/sync/commerce_store.settings.yml b/config/sync/commerce_store.settings.yml new file mode 100644 index 0000000..e471e8e --- /dev/null +++ b/config/sync/commerce_store.settings.yml @@ -0,0 +1,3 @@ +default_store: '' +_core: + default_config_hash: B9ZFGR76POyzj9f3Sh66F346_Jp-wnnUc78Hk3Q-60o diff --git a/config/sync/core.entity_form_display.commerce_order.default.default.yml b/config/sync/core.entity_form_display.commerce_order.default.default.yml new file mode 100644 index 0000000..4aed6cf --- /dev/null +++ b/config/sync/core.entity_form_display.commerce_order.default.default.yml @@ -0,0 +1,50 @@ +uuid: a3c67151-7474-40a1-baf1-b78dbf394845 +langcode: en +status: true +dependencies: + config: + - commerce_order.commerce_order_type.default + - field.field.commerce_order.default.order_items + module: + - commerce_order + - inline_entity_form +_core: + default_config_hash: 1NKrIQBqELStd0cyiuHeNArhuPvOZj36faDEG1dWqEA +id: commerce_order.default.default +targetEntityType: commerce_order +bundle: default +mode: default +content: + adjustments: + type: commerce_adjustment_default + weight: 2 + settings: { } + third_party_settings: { } + region: content + billing_profile: + type: commerce_billing_profile + weight: 0 + settings: { } + third_party_settings: { } + region: content + order_items: + type: inline_entity_form_complex + weight: 1 + settings: + override_labels: true + label_singular: 'order item' + label_plural: 'order items' + allow_new: true + match_operator: CONTAINS + allow_existing: false + form_mode: default + third_party_settings: { } + region: content +hidden: + created: true + ip_address: true + mail: true + order_number: true + state: true + store_id: true + uid: true diff --git a/config/sync/core.entity_form_display.commerce_order_item.default.default.yml b/config/sync/core.entity_form_display.commerce_order_item.default.default.yml new file mode 100644 index 0000000..180b578 --- /dev/null +++ b/config/sync/core.entity_form_display.commerce_order_item.default.default.yml @@ -0,0 +1,46 @@ +uuid: 353647ef-dd96-432a-aec6-7ac932fa1395 +langcode: en +status: true +dependencies: + config: + - commerce_order.commerce_order_item_type.default + enforced: + module: + - commerce_product + module: + - commerce_order +_core: + default_config_hash: AI9120ApX7uexCUMTuO3RgE5bWu8175i_bNlPMRXe7M +id: commerce_order_item.default.default +targetEntityType: commerce_order_item +bundle: default +mode: default +content: + purchased_entity: + type: entity_reference_autocomplete + weight: 0 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + third_party_settings: { } + region: content + quantity: + type: commerce_quantity + weight: 1 + settings: + placeholder: '' + step: '1' + third_party_settings: { } + region: content + unit_price: + type: commerce_unit_price + weight: 2 + settings: + require_confirmation: true + third_party_settings: { } + region: content +hidden: + created: true + status: true + uid: true diff --git a/config/sync/core.entity_form_display.commerce_product.default.default.yml b/config/sync/core.entity_form_display.commerce_product.default.default.yml new file mode 100644 index 0000000..25e49e9 --- /dev/null +++ b/config/sync/core.entity_form_display.commerce_product.default.default.yml @@ -0,0 +1,96 @@ +uuid: 30439149-e925-4084-ba95-200ed7106045 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.default + - field.field.commerce_product.default.body + - field.field.commerce_product.default.stores + - field.field.commerce_product.default.variations + module: + - commerce + - inline_entity_form + - path + - text +_core: + default_config_hash: gcsrKJ5HqxdoqA7GqRhz33UrCLp_PxvLAMxSKJKI4uU +id: commerce_product.default.default +targetEntityType: commerce_product +bundle: default +mode: default +content: + body: + type: text_textarea_with_summary + weight: 2 + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + third_party_settings: { } + region: content + created: + type: datetime_timestamp + weight: 5 + settings: { } + third_party_settings: { } + region: content + langcode: + type: language_select + weight: 3 + region: content + settings: { } + third_party_settings: { } + path: + type: path + weight: 7 + settings: { } + third_party_settings: { } + region: content + status: + type: boolean_checkbox + weight: 8 + region: content + settings: + display_label: true + third_party_settings: { } + stores: + type: commerce_entity_select + weight: 0 + settings: + hide_single_entity: true + autocomplete_threshold: 7 + autocomplete_size: 60 + autocomplete_placeholder: '' + third_party_settings: { } + region: content + title: + type: string_textfield + weight: 1 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + region: content + uid: + type: entity_reference_autocomplete + weight: 4 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + third_party_settings: { } + region: content + variations: + type: inline_entity_form_complex + weight: 6 + settings: + match_operator: CONTAINS + override_labels: false + label_singular: '' + label_plural: '' + allow_new: true + allow_existing: false + form_mode: default + third_party_settings: { } + region: content +hidden: { } diff --git a/config/sync/core.entity_form_display.commerce_product_variation.default.default.yml b/config/sync/core.entity_form_display.commerce_product_variation.default.default.yml new file mode 100644 index 0000000..23b702a --- /dev/null +++ b/config/sync/core.entity_form_display.commerce_product_variation.default.default.yml @@ -0,0 +1,45 @@ +uuid: 5fea272a-488a-4150-9c52-807d542cd273 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_variation_type.default + module: + - commerce_price +_core: + default_config_hash: tPYXAFcoBHG1jtgfl021t-ns7EE7da_S-o2zfS7aLUQ +id: commerce_product_variation.default.default +targetEntityType: commerce_product_variation +bundle: default +mode: default +content: + langcode: + type: language_select + weight: 2 + region: content + settings: { } + third_party_settings: { } + price: + type: commerce_price_default + weight: 0 + settings: { } + third_party_settings: { } + region: content + sku: + type: string_textfield + weight: -4 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + region: content + status: + type: boolean_checkbox + weight: 10 + settings: + display_label: true + third_party_settings: { } + region: content +hidden: + created: true + uid: true diff --git a/config/sync/core.entity_form_display.profile.customer.default.yml b/config/sync/core.entity_form_display.profile.customer.default.yml new file mode 100644 index 0000000..804bbd0 --- /dev/null +++ b/config/sync/core.entity_form_display.profile.customer.default.yml @@ -0,0 +1,26 @@ +uuid: 766372b8-0dbf-4fb1-a0d2-035829b1a1ac +langcode: en +status: true +dependencies: + config: + - field.field.profile.customer.address + - profile.type.customer + enforced: + module: + - commerce_order + module: + - address +_core: + default_config_hash: 7mnnVkJkUSPhil9xoiTfdTivMqxCUloT_71AHWNUbJg +id: profile.customer.default +targetEntityType: profile +bundle: customer +mode: default +content: + address: + type: address_default + weight: 0 + settings: { } + third_party_settings: { } + region: content +hidden: { } diff --git a/config/sync/core.entity_view_display.commerce_order.default.default.yml b/config/sync/core.entity_view_display.commerce_order.default.default.yml new file mode 100644 index 0000000..0d16d34 --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_order.default.default.yml @@ -0,0 +1,95 @@ +uuid: ed76fa81-2065-4399-bbf7-cee9d5472d5a +langcode: en +status: true +dependencies: + config: + - commerce_order.commerce_order_type.default + - field.field.commerce_order.default.order_items + module: + - commerce_order + - state_machine + - user +_core: + default_config_hash: DGdHybHLw9uLIR4f16miPoJYlsJxbxZk_li7kD13aE4 +id: commerce_order.default.default +targetEntityType: commerce_order +bundle: default +mode: default +content: + changed: + type: timestamp + weight: 4 + label: inline + settings: + date_format: short + custom_date_format: '' + timezone: '' + third_party_settings: { } + region: content + completed: + label: inline + type: timestamp + weight: 2 + settings: + date_format: short + custom_date_format: '' + timezone: '' + third_party_settings: { } + region: content + ip_address: + label: inline + type: string + weight: 7 + settings: + link_to_entity: false + third_party_settings: { } + region: content + mail: + label: inline + type: basic_string + weight: 6 + settings: { } + third_party_settings: { } + region: content + order_items: + type: commerce_order_item_table + weight: 0 + settings: { } + third_party_settings: { } + label: hidden + region: content + placed: + label: inline + type: timestamp + weight: 3 + settings: + date_format: short + custom_date_format: '' + timezone: '' + third_party_settings: { } + region: content + state: + label: hidden + type: state_transition_form + weight: 8 + settings: { } + third_party_settings: { } + region: content + total_price: + type: commerce_order_total_summary + weight: 1 + settings: { } + third_party_settings: { } + label: hidden + region: content + uid: + label: inline + type: author + weight: 5 + settings: { } + third_party_settings: { } + region: content +hidden: + billing_profile: true + order_number: true + store_id: true diff --git a/config/sync/core.entity_view_display.commerce_order.default.user.yml b/config/sync/core.entity_view_display.commerce_order.default.user.yml new file mode 100644 index 0000000..4afa6b7 --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_order.default.user.yml @@ -0,0 +1,89 @@ +uuid: 25683154-5c2f-4030-acac-f3127000ccd5 +langcode: en +status: true +dependencies: + config: + - commerce_order.commerce_order_type.default + - core.entity_view_mode.commerce_order.user + - field.field.commerce_order.default.order_items + module: + - commerce_order + - entity_reference_revisions + - options +_core: + default_config_hash: UcQydNwgf9NMjqKyyPwC9mJu-QmHqV7HKOcIp0VuV7w +id: commerce_order.default.user +targetEntityType: commerce_order +bundle: default +mode: user +content: + billing_profile: + type: entity_reference_revisions_entity_view + weight: 0 + label: above + settings: + view_mode: default + link: '' + third_party_settings: { } + region: content + completed: + label: inline + type: timestamp + weight: 2 + settings: + date_format: short + custom_date_format: '' + timezone: '' + third_party_settings: { } + region: content + mail: + label: inline + type: basic_string + weight: 1 + settings: { } + third_party_settings: { } + region: content + order_items: + type: commerce_order_item_table + weight: 5 + settings: { } + third_party_settings: { } + label: hidden + region: content + order_number: + type: string + weight: 0 + label: inline + settings: + link_to_entity: false + third_party_settings: { } + region: content + placed: + label: inline + type: timestamp + weight: 3 + settings: + date_format: short + custom_date_format: '' + timezone: '' + third_party_settings: { } + region: content + state: + type: list_default + weight: 4 + label: inline + settings: { } + third_party_settings: { } + region: content + total_price: + type: commerce_order_total_summary + weight: 6 + settings: { } + third_party_settings: { } + label: hidden + region: content +hidden: + changed: true + ip_address: true + store_id: true + uid: true diff --git a/config/sync/core.entity_view_display.commerce_order_item.default.default.yml b/config/sync/core.entity_view_display.commerce_order_item.default.default.yml new file mode 100644 index 0000000..c503aa5 --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_order_item.default.default.yml @@ -0,0 +1,58 @@ +uuid: 20a542ca-ed69-418a-b9bf-652849284715 +langcode: en +status: true +dependencies: + config: + - commerce_order.commerce_order_item_type.default + enforced: + module: + - commerce_product + module: + - commerce_price +_core: + default_config_hash: YvPk7-s7bZEOuxWBbu1G5wo4qc-OOnZpmCwPUdhp40o +id: commerce_order_item.default.default +targetEntityType: commerce_order_item +bundle: default +mode: default +content: + purchased_entity: + type: entity_reference_entity_view + weight: 0 + settings: + view_mode: default + link: false + third_party_settings: { } + label: above + region: content + quantity: + type: number_decimal + weight: 1 + settings: + thousand_separator: '' + decimal_separator: . + scale: 2 + prefix_suffix: true + third_party_settings: { } + label: above + region: content + total_price: + type: commerce_price_default + weight: 3 + settings: + strip_trailing_zeroes: false + display_currency_code: false + third_party_settings: { } + label: above + region: content + unit_price: + type: commerce_price_default + weight: 2 + settings: + strip_trailing_zeroes: false + display_currency_code: false + third_party_settings: { } + label: above + region: content +hidden: + adjustments: true diff --git a/config/sync/core.entity_view_display.commerce_product.default.default.yml b/config/sync/core.entity_view_display.commerce_product.default.default.yml new file mode 100644 index 0000000..e44c2dd --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_product.default.default.yml @@ -0,0 +1,41 @@ +uuid: 8aa700e4-7772-4675-b4cb-2f17a89ac259 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.default + - field.field.commerce_product.default.body + - field.field.commerce_product.default.stores + - field.field.commerce_product.default.variations + module: + - commerce_product + - text +_core: + default_config_hash: gT03TFcuSod4d9uPQNs_gqK1F1QZ0Ray5CBYW0BNLnk +id: commerce_product.default.default +targetEntityType: commerce_product +bundle: default +mode: default +content: + body: + type: text_default + weight: 0 + label: hidden + settings: { } + third_party_settings: { } + region: content + variations: + type: commerce_add_to_cart + weight: 1 + label: hidden + settings: + default_quantity: '1' + combine: true + show_quantity: false + third_party_settings: { } + region: content +hidden: + created: true + langcode: true + stores: true + uid: true diff --git a/config/sync/core.entity_view_display.commerce_store.online.default.yml b/config/sync/core.entity_view_display.commerce_store.online.default.yml new file mode 100644 index 0000000..6fb02ca --- /dev/null +++ b/config/sync/core.entity_view_display.commerce_store.online.default.yml @@ -0,0 +1,28 @@ +uuid: e5d01c6e-1477-4cc3-a95e-47f8f4de4c74 +langcode: en +status: true +dependencies: + config: + - commerce_store.commerce_store_type.online + module: + - address +_core: + default_config_hash: fUxrlZt5z8U8dKAADqGtH0YQWZSVXIkH9Ga5abq8HwU +id: commerce_store.online.default +targetEntityType: commerce_store +bundle: online +mode: default +content: + address: + type: address_default + weight: 1 + label: above + settings: { } + third_party_settings: { } + region: content +hidden: + billing_countries: true + default_currency: true + langcode: true + mail: true + name: true diff --git a/config/sync/core.entity_view_display.profile.customer.default.yml b/config/sync/core.entity_view_display.profile.customer.default.yml new file mode 100644 index 0000000..b53af50 --- /dev/null +++ b/config/sync/core.entity_view_display.profile.customer.default.yml @@ -0,0 +1,27 @@ +uuid: 815941bc-e128-4592-9c76-5dd200be7589 +langcode: en +status: true +dependencies: + config: + - field.field.profile.customer.address + - profile.type.customer + enforced: + module: + - commerce_order + module: + - address +_core: + default_config_hash: '-D8G44VGLIAIFvoHm_u7-Awnie4iCenOWfldrpNy_ys' +id: profile.customer.default +targetEntityType: profile +bundle: customer +mode: default +content: + address: + type: address_default + weight: 0 + label: hidden + settings: { } + third_party_settings: { } + region: content +hidden: { } diff --git a/config/sync/core.entity_view_mode.commerce_order.user.yml b/config/sync/core.entity_view_mode.commerce_order.user.yml new file mode 100644 index 0000000..f4282e7 --- /dev/null +++ b/config/sync/core.entity_view_mode.commerce_order.user.yml @@ -0,0 +1,12 @@ +uuid: ed109b39-2b57-4ba9-8154-ff9e7b716f2f +langcode: en +status: true +dependencies: + module: + - commerce_order +_core: + default_config_hash: zGcQPC5MWgNSsQxarSWsXNIVpjb_vDAdcDLPupYmxQ8 +id: commerce_order.user +label: User +targetEntityType: commerce_order +cache: true diff --git a/config/sync/core.extension.yml b/config/sync/core.extension.yml index 75a59ab..d94e2c5 100644 --- a/config/sync/core.extension.yml +++ b/config/sync/core.extension.yml @@ -1,4 +1,5 @@ module: + address: 0 addtoany: 0 admin_toolbar: 0 automated_cron: 0 @@ -8,6 +9,12 @@ module: ckeditor: 0 color: 0 comment: 0 + commerce: 0 + commerce_order: 0 + commerce_payment: 0 + commerce_price: 0 + commerce_product: 0 + commerce_store: 0 config: 0 contact: 0 contextual: 0 @@ -22,6 +29,7 @@ module: disqus: 0 dynamic_page_cache: 0 editor: 0 + entity: 0 entity_reference_revisions: 0 field: 0 field_ui: 0 @@ -32,6 +40,7 @@ module: history: 0 hreflang: 0 image: 0 + inline_entity_form: 0 language: 0 link: 0 locale: 0 @@ -41,6 +50,7 @@ module: options: 0 page_cache: 0 path: 0 + profile: 0 quickedit: 0 rdf: 0 redirect: 0 @@ -51,6 +61,7 @@ module: serialization: 0 shortcut: 0 simple_sitemap: 0 + state_machine: 0 system: 0 taxonomy: 0 text: 0 diff --git a/config/sync/field.field.commerce_order.default.order_items.yml b/config/sync/field.field.commerce_order.default.order_items.yml new file mode 100644 index 0000000..61f5f95 --- /dev/null +++ b/config/sync/field.field.commerce_order.default.order_items.yml @@ -0,0 +1,23 @@ +uuid: 885fcec1-19bb-4287-b312-e66eef648de9 +langcode: en +status: true +dependencies: + config: + - commerce_order.commerce_order_type.default + - field.storage.commerce_order.order_items +_core: + default_config_hash: iqPSpcfsl-SdT3MtQLp1uBc4udRzM_185m3Yqd5KdTA +id: commerce_order.default.order_items +field_name: order_items +entity_type: commerce_order +bundle: default +label: 'Order items' +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:commerce_order_item' + handler_settings: { } +field_type: entity_reference diff --git a/config/sync/field.field.commerce_product.default.body.yml b/config/sync/field.field.commerce_product.default.body.yml new file mode 100644 index 0000000..f2cc981 --- /dev/null +++ b/config/sync/field.field.commerce_product.default.body.yml @@ -0,0 +1,24 @@ +uuid: df6248dd-8f12-4c7c-92c5-7f02b8cd0ce2 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.default + - field.storage.commerce_product.body + module: + - text +_core: + default_config_hash: ObNdu_OSuSmozy8UUi9cKY41dPs7s1ZOuWhG6Q5KdR8 +id: commerce_product.default.body +field_name: body +entity_type: commerce_product +bundle: default +label: Body +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + display_summary: false +field_type: text_with_summary diff --git a/config/sync/field.field.commerce_product.default.stores.yml b/config/sync/field.field.commerce_product.default.stores.yml new file mode 100644 index 0000000..e08ff9b --- /dev/null +++ b/config/sync/field.field.commerce_product.default.stores.yml @@ -0,0 +1,23 @@ +uuid: 9b24cd04-a620-42ab-a793-b1a0ecb6d827 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.default + - field.storage.commerce_product.stores +_core: + default_config_hash: RYNTEdoNOXnNo71_mrAz8Gz37XTuuUsXOZTzAYx9wI8 +id: commerce_product.default.stores +field_name: stores +entity_type: commerce_product +bundle: default +label: Stores +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:commerce_store' + handler_settings: { } +field_type: entity_reference diff --git a/config/sync/field.field.commerce_product.default.variations.yml b/config/sync/field.field.commerce_product.default.variations.yml new file mode 100644 index 0000000..ddcefb9 --- /dev/null +++ b/config/sync/field.field.commerce_product.default.variations.yml @@ -0,0 +1,26 @@ +uuid: b6f188a1-3098-4b8c-8aa2-e0ff7a9d4d42 +langcode: en +status: true +dependencies: + config: + - commerce_product.commerce_product_type.default + - commerce_product.commerce_product_variation_type.default + - field.storage.commerce_product.variations +_core: + default_config_hash: '-I2JKkD4E2ths6CAmEuI9IWXzBLBO5CcOKVIyc81CNE' +id: commerce_product.default.variations +field_name: variations +entity_type: commerce_product +bundle: default +label: Variations +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:commerce_product_variation' + handler_settings: + target_bundles: + - default +field_type: entity_reference diff --git a/config/sync/field.field.profile.customer.address.yml b/config/sync/field.field.profile.customer.address.yml new file mode 100644 index 0000000..afe858e --- /dev/null +++ b/config/sync/field.field.profile.customer.address.yml @@ -0,0 +1,37 @@ +uuid: bf500f9a-04c1-41d1-9bfb-584492f365f3 +langcode: en +status: true +dependencies: + config: + - field.storage.profile.address + - profile.type.customer + module: + - address +_core: + default_config_hash: 0lW9atu6EsqDPufp7ZJ4IVzmKSzeZv0vhbHwZ2fIh8k +id: profile.customer.address +field_name: address +entity_type: profile +bundle: customer +label: Address +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: + available_countries: { } + fields: + administrativeArea: administrativeArea + locality: locality + dependentLocality: dependentLocality + postalCode: postalCode + sortingCode: sortingCode + addressLine1: addressLine1 + addressLine2: addressLine2 + organization: organization + givenName: givenName + additionalName: additionalName + familyName: familyName + langcode_override: '' +field_type: address diff --git a/config/sync/field.field.user.user.commerce_remote_id.yml b/config/sync/field.field.user.user.commerce_remote_id.yml new file mode 100644 index 0000000..2964914 --- /dev/null +++ b/config/sync/field.field.user.user.commerce_remote_id.yml @@ -0,0 +1,26 @@ +uuid: 3d9f9f58-7439-428e-ac8a-7d550b07d481 +langcode: en +status: true +dependencies: + config: + - field.storage.user.commerce_remote_id + enforced: + module: + - commerce_payment + module: + - commerce + - user +_core: + default_config_hash: Zu4REVGzMPlwpQVE7u1sM_74HqLCp0u42VNWlAwZcIw +id: user.user.commerce_remote_id +field_name: commerce_remote_id +entity_type: user +bundle: user +label: 'Remote ID' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: commerce_remote_id diff --git a/config/sync/field.storage.commerce_order.order_items.yml b/config/sync/field.storage.commerce_order.order_items.yml new file mode 100644 index 0000000..2281b5b --- /dev/null +++ b/config/sync/field.storage.commerce_order.order_items.yml @@ -0,0 +1,21 @@ +uuid: db4e6fb5-b7f1-4832-94e0-7a0684fe58c5 +langcode: en +status: true +dependencies: + module: + - commerce_order +_core: + default_config_hash: XXkG3364KELPh2dm7U58qNcPNoUgrvC2zj9LTHF4V5E +id: commerce_order.order_items +field_name: order_items +entity_type: commerce_order +type: entity_reference +settings: + target_type: commerce_order_item +module: core +locked: true +cardinality: -1 +translatable: false +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.commerce_product.body.yml b/config/sync/field.storage.commerce_product.body.yml new file mode 100644 index 0000000..c1bfdb7 --- /dev/null +++ b/config/sync/field.storage.commerce_product.body.yml @@ -0,0 +1,21 @@ +uuid: 86e471c3-c0f9-4873-a848-15ee066d8ef9 +langcode: en +status: true +dependencies: + module: + - commerce_product + - text +_core: + default_config_hash: nhYtx4dRhENXHM78QmiysOM5d1H8OLi_837Ukf5Mpb8 +id: commerce_product.body +field_name: body +entity_type: commerce_product +type: text_with_summary +settings: { } +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.commerce_product.stores.yml b/config/sync/field.storage.commerce_product.stores.yml new file mode 100644 index 0000000..c2b6697 --- /dev/null +++ b/config/sync/field.storage.commerce_product.stores.yml @@ -0,0 +1,22 @@ +uuid: 838d8dc1-a16c-4ddf-883c-fcd6729e97e8 +langcode: en +status: true +dependencies: + module: + - commerce_product + - commerce_store +_core: + default_config_hash: qzJaXjkjRd_-1CF6EnCb5fpCcA6mnBB34P4qOOQ6n9g +id: commerce_product.stores +field_name: stores +entity_type: commerce_product +type: entity_reference +settings: + target_type: commerce_store +module: core +locked: true +cardinality: -1 +translatable: false +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.commerce_product.variations.yml b/config/sync/field.storage.commerce_product.variations.yml new file mode 100644 index 0000000..44be6b4 --- /dev/null +++ b/config/sync/field.storage.commerce_product.variations.yml @@ -0,0 +1,21 @@ +uuid: ef6b6645-1ec4-4565-a012-3aa6ad2dd65c +langcode: en +status: true +dependencies: + module: + - commerce_product +_core: + default_config_hash: '-sSnK9eimilO8WwVtSpdX2rg9gGrtSKccb6s59G_kBM' +id: commerce_product.variations +field_name: variations +entity_type: commerce_product +type: entity_reference +settings: + target_type: commerce_product_variation +module: core +locked: true +cardinality: -1 +translatable: false +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.profile.address.yml b/config/sync/field.storage.profile.address.yml new file mode 100644 index 0000000..c136226 --- /dev/null +++ b/config/sync/field.storage.profile.address.yml @@ -0,0 +1,24 @@ +uuid: 70eec3cb-f206-4151-8bbe-588ebdaa69da +langcode: en +status: true +dependencies: + enforced: + module: + - commerce_order + module: + - address + - profile +_core: + default_config_hash: Epax3eTdFPMQ3dTymm1zHnwqZ9DmyyHA0F18AMuUKtE +id: profile.address +field_name: address +entity_type: profile +type: address +settings: { } +module: address +locked: true +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/field.storage.user.commerce_remote_id.yml b/config/sync/field.storage.user.commerce_remote_id.yml new file mode 100644 index 0000000..121f8eb --- /dev/null +++ b/config/sync/field.storage.user.commerce_remote_id.yml @@ -0,0 +1,24 @@ +uuid: 9e0a3319-56c8-4147-96c2-77e8ed3a1566 +langcode: en +status: true +dependencies: + enforced: + module: + - commerce_payment + module: + - commerce + - user +_core: + default_config_hash: YLh2hnX0ZtVtJpFWUkcjkpbgJAP85JuAamng9bLk8M8 +id: user.commerce_remote_id +field_name: commerce_remote_id +entity_type: user +type: commerce_remote_id +settings: { } +module: commerce +locked: true +cardinality: -1 +translatable: false +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/config/sync/profile.type.customer.yml b/config/sync/profile.type.customer.yml new file mode 100644 index 0000000..4d6bcfe --- /dev/null +++ b/config/sync/profile.type.customer.yml @@ -0,0 +1,17 @@ +uuid: 81a47b13-d38c-4c76-b162-1c8fdf185db1 +langcode: en +status: true +dependencies: + enforced: + module: + - commerce_order +_core: + default_config_hash: PZl4AQDUouSVwavb0FNRlcbJx924n5FtCq8l73AMj5g +id: customer +label: Customer +registration: false +multiple: true +roles: { } +weight: 0 +use_revisions: false +description: null diff --git a/config/sync/system.action.commerce_order_delete_action.yml b/config/sync/system.action.commerce_order_delete_action.yml new file mode 100644 index 0000000..31655d0 --- /dev/null +++ b/config/sync/system.action.commerce_order_delete_action.yml @@ -0,0 +1,16 @@ +uuid: 3aeb525c-cc4c-48c0-b265-2cce26cf20cf +langcode: en +status: true +dependencies: + enforced: + module: + - commerce_order + module: + - entity +_core: + default_config_hash: GDUgwBmDhcGNHBz3FBgXqXvyuMJVsKy9oytH9wNOJns +id: commerce_order_delete_action +label: 'Delete order' +type: commerce_order +plugin: 'entity_delete_action:commerce_order' +configuration: { } diff --git a/config/sync/system.action.commerce_product_delete_action.yml b/config/sync/system.action.commerce_product_delete_action.yml new file mode 100644 index 0000000..4cfddbd --- /dev/null +++ b/config/sync/system.action.commerce_product_delete_action.yml @@ -0,0 +1,16 @@ +uuid: 41d4f3f4-ac11-497c-915f-6513e6744543 +langcode: en +status: true +dependencies: + enforced: + module: + - commerce_product + module: + - entity +_core: + default_config_hash: rxmGRw66r86CkHY9zkcXVic946t0v1Qn0boxBY5n6c0 +id: commerce_product_delete_action +label: 'Delete product' +type: commerce_product +plugin: 'entity_delete_action:commerce_product' +configuration: { } diff --git a/config/sync/system.action.commerce_publish_product.yml b/config/sync/system.action.commerce_publish_product.yml new file mode 100644 index 0000000..7f6baeb --- /dev/null +++ b/config/sync/system.action.commerce_publish_product.yml @@ -0,0 +1,13 @@ +uuid: 17e8c3e8-3c7c-4077-897f-5e579928aa50 +langcode: en +status: true +dependencies: + module: + - commerce_product +_core: + default_config_hash: 83abjxFWTlkso65OfwvUzv_VvAc9iIswF2kW_MGZmY8 +id: commerce_publish_product +label: 'Publish product' +type: commerce_product +plugin: commerce_publish_product +configuration: { } diff --git a/config/sync/system.action.commerce_store_delete_action.yml b/config/sync/system.action.commerce_store_delete_action.yml new file mode 100644 index 0000000..df862e5 --- /dev/null +++ b/config/sync/system.action.commerce_store_delete_action.yml @@ -0,0 +1,16 @@ +uuid: fb67e5ba-77e0-4251-8f5c-ac9f9cf482b3 +langcode: en +status: true +dependencies: + enforced: + module: + - commerce_store + module: + - entity +_core: + default_config_hash: UdhJAuixyuIu-hp_uqul-Gm97CiABMd1mM6GgzdwL3I +id: commerce_store_delete_action +label: 'Delete store' +type: commerce_store +plugin: 'entity_delete_action:commerce_store' +configuration: { } diff --git a/config/sync/system.action.commerce_unpublish_product.yml b/config/sync/system.action.commerce_unpublish_product.yml new file mode 100644 index 0000000..3c441a2 --- /dev/null +++ b/config/sync/system.action.commerce_unpublish_product.yml @@ -0,0 +1,13 @@ +uuid: bfe6c7fb-c79c-4379-8e3e-bc2696489ab2 +langcode: en +status: true +dependencies: + module: + - commerce_product +_core: + default_config_hash: 6gfQWDjHFkJsE2C2ayhUL7x1jBGPgOhr3SGF15Kxy-w +id: commerce_unpublish_product +label: 'Unpublish product' +type: commerce_product +plugin: commerce_unpublish_product +configuration: { } diff --git a/config/sync/system.action.profile_delete_action.yml b/config/sync/system.action.profile_delete_action.yml new file mode 100644 index 0000000..d11a651 --- /dev/null +++ b/config/sync/system.action.profile_delete_action.yml @@ -0,0 +1,13 @@ +uuid: 9da19917-e454-4357-b8bd-3269ac3bdd1a +langcode: en +status: true +dependencies: + module: + - profile +_core: + default_config_hash: 7iaCHiR7rJnpuIcqcYxtZ6OFm7HnFfjZJdE1s-8K4RM +id: profile_delete_action +label: 'Delete selected profile' +type: profile +plugin: profile_delete_action +configuration: { } diff --git a/config/sync/system.action.profile_publish_action.yml b/config/sync/system.action.profile_publish_action.yml new file mode 100644 index 0000000..3d8f80b --- /dev/null +++ b/config/sync/system.action.profile_publish_action.yml @@ -0,0 +1,13 @@ +uuid: 3f230955-76f0-457a-be92-e737c124b203 +langcode: en +status: true +dependencies: + module: + - profile +_core: + default_config_hash: dz5_l09fj1m6b4MZVYlHjYHsXSlG9aQHGGoupPb8phg +id: profile_publish_action +label: 'Publish selected profile' +type: profile +plugin: profile_publish_action +configuration: { } diff --git a/config/sync/system.action.profile_unpublish_action.yml b/config/sync/system.action.profile_unpublish_action.yml new file mode 100644 index 0000000..8ccfd12 --- /dev/null +++ b/config/sync/system.action.profile_unpublish_action.yml @@ -0,0 +1,13 @@ +uuid: dc108031-f559-4a41-8ae2-074eee90161d +langcode: en +status: true +dependencies: + module: + - profile +_core: + default_config_hash: QWiXic0BIuoYYgvkiSTxsCsPPi7k1mYuHOTIAPhoT4Q +id: profile_unpublish_action +label: 'Unpublish selected profile' +type: profile +plugin: profile_unpublish_action +configuration: { } diff --git a/config/sync/user.role.anonymous.yml b/config/sync/user.role.anonymous.yml index f9d1dda..e717105 100644 --- a/config/sync/user.role.anonymous.yml +++ b/config/sync/user.role.anonymous.yml @@ -12,4 +12,5 @@ permissions: - 'access comments' - 'access content' - 'search content' + - 'view commerce_product' - 'view disqus comments' diff --git a/config/sync/user.role.authenticated.yml b/config/sync/user.role.authenticated.yml index dac39ab..b880310 100644 --- a/config/sync/user.role.authenticated.yml +++ b/config/sync/user.role.authenticated.yml @@ -17,4 +17,5 @@ permissions: - 'search content' - 'skip comment approval' - 'use text format full_html' + - 'view commerce_product' - 'view disqus comments' diff --git a/config/sync/views.view.commerce_order_item_table.yml b/config/sync/views.view.commerce_order_item_table.yml new file mode 100644 index 0000000..39b6a82 --- /dev/null +++ b/config/sync/views.view.commerce_order_item_table.yml @@ -0,0 +1,400 @@ +uuid: dc2c0a44-a6ee-47d4-b3cf-6b59e5e1300a +langcode: en +status: true +dependencies: + module: + - commerce_order + - commerce_price +_core: + default_config_hash: n9Ex_quBSEoJSBauWflhu627_KJLiobwpc1HvKLcv8Q +id: commerce_order_item_table +label: 'Order items' +module: views +description: 'Display a set of order items in a table.' +tag: '' +base_table: commerce_order_item +base_field: order_item_id +core: 8.x +display: + default: + display_plugin: default + id: default + display_title: Master + position: 0 + display_options: + access: + type: none + options: { } + cache: + type: tag + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + pager: + type: none + options: + offset: 0 + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + override: true + sticky: false + caption: '' + summary: '' + description: '' + columns: + title: title + info: + title: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + default: '-1' + empty_table: false + row: + type: fields + options: + inline: { } + separator: '' + hide_empty: false + default_field_elements: true + fields: + title: + id: title + table: commerce_order_item + field: title + relationship: none + group_type: group + admin_label: '' + label: Title + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: false + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: null + entity_field: title + plugin_id: field + unit_price__number: + id: unit_price__number + table: commerce_order_item + field: unit_price__number + relationship: none + group_type: group + admin_label: '' + label: 'Unit price' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: number + type: commerce_price_default + settings: + strip_trailing_zeroes: false + display_currency_code: false + group_column: '' + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order_item + entity_field: unit_price + plugin_id: field + quantity: + id: quantity + table: commerce_order_item + field: quantity + relationship: none + group_type: group + admin_label: '' + label: Quantity + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: number_decimal + settings: + thousand_separator: '' + prefix_suffix: true + decimal_separator: . + scale: 2 + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order_item + entity_field: quantity + plugin_id: field + total_price__number: + id: total_price__number + table: commerce_order_item + field: total_price__number + relationship: none + group_type: group + admin_label: '' + label: 'Total price' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: number + type: commerce_price_default + settings: + strip_trailing_zeroes: false + display_currency_code: false + group_column: '' + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order_item + entity_field: total_price + plugin_id: field + filters: { } + sorts: { } + header: { } + footer: { } + empty: { } + relationships: { } + arguments: + order_id: + id: order_id + table: commerce_order_item + field: order_id + relationship: none + group_type: group + admin_label: '' + default_action: 'not found' + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + items_per_page: 25 + override: false + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + break_phrase: false + not: false + entity_type: commerce_order_item + entity_field: order_id + plugin_id: numeric + display_extenders: { } + cache_metadata: + max-age: 0 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + tags: { } diff --git a/config/sync/views.view.commerce_orders.yml b/config/sync/views.view.commerce_orders.yml new file mode 100644 index 0000000..531170b --- /dev/null +++ b/config/sync/views.view.commerce_orders.yml @@ -0,0 +1,983 @@ +uuid: 333871c8-138f-4581-96ec-0bcd746a9d64 +langcode: en +status: true +dependencies: + module: + - commerce + - commerce_order + - commerce_price + - commerce_store + - options + - state_machine + - system + - user +_core: + default_config_hash: tpDt6NuuckyWNxkctwBhb-wOuIK--Fk8OBMk6OuRCZg +id: commerce_orders +label: Orders +module: views +description: '' +tag: Commerce +base_table: commerce_order +base_field: order_id +core: 8.x +display: + default: + display_plugin: default + id: default + display_title: Master + position: 0 + display_options: + access: + type: perm + options: + perm: 'access commerce_order overview' + cache: + type: none + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + exposed_form: + type: basic + options: + submit_button: Filter + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + pager: + type: full + options: + items_per_page: 50 + offset: 0 + id: 0 + total_pages: null + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + tags: + previous: '‹ previous' + next: 'next ›' + first: '« first' + last: 'last »' + quantity: 9 + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + override: true + sticky: false + caption: '' + summary: '' + description: '' + columns: + order_number: order_number + placed: placed + type: type + store_id: store_id + uid: uid + mail: uid + state: state + total_price__number: total_price__number + operations: operations + info: + order_number: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + placed: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + type: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: true + responsive: priority-medium + store_id: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: true + responsive: priority-medium + uid: + sortable: false + default_sort_order: asc + align: '' + separator: '
' + empty_column: false + responsive: '' + mail: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + state: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + total_price__number: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + operations: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + default: placed + empty_table: true + row: + type: fields + fields: + commerce_order_bulk_form: + id: commerce_order_bulk_form + table: commerce_order + field: commerce_order_bulk_form + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + action_title: 'With selection' + include_exclude: exclude + selected_actions: { } + entity_type: commerce_order + plugin_id: bulk_form + order_number: + id: order_number + table: commerce_order + field: order_number + relationship: none + group_type: group + admin_label: '' + label: '#' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: true + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: null + entity_field: order_number + plugin_id: field + placed: + id: placed + table: commerce_order + field: placed + relationship: none + group_type: group + admin_label: '' + label: Date + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: N/A + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: timestamp + settings: + date_format: short + custom_date_format: '' + timezone: '' + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order + entity_field: placed + plugin_id: field + type: + id: type + table: commerce_order + field: type + relationship: none + group_type: group + admin_label: '' + label: Type + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: false + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + hide_single_bundle: true + entity_type: commerce_order + entity_field: type + plugin_id: commerce_entity_bundle + store_id: + id: store_id + table: commerce_order + field: store_id + relationship: none + group_type: group + admin_label: '' + label: Store + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: true + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + hide_single_store: true + entity_type: commerce_order + entity_field: store_id + plugin_id: commerce_store + uid: + id: uid + table: commerce_order + field: uid + relationship: none + group_type: group + admin_label: '' + label: Customer + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: true + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order + entity_field: uid + plugin_id: field + mail: + id: mail + table: commerce_order + field: mail + relationship: none + group_type: group + admin_label: '' + label: Email + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: basic_string + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order + entity_field: mail + plugin_id: field + state: + id: state + table: commerce_order + field: state + relationship: none + group_type: group + admin_label: '' + label: State + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: list_default + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order + entity_field: status + plugin_id: field + total_price__number: + id: total_price__number + table: commerce_order + field: total_price__number + relationship: none + group_type: group + admin_label: '' + label: Total + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: number + type: commerce_price_default + settings: + strip_trailing_zeroes: false + display_currency_code: false + group_column: '' + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order + entity_field: total_price + plugin_id: field + operations: + id: operations + table: commerce_order + field: operations + relationship: none + group_type: group + admin_label: '' + label: Operations + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + destination: true + entity_type: commerce_order + plugin_id: entity_operations + filters: + order_number: + id: order_number + table: commerce_order + field: order_number + relationship: none + group_type: group + admin_label: '' + operator: starts + value: '' + group: 1 + exposed: true + expose: + operator_id: order_number_op + label: 'Order number' + description: '' + use_operator: false + operator: order_number_op + identifier: order_number + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: commerce_order + entity_field: order_number + plugin_id: string + type: + id: type + table: commerce_order + field: type + relationship: none + group_type: group + admin_label: '' + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: type_op + label: Type + description: '' + use_operator: false + operator: type_op + identifier: type + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + hide_single_bundle: true + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: commerce_order + entity_field: type + plugin_id: commerce_entity_bundle + state: + id: state + table: commerce_order + field: state + relationship: none + group_type: group + admin_label: '' + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: state_op + label: State + description: '' + use_operator: false + operator: state_op + identifier: state + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: commerce_order + entity_field: state + plugin_id: state_machine_state + sorts: { } + title: Orders + header: { } + footer: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + empty: true + tokenize: false + content: 'No orders available.' + plugin_id: text_custom + relationships: { } + arguments: { } + display_extenders: { } + use_ajax: false + filter_groups: + operator: AND + groups: + 1: AND + cache_metadata: + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + cacheable: false + max-age: 0 + tags: { } + page_1: + display_plugin: page + id: page_1 + display_title: Page + position: 1 + display_options: + display_extenders: { } + path: admin/commerce/orders/list + menu: + type: 'default tab' + title: Orders + description: '' + expanded: false + parent: '' + weight: -10 + context: '0' + menu_name: main + tab_options: + type: normal + title: Orders + description: 'Manage your orders.' + weight: 0 + cache_metadata: + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + cacheable: false + max-age: 0 + tags: { } diff --git a/config/sync/views.view.commerce_products.yml b/config/sync/views.view.commerce_products.yml new file mode 100644 index 0000000..a0ee285 --- /dev/null +++ b/config/sync/views.view.commerce_products.yml @@ -0,0 +1,629 @@ +uuid: 4bdae241-ffc5-4617-bdf9-408bce5d2981 +langcode: en +status: true +dependencies: + module: + - commerce + - commerce_product + - system + - user +_core: + default_config_hash: lTfF_aenIIJ8YnvaratQgGpNEkFtA7tSDiElcgecVQo +id: commerce_products +label: Products +module: views +description: '' +tag: Commerce +base_table: commerce_product_field_data +base_field: product_id +core: 8.x +display: + default: + display_plugin: default + id: default + display_title: Master + position: 0 + display_options: + access: + type: perm + options: + perm: 'access commerce_product overview' + cache: + type: none + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + exposed_form: + type: basic + options: + submit_button: Filter + reset_button: true + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + pager: + type: full + options: + items_per_page: 50 + offset: 0 + id: 0 + total_pages: null + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + tags: + previous: '‹ previous' + next: 'next ›' + first: '« first' + last: 'last »' + quantity: 9 + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + override: true + sticky: true + caption: '' + summary: '' + description: '' + columns: + title: title + type: type + status: status + changed: changed + operations: operations + info: + title: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + type: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: true + responsive: '' + status: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + changed: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + operations: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + default: changed + empty_table: true + row: + type: fields + fields: + commerce_product_bulk_form: + id: commerce_product_bulk_form + table: commerce_product + field: commerce_product_bulk_form + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + action_title: 'With selection' + include_exclude: exclude + selected_actions: { } + entity_type: commerce_product + plugin_id: bulk_form + title: + id: title + table: commerce_product_field_data + field: title + relationship: none + group_type: group + admin_label: '' + label: Title + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: true + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: null + entity_field: title + plugin_id: field + type: + id: type + table: commerce_product_field_data + field: type + relationship: none + group_type: group + admin_label: '' + label: Type + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: false + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + hide_single_bundle: true + entity_type: commerce_product + entity_field: type + plugin_id: commerce_entity_bundle + status: + id: status + table: commerce_product_field_data + field: status + relationship: none + group_type: group + admin_label: '' + label: Status + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: boolean + settings: + format: custom + format_custom_true: Published + format_custom_false: Unpublished + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_product + entity_field: status + plugin_id: field + changed: + id: changed + table: commerce_product_field_data + field: changed + relationship: none + group_type: group + admin_label: '' + label: Updated + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: timestamp + settings: + date_format: short + custom_date_format: '' + timezone: '' + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_product + entity_field: changed + plugin_id: field + operations: + id: operations + table: commerce_product + field: operations + relationship: none + group_type: group + admin_label: '' + label: Operations + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + destination: true + entity_type: commerce_product + plugin_id: entity_operations + filters: + type: + id: type + table: commerce_product_field_data + field: type + relationship: none + group_type: group + admin_label: '' + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: type_op + label: Type + description: '' + use_operator: false + operator: type_op + identifier: type + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + hide_single_bundle: true + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: commerce_product + entity_field: type + plugin_id: commerce_entity_bundle + title: + id: title + table: commerce_product_field_data + field: title + relationship: none + group_type: group + admin_label: '' + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: title_op + label: Title + description: '' + use_operator: false + operator: title_op + identifier: title + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: commerce_product + entity_field: title + plugin_id: string + sorts: { } + title: Products + header: { } + footer: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + empty: true + tokenize: false + content: 'No products available.' + plugin_id: text_custom + relationships: { } + arguments: { } + display_extenders: { } + cache_metadata: + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + cacheable: false + max-age: 0 + tags: { } + page_1: + display_plugin: page + id: page_1 + display_title: Page + position: 1 + display_options: + display_extenders: { } + path: admin/commerce/products + cache_metadata: + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + cacheable: false + max-age: 0 + tags: { } diff --git a/config/sync/views.view.commerce_stores.yml b/config/sync/views.view.commerce_stores.yml new file mode 100644 index 0000000..2fca7bb --- /dev/null +++ b/config/sync/views.view.commerce_stores.yml @@ -0,0 +1,439 @@ +uuid: 2aa66e28-50b3-4141-9bb2-46e94a07fd9d +langcode: en +status: true +dependencies: + module: + - commerce + - commerce_store + - system + - user +_core: + default_config_hash: '-X1gJHmWCoN8z6urr4N2eYcfT9_kGyKMCoS1kh1IbPQ' +id: commerce_stores +label: Stores +module: views +description: '' +tag: Commerce +base_table: commerce_store_field_data +base_field: store_id +core: 8.x +display: + default: + display_plugin: default + id: default + display_title: Master + position: 0 + display_options: + access: + type: perm + options: + perm: 'access commerce_store overview' + cache: + type: none + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + pager: + type: full + options: + items_per_page: 50 + offset: 0 + id: 0 + total_pages: null + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + tags: + previous: '‹ previous' + next: 'next ›' + first: '« first' + last: 'last »' + quantity: 9 + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + override: true + sticky: false + caption: '' + summary: '' + description: '' + columns: + name: name + type: type + operations: operations + info: + name: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + type: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: true + responsive: '' + operations: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + default: '-1' + empty_table: true + row: + type: fields + fields: + commerce_store_bulk_form: + id: commerce_store_bulk_form + table: commerce_store + field: commerce_store_bulk_form + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + action_title: 'With selection' + include_exclude: exclude + selected_actions: { } + entity_type: commerce_store + plugin_id: bulk_form + name: + id: name + table: commerce_store_field_data + field: name + relationship: none + group_type: group + admin_label: '' + label: Name + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: false + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: null + entity_field: name + plugin_id: field + type: + id: type + table: commerce_store_field_data + field: type + relationship: none + group_type: group + admin_label: '' + label: Type + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: false + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + hide_single_bundle: true + entity_type: commerce_store + entity_field: type + plugin_id: commerce_entity_bundle + operations: + id: operations + table: commerce_store + field: operations + relationship: none + group_type: group + admin_label: '' + label: Operations + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + destination: false + entity_type: commerce_store + plugin_id: entity_operations + filters: + type: + id: type + table: commerce_store_field_data + field: type + relationship: none + group_type: group + admin_label: '' + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: type_op + label: Type + description: '' + use_operator: false + operator: type_op + identifier: type + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + hide_single_bundle: true + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: commerce_store + entity_field: type + plugin_id: commerce_entity_bundle + sorts: { } + title: Stores + header: { } + footer: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + empty: true + tokenize: false + content: 'No stores available.' + plugin_id: text_custom + relationships: { } + arguments: { } + display_extenders: { } + cache_metadata: + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + cacheable: false + max-age: 0 + tags: { } + page_1: + display_plugin: page + id: page_1 + display_title: Page + position: 1 + display_options: + display_extenders: { } + path: admin/commerce/config/stores + cache_metadata: + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user.permissions + cacheable: false + max-age: 0 + tags: { } diff --git a/config/sync/views.view.commerce_user_orders.yml b/config/sync/views.view.commerce_user_orders.yml new file mode 100644 index 0000000..eb04e6c --- /dev/null +++ b/config/sync/views.view.commerce_user_orders.yml @@ -0,0 +1,596 @@ +uuid: d20fadfb-c23d-457a-89a8-086a7451eb58 +langcode: en +status: true +dependencies: + module: + - commerce_order + - commerce_price + - options + - state_machine + - user +_core: + default_config_hash: InlzG5jd3RryfIKQvjJqhVyA8SOyJmmXfjdl5l8eYD8 +id: commerce_user_orders +label: 'User orders' +module: views +description: 'Display a list of placed orders for a user.' +tag: Commerce +base_table: commerce_order +base_field: order_id +core: 8.x +display: + default: + display_plugin: default + id: default + display_title: Master + position: 0 + display_options: + access: + type: perm + options: + perm: 'view own commerce_order' + cache: + type: tag + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + pager: + type: full + options: + items_per_page: 25 + offset: 0 + id: 0 + total_pages: null + tags: + previous: '‹ Previous' + next: 'Next ›' + first: '« First' + last: 'Last »' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + quantity: 9 + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + override: true + sticky: false + caption: '' + summary: '' + description: '' + columns: + order_number: order_number + placed: placed + total_price__number: total_price__number + state: state + info: + order_number: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + created: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + placed: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + total_price__number: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + state: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + default: placed + empty_table: false + row: + type: fields + fields: + order_id: + id: order_id + table: commerce_order + field: order_id + relationship: none + group_type: group + admin_label: '' + label: ID + exclude: true + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: number_integer + settings: + thousand_separator: '' + prefix_suffix: true + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order + entity_field: order_id + plugin_id: field + order_number: + id: order_number + table: commerce_order + field: order_number + relationship: none + group_type: group + admin_label: '' + label: 'Order number' + exclude: false + alter: + alter_text: false + text: '' + make_link: true + path: 'user/{{ arguments.uid }}/orders/{{ order_id }}' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: false + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: null + entity_field: order_number + plugin_id: field + placed: + id: placed + table: commerce_order + field: placed + relationship: none + group_type: group + admin_label: '' + label: Date + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: timestamp + settings: + date_format: short + custom_date_format: '' + timezone: '' + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order + entity_field: placed + plugin_id: field + total_price__number: + id: total_price__number + table: commerce_order + field: total_price__number + relationship: none + group_type: group + admin_label: '' + label: Total + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: number + type: commerce_price_default + settings: + strip_trailing_zeroes: false + display_currency_code: false + group_column: '' + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order + entity_field: total_price + plugin_id: field + state: + id: state + table: commerce_order + field: state + relationship: none + group_type: group + admin_label: '' + label: State + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: list_default + settings: { } + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: commerce_order + entity_field: state + plugin_id: field + filters: + state: + id: state + table: commerce_order + field: state + relationship: none + group_type: group + admin_label: '' + operator: 'not in' + value: + draft: draft + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: commerce_order + entity_field: state + plugin_id: state_machine_state + sorts: { } + title: Orders + header: { } + footer: { } + empty: + area: + id: area + table: views + field: area + relationship: none + group_type: group + admin_label: '' + empty: true + tokenize: false + content: + value: 'You have not placed any orders with us yet.' + format: basic_html + plugin_id: text + relationships: { } + arguments: + uid: + id: uid + table: commerce_order + field: uid + relationship: none + group_type: group + admin_label: '' + default_action: 'not found' + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + items_per_page: 25 + override: false + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: true + validate: + type: commerce_current_user + fail: 'not found' + validate_options: + admin_permission: 'administer commerce_order' + break_phrase: false + not: false + entity_type: commerce_order + entity_field: uid + plugin_id: numeric + display_extenders: { } + cache_metadata: + max-age: 0 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user + - user.permissions + tags: { } + order_page: + display_plugin: page + id: order_page + display_title: 'User orders' + position: 1 + display_options: + display_extenders: { } + path: user/%user/orders + menu: + type: tab + title: Orders + description: '' + expanded: false + parent: '' + weight: 0 + context: '0' + menu_name: account + display_description: '' + cache_metadata: + max-age: 0 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user + - user.permissions + tags: { } diff --git a/config/sync/views.view.profiles.yml b/config/sync/views.view.profiles.yml new file mode 100644 index 0000000..44a5201 --- /dev/null +++ b/config/sync/views.view.profiles.yml @@ -0,0 +1,384 @@ +uuid: 09f84ac5-6d06-4071-8638-33f4e30277e9 +langcode: en +status: true +dependencies: + module: + - profile +_core: + default_config_hash: YD0hw-cg1_R36IQ1hO2vQlrhYAQqM7kF6mw3hFGrwI8 +id: profiles +label: Profiles +module: views +description: '' +tag: '' +base_table: profile +base_field: profile_id +core: 8.x +display: + default: + display_plugin: default + id: default + display_title: Master + position: 0 + display_options: + access: + type: none + options: { } + cache: + type: tag + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + pager: + type: none + options: + offset: 0 + style: + type: grid + options: + grouping: { } + columns: 4 + automatic_width: true + alignment: horizontal + col_class_default: true + col_class_custom: '' + row_class_default: true + row_class_custom: '' + row: + type: fields + options: + inline: { } + separator: '' + hide_empty: false + default_field_elements: true + fields: + rendered_entity: + id: rendered_entity + table: profile + field: rendered_entity + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + view_mode: default + entity_type: profile + plugin_id: rendered_entity + operations: + id: operations + table: profile + field: operations + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + destination: true + entity_type: profile + plugin_id: entity_operations + filters: { } + sorts: { } + header: { } + footer: { } + empty: { } + relationships: { } + arguments: + uid: + id: uid + table: profile + field: uid + relationship: none + group_type: group + admin_label: '' + default_action: default + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: user + default_argument_options: + user: false + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + items_per_page: 25 + override: false + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + break_phrase: false + not: false + entity_type: profile + entity_field: uid + plugin_id: numeric + type: + id: type + table: profile + field: type + relationship: none + group_type: group + admin_label: '' + default_action: ignore + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + items_per_page: 25 + override: false + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: true + validate: + type: 'entity:profile_type' + fail: 'not found' + validate_options: { } + glossary: false + limit: 0 + case: none + path_case: none + transform_dash: false + break_phrase: false + entity_type: profile + entity_field: type + plugin_id: string + status: + id: status + table: profile + field: status + relationship: none + group_type: group + admin_label: '' + default_action: ignore + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + items_per_page: 25 + override: false + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + break_phrase: false + not: false + entity_type: profile + entity_field: status + plugin_id: numeric + display_extenders: { } + title: Profiles + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url + tags: { } + profile_type_listing: + display_plugin: embed + id: profile_type_listing + display_title: 'Profile type listing' + position: 1 + display_options: + display_extenders: { } + display_description: '' + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url + tags: { } + user_view: + display_plugin: embed + id: user_view + display_title: 'User view' + position: 2 + display_options: + display_extenders: { } + fields: + rendered_entity: + id: rendered_entity + table: profile + field: rendered_entity + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + view_mode: default + entity_type: profile + plugin_id: rendered_entity + defaults: + fields: false + display_description: '' + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url + tags: { }