Guest User

Untitled

a guest
Jul 15th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2. $exists = db_select('node', 'n')
  3. ->fields('n', array('nid'))
  4. ->condition('type', 'blog')
  5. ->condition('uid', $account->uid)
  6. ->condition('status', 1)
  7. ->range(0, 1)
  8. ->addTag('node_access')
  9. ->execute()
  10. ->fetchField();
Add Comment
Please, Sign In to add comment