commerce_vbo_views.rules_defaults.inc in Commerce VBO Views 7
File
commerce_vbo_views.rules_defaults.inc
View source
<?php
function commerce_vbo_views_default_rules_configuration() {
$items = array();
$items['rules_disable_product'] = entity_import('rules_config', '{ "rules_disable_product" : {
"LABEL" : "Disable product",
"PLUGIN" : "action set",
"TAGS" : [ "commerce_vbo_views" ],
"REQUIRES" : [ "rules" ],
"USES VARIABLES" : { "commerce_product" : { "label" : "Commerce Product", "type" : "commerce_product" } },
"ACTION SET" : [
{ "data_set" : { "data" : [ "commerce-product:status" ], "value" : "0" } }
]
}
}');
$items['rules_enable_product'] = entity_import('rules_config', '{ "rules_enable_product" : {
"LABEL" : "Enable product",
"PLUGIN" : "action set",
"TAGS" : [ "commerce_vbo_views" ],
"REQUIRES" : [ "rules" ],
"USES VARIABLES" : { "commerce_product" : { "label" : "Commerce Product", "type" : "commerce_product" } },
"ACTION SET" : [
{ "data_set" : { "data" : [ "commerce-product:status" ], "value" : "1" } }
]
}
}');
return $items;
}