Advertisement
Guest User

Untitled

a guest
Nov 18th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. { "rules_facility_modal_contact_form_email_redirect" : {
  2. "LABEL" : "Facility Modal Contact Form Email Redirect",
  3. "PLUGIN" : "reaction rule",
  4. "OWNER" : "rules",
  5. "REQUIRES" : [ "rules", "entityform" ],
  6. "ON" : { "entityform_insert" : [] },
  7. "IF" : [
  8. { "entity_is_of_bundle" : {
  9. "entity" : [ "entityform" ],
  10. "type" : "entityform",
  11. "bundle" : { "value" : { "facility_modal_contact_form" : "facility_modal_contact_form" } }
  12. }
  13. }
  14. ],
  15. "DO" : [
  16. { "entity_fetch" : {
  17. "USING" : {
  18. "type" : "node",
  19. "id" : [ "entityform:field-facility-contacted:nid" ],
  20. "revision_id" : [ "entityform:field-facility-contacted:vid" ]
  21. },
  22. "PROVIDE" : { "entity_fetched" : { "fetched" : "Fetched entity" } }
  23. }
  24. },
  25. { "component_rules_fetched_node" : {
  26. "facility" : [ "fetched" ],
  27. "facility_modal_contact_form" : [ "entityform" ]
  28. }
  29. }
  30. ]
  31. }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement