function poll_permission in Drupal 7
Implements hook_permission().
File
- modules/
poll/ poll.module, line 70 - Enables your site to capture votes on different topics in the form of multiple choice questions.
Code
function poll_permission() {
$perms = array(
'vote on polls' => array(
'title' => t('Vote on polls'),
),
'cancel own vote' => array(
'title' => t('Cancel and change own votes'),
),
'inspect all votes' => array(
'title' => t('View details for all votes'),
),
);
return $perms;
}