Hahah
AAA |
BBB |
CCC |
111 |
222 |
333 |
aaa |
bbb |
ccc |
| diff --git a/plugins/restful/RestfulEntityBase.php b/plugins/restful/RestfulEntityBase.php | |
| index 4155075..4c29f96 100644 | |
| --- a/plugins/restful/RestfulEntityBase.php | |
| +++ b/plugins/restful/RestfulEntityBase.php | |
| @@ -460,6 +460,15 @@ abstract class RestfulEntityBase extends \RestfulDataProviderEFQ implements \Res | |
| elseif ($field['type'] == 'taxonomy_term_reference') { | |
| return 'taxonomy_term'; | |
| } | |
| + elseif ($field['type'] == 'commerce_product_reference') { | |
| + return 'commerce_product'; |
| package com.jmedeisis.draglinearlayout; | |
| import android.animation.Animator; | |
| import android.animation.AnimatorListenerAdapter; | |
| import android.animation.LayoutTransition; | |
| import android.animation.ObjectAnimator; | |
| import android.animation.ValueAnimator; | |
| import android.content.Context; | |
| import android.content.res.Resources; | |
| import android.content.res.TypedArray; |
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Elm • TodoMVC</title> | |
| <script type="text/javascript" src="myelm.js"></script> | |
| <link rel="stylesheet" href="style.css"> | |
| </head> |
| port module MyTodo exposing (..) | |
| {-| TodoMVC implemented in Elm, using plain HTML and CSS for rendering. | |
| This application is broken up into three key parts: | |
| 1. Model - a full definition of the application's state | |
| 2. Update - a way to step the application state forward | |
| 3. View - a way to visualize our application state with HTML |
| module Login exposing (..) | |
| import Html exposing (Html, div, p, input, button, text) | |
| import Html.Attributes exposing (type_, name, value, placeholder) | |
| import Html.Events exposing (onInput, onClick) | |
| import Http | |
| import Json.Decode as Json | |
| import Json.Decode.Pipeline exposing (decode, required) | |
| import Base64 |
| diff --git a/modules/order/commerce_order.info.yml b/modules/order/commerce_order.info.yml | |
| index d7edcd74a..1c31916ba 100644 | |
| --- a/modules/order/commerce_order.info.yml | |
| +++ b/modules/order/commerce_order.info.yml | |
| @@ -11,6 +11,7 @@ dependencies: | |
| - options | |
| - profile | |
| - state_machine | |
| + - commerce:commerce_product | |
| config_devel: |
| diff --git a/config/install/search_api_solr.solr_field_type.m_text_und_5_2_0.yml b/config/install/search_api_solr.solr_field_type.m_text_und_5_2_0.yml | |
| index f37be9e..0f4cb5a 100644 | |
| --- a/config/install/search_api_solr.solr_field_type.m_text_und_5_2_0.yml | |
| +++ b/config/install/search_api_solr.solr_field_type.m_text_und_5_2_0.yml | |
| @@ -26,7 +26,7 @@ field_type: | |
| - | |
| class: solr.ManagedStopFilterFactory | |
| managed: stopwords | |
| - # ignoreCase: true | |
| + # ignoreCase: 'true' |
| diff --git a/src/GraphQL/Execution/QueryProcessor.php b/src/GraphQL/Execution/QueryProcessor.php | |
| index 941b664..a2a7f27 100644 | |
| --- a/src/GraphQL/Execution/QueryProcessor.php | |
| +++ b/src/GraphQL/Execution/QueryProcessor.php | |
| @@ -100,9 +100,9 @@ class QueryProcessor { | |
| $metadata->addCacheableDependency($container->get('metadata')); | |
| } | |
| - // Prevent caching if this is a mutation query. | |
| + // Prevent caching if this is a mutation query or an error occurs. |
| diff --git a/modules/order/commerce_order.post_update.php b/modules/order/commerce_order.post_update.php | |
| index 26dd36c..7c47d89 100644 | |
| --- a/modules/order/commerce_order.post_update.php | |
| +++ b/modules/order/commerce_order.post_update.php | |
| @@ -7,6 +7,8 @@ | |
| use Drupal\Core\Entity\Entity\EntityFormDisplay; | |
| +use Drupal\Core\Field\BaseFieldDefinition; | |
| + |