poll_view_voting
- Versions
- 4.6 – 4.7
poll_view_voting(&$node,$teaser,$page, $block)- 5
poll_view_voting($node, $block)- 6
poll_view_voting(&$form_state, $node, $block)- 7
poll_view_voting($form, &$form_state, $node, $block = FALSE)
Generates the voting form for a poll.
Code
modules/poll/poll.module, line 369
<?php
function poll_view_voting($node, $block) {
if ($node->choice) {
$list = array();
foreach ($node->choice as $i => $choice) {
$list[$i] = check_plain($choice['chtext']);
}
$form['choice'] = array(
'#type' => 'radios',
'#title' => $block ? check_plain($node->title) : '',
'#default_value' => -1,
'#options' => $list,
);
}
$form['nid'] = array('#type' => 'hidden', '#value' => $node->nid);
$form['vote'] = array('#type' => 'submit', '#value' => t('Vote'));
$form['#action'] = url('node/'. $node->nid);
return $form;
}
?>Login or register to post comments 