Guest User

Untitled

a guest
Apr 19th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. { "rules_verify_pictures_removed" : {
  2. "LABEL" : "Verify pictures removed",
  3. "PLUGIN" : "reaction rule",
  4. "OWNER" : "rules",
  5. "TAGS" : [ "image" ],
  6. "REQUIRES" : [ "rules_conditional", "rules" ],
  7. "ON" : { "node_update--article" : { "bundle" : "article" } },
  8. "DO" : [
  9. { "LOOP" : {
  10. "USING" : { "list" : [ "node-unchanged:field-pictures" ] },
  11. "ITEM" : { "list_item" : "Previous list item" },
  12. "DO" : [
  13. { "CONDITIONAL" : [
  14. {
  15. "IF" : { "NOT list_contains" : { "list" : [ "node:field-pictures" ], "item" : [ "list-item" ] } },
  16. "DO" : [
  17. { "drupal_message" : { "message" : "Picture has been removed.", "type" : "warning" } }
  18. ]
  19. }
  20. ]
  21. }
  22. ]
  23. }
  24. }
  25. ]
  26. }
  27. }
Add Comment
Please, Sign In to add comment