Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. <?php
  2. //check node/123/edit
  3. $url = request_uri();
  4.  
  5. if (arg(0) == 'node' && arg(2) == '') {
  6.  $node = node_load(arg(1));
  7.  if (strpos($url, "play") || $node->type == 'om_show' || $node->type == 'member_organization' || $node->type == 'om_timeslot_theme' || arg(1) == '7941') return FALSE;
  8. }
  9.  
  10. return TRUE;
  11.  
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement