commerce_ssr.rules_defaults.inc in Commerce Stock 7.2
Default rule configurations for Commerce Simple Stock.
File
modules/commerce_ssr/commerce_ssr.rules_defaults.incView source
<?php
/**
* @file
* Default rule configurations for Commerce Simple Stock.
*/
/**
* Implements hook_default_rules_configuration().
*/
function commerce_ssr_default_rules_configuration() {
$rules = array();
if (module_exists('rules_i18n')) {
$rules_export = '{ "rules_stock_disable_add_to_cart" : {
"LABEL" : "Stock: disable add to cart ",
"PLUGIN" : "reaction rule",
"REQUIRES" : [ "commerce_ss", "rules", "rules_i18n", "commerce_stock" ],
"ON" : [ "commerce_stock_check_add_to_cart_form_state" ],
"IF" : [
{ "commerce_ss_stock_enabled_on_product" : { "commerce_product" : [ "commerce_product" ] } },
{ "commerce_ss_stock_not_disabled" : { "commerce_product" : [ "commerce_product" ] } },
{ "NOT data_is" : {
"data" : [ "commerce-product:commerce-stock" ],
"op" : "\\u003E",
"value" : "0"
}
}
],
"DO" : [
{ "rules_i18n_t" : {
"USING" : { "text" : "Out of stock", "language" : [ "site:current-page:language" ] },
"PROVIDE" : { "text" : { "stock_disable_add_to_cart_message" : "The translated text" } }
}
},
{ "commerce_stock_set_add_to_cart_form_state" : {
"disabled" : 1,
"text" : [ "stock-disable-add-to-cart-message" ],
"class_name" : "out-of-stock"
}
}
]
}}';
}
else {
$rules_export = '{ "rules_stock_disable_add_to_cart" : {
"LABEL" : "Stock: disable add to cart ",
"PLUGIN" : "reaction rule",
"REQUIRES" : [ "commerce_ss", "rules", "commerce_stock" ],
"ON" : [ "commerce_stock_check_add_to_cart_form_state" ],
"IF" : [
{ "commerce_ss_stock_enabled_on_product" : { "commerce_product" : [ "commerce_product" ] } },
{ "commerce_ss_stock_not_disabled" : { "commerce_product" : [ "commerce_product" ] } },
{ "NOT data_is" : {
"data" : [ "commerce-product:commerce-stock" ],
"op" : "\\u003e",
"value" : "0"
}
}
],
"DO" : [
{ "commerce_stock_set_add_to_cart_form_state" : { "disabled" : 1, "text" : "Out of stock", "class_name" : "out-of-stock" } }
]
}}';
}
$rules['rules_stock_disable_add_to_cart'] = rules_import($rules_export);
if (module_exists('rules_i18n')) {
$rules_export = '{ "rules_stock_validate_add_to_cart" : {
"LABEL" : "Stock: validate add to cart",
"PLUGIN" : "reaction rule",
"REQUIRES" : [ "commerce_ss", "rules", "rules_i18n", "commerce_stock" ],
"ON" : [ "commerce_stock_add_to_cart_check_product" ],
"IF" : [
{ "commerce_ss_stock_enabled_on_product" : { "commerce_product" : [ "commerce_product" ] } },
{ "commerce_ss_stock_not_disabled" : { "commerce_product" : [ "commerce_product" ] } },
{ "data_is" : {
"data" : [ "stock-requested-total" ],
"op" : "\\u003E",
"value" : [ "commerce-product:commerce-stock" ]
}
}
],
"DO" : [
{ "rules_i18n_t" : {
"USING" : {
"text" : "The maximum quantity for [commerce-product:title] that can be ordered is [commerce-product:commerce-stock-int].",
"language" : [ "site:current-page:language" ]
},
"PROVIDE" : { "text" : { "stock_validate_add_to_cart_message" : "The translated text" } }
}
},
{ "data_calc" : {
"USING" : {
"input_1" : [ "commerce-product:commerce-stock" ],
"op" : "-",
"input_2" : [ "stock-already-ordered" ]
},
"PROVIDE" : { "result" : { "approved_quantity" : "approved quantity" } }
}
},
{ "commerce_stock_add_to_cart_set_state" : {
"stock_action" : "1",
"message" : [ "stock-validate-add-to-cart-message" ],
"approved_quantity" : [ "approved-quantity" ]
}
}
]
}}';
}
else {
$rules_export = '{ "rules_stock_validate_add_to_cart" : {
"LABEL" : "Stock: validate add to cart",
"PLUGIN" : "reaction rule",
"REQUIRES" : [ "commerce_ss", "rules", "commerce_stock" ],
"ON" : [ "commerce_stock_add_to_cart_check_product" ],
"IF" : [
{ "commerce_ss_stock_enabled_on_product" : { "commerce_product" : [ "commerce_product" ] } },
{ "commerce_ss_stock_not_disabled" : { "commerce_product" : [ "commerce_product" ] } },
{ "data_is" : {
"data" : [ "stock-requested-total" ],
"op" : "\\u003E",
"value" : [ "commerce-product:commerce-stock" ]
}
}
],
"DO" : [
{ "data_calc" : {
"USING" : {
"input_1" : [ "commerce-product:commerce-stock" ],
"op" : "-",
"input_2" : [ "stock-already-ordered" ]
},
"PROVIDE" : { "result" : { "approved_quantity" : "approved quantity" } }
}
},
{ "commerce_stock_add_to_cart_set_state" : {
"stock_action" : "1",
"message" : "The maximum quantity for [commerce-product:title] that can be ordered is [commerce-product:commerce-stock-int].\\r\\n",
"approved_quantity" : [ "approved-quantity" ]
}
}
]
}}';
}
$rules['rules_stock_validate_add_to_cart'] = rules_import($rules_export);
if (module_exists('rules_i18n')) {
$rules_export = '{ "rules_stock_validate_checkout" : {
"LABEL" : "Stock: validate checkout",
"PLUGIN" : "reaction rule",
"REQUIRES" : [ "commerce_ss", "rules", "rules_i18n", "commerce_stock" ],
"ON" : [ "commerce_stock_check_product_checkout" ],
"IF" : [
{ "commerce_ss_stock_enabled_on_product" : { "commerce_product" : [ "commerce_product" ] } },
{ "commerce_ss_stock_not_disabled" : { "commerce_product" : [ "commerce_product" ] } },
{ "data_is" : {
"data" : [ "stock-already-ordered" ],
"op" : "\\u003E",
"value" : [ "commerce-product:commerce-stock" ]
}
}
],
"DO" : [
{ "rules_i18n_t" : {
"USING" : {
"text" : "The maximum quantity for [commerce-product:title] that can be ordered is [commerce-product:commerce-stock-int].",
"language" : [ "site:current-page:language" ]
},
"PROVIDE" : { "text" : { "stock_validate_checkout_message" : "The translated text" } }
}
},
{ "commerce_stock_checkout_state" : {
"stock_action" : "1",
"message" : [ "stock-validate-checkout-message" ],
"approved_quantity" : [ "commerce-product:commerce-stock" ]
}
}
]
}}';
}
else {
$rules_export = '{ "rules_stock_validate_checkout" : {
"LABEL" : "Stock: validate checkout",
"PLUGIN" : "reaction rule",
"REQUIRES" : [ "commerce_ss", "rules", "commerce_stock" ],
"ON" : [ "commerce_stock_check_product_checkout" ],
"IF" : [
{ "commerce_ss_stock_enabled_on_product" : { "commerce_product" : [ "commerce_product" ] } },
{ "commerce_ss_stock_not_disabled" : { "commerce_product" : [ "commerce_product" ] } },
{ "data_is" : {
"data" : [ "stock-already-ordered" ],
"op" : "\\u003E",
"value" : [ "commerce-product:commerce-stock" ]
}
}
],
"DO" : [
{ "commerce_stock_checkout_state" : {
"stock_action" : "1",
"message" : "The maximum quantity for [commerce-product:title] that can be ordered is [commerce-product:commerce-stock-int].",
"approved_quantity" : [ "commerce-product:commerce-stock" ]
}
}
]
}}';
}
$rules['rules_stock_validate_checkout'] = rules_import($rules_export);
return $rules;
}
Functions
Name | Description |
---|---|
commerce_ssr_default_rules_configuration | Implements hook_default_rules_configuration(). |