poll_permission()Implements hook_permission().
modules/poll/poll.module, line 77
<?php
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 voting results'),
),
);
return $perms;
}
?>