function poll_permission
Implements hook_permission().
Archivo
- drupal-7.x/
modules/ poll/ poll.module, line 70 - Enables your site to capture votes on different topics in the form of multiple choice questions.
Código
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;
}