poll_perm

Definition

poll_perm()
poll/poll.module, line 347

Description

Implementation of hook_perm().

Code

<?php
function poll_perm() {
  return array('create polls', 'vote on polls', 'cancel own vote', 'inspect all votes');
}
?>