Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- { "rules_keep_profiles_active" : {
- "LABEL" : "Keep profiles active",
- "PLUGIN" : "reaction rule",
- "REQUIRES" : [ "rules", "entity" ],
- "ON" : [ "commerce_customer_profile_insert" ],
- "DO" : [
- { "entity_query" : {
- "USING" : {
- "type" : "commerce_customer_profile",
- "property" : "uid",
- "value" : [ "commerce-customer-profile:uid" ],
- "limit" : "1000"
- },
- "PROVIDE" : { "entity_fetched" : { "old_profiles" : "old_profiles" } }
- }
- },
- { "LOOP" : {
- "USING" : { "list" : [ "old-profiles" ] },
- "ITEM" : { "old_profile" : "old_profile" },
- "DO" : [
- { "component_rules_setting_old_profiles_to_be_inactive" : {
- "USING" : {
- "created_profile" : [ "commerce-customer-profile" ],
- "old_profile" : [ "old_profile" ]
- },
- "PROVIDE" : {
- "created_profile" : { "created_profile_returned" : "created_profile_returned" },
- "old_profile" : { "old_profile_returned" : "old_profile_returned" }
- }
- }
- }
- ]
- }
- }
- ]
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement