Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 2nd, 2012  |  syntax: None  |  size: 0.28 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. /**
  2.  * Implementation of hook_init
  3.  */
  4. function webform_protect_init() {
  5.   // Make sure this is a view request for a node
  6.   if ($node = menu_get_object('node')) {
  7.  
  8.     if (_webform_protect_vca_is_protected($node)) {
  9.       _webform_protect_handle_resource($node);
  10.     }
  11.   }
  12. }