Advertisement
Guest User

Untitled

a guest
Jul 28th, 2015
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. { "rules_check_url" : {
  2. "LABEL" : "Disallow node/* access",
  3. "PLUGIN" : "reaction rule",
  4. "OWNER" : "rules",
  5. "REQUIRES" : [ "rules" ],
  6. "ON" : { "init" : [] },
  7. "IF" : [
  8. { "text_matches" : {
  9. "text" : [ "site:current-page:url" ],
  10. "match" : "node/\d+$",
  11. "operation" : "regex"
  12. }
  13. }
  14. ],
  15. "DO" : [
  16. { "drupal_message" : {
  17. "message" : "Sorry, URLs like [site:current-page:url] are not allowed around here ...",
  18. "type" : "error"
  19. }
  20. },
  21. { "redirect" : { "url" : "no_access" } }
  22. ]
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement