You are here

function vote_up_down_access in Vote Up/Down 6

Implementation of hook_access() for the voting page.

1 string reference to 'vote_up_down_access'
vote_up_down_menu in ./vote_up_down.module
Implementation of hook_menu().

File

./vote_up_down.module, line 37

Code

function vote_up_down_access() {
  return user_access('use vote up') || user_access('use vote down');
}