function advpoll_votes_page in Advanced Poll 6.3
Same name and namespace in other branches
- 5 advpoll.module \advpoll_votes_page()
- 6 advpoll.pages.inc \advpoll_votes_page()
- 6.2 advpoll.pages.inc \advpoll_votes_page()
- 7.3 includes/advpoll.pages.inc \advpoll_votes_page()
- 7 includes/advpoll.pages.inc \advpoll_votes_page()
- 7.2 includes/advpoll.pages.inc \advpoll_votes_page()
Display the votes page.
1 string reference to 'advpoll_votes_page'
- advpoll_menu in ./
advpoll.module - Implementation of hook_menu().
File
- ./
advpoll.pages.inc, line 87 - Page callbacks for the advpoll module.
Code
function advpoll_votes_page($node) {
drupal_set_title(check_plain($node->title));
if ($node->show_votes || user_access('administer polls')) {
$output = t('This table lists all the recorded votes for this poll. If anonymous users are allowed to vote, they will be identified by the IP address of the computer they used when they voted.');
$header[] = array(
'data' => t('Visitor'),
'field' => 'u.name',
);
$header[] = array(
'data' => t('Date'),
'field' => 'v.timestamp',
);
$header[] = array(
'data' => t('Vote'),
'',
);
// added pager query because of pre-grouping as an intermediate fix.
$result = pager_query("\n SELECT v.uid, v.vote_source, v.timestamp, u.name\n FROM {votingapi_vote} v\n LEFT JOIN {users} u\n ON v.uid = u.uid\n WHERE v.content_type = 'advpoll'\n AND v.content_id = %d\n GROUP BY v.uid, v.vote_source, v.timestamp, u.name" . tablesort_sql($header), 20, 0, "\n SELECT COUNT( DISTINCT v.uid, v.vote_source, v.timestamp, u.name )\n FROM {votingapi_vote} v\n LEFT JOIN {users} u\n ON v.uid = u.uid\n WHERE v.content_type = 'advpoll'\n AND v.content_id =%d", $node->nid);
$uids = array();
$hostnames = array();
$timestamp = array();
while ($vote = db_fetch_object($result)) {
$uids[$vote->uid] = $vote->uid;
$hostnames[$vote->vote_source] = $vote->vote_source;
$timestamps[$vote->timestamp] = $vote->timestamp;
}
$rows = array();
if (count($uids) > 0) {
// Use db_query()'s placeholder syntax to prevent any potential SQL
// injection attacks.
$uid_placeholders = array_fill(0, count($uids), '%d');
$host_placeholders = array_fill(0, count($hostnames), "'%s'");
$time_placeholders = array_fill(0, count($timestamps), '%d');
// Here we have to select votes based on their uid+hostname+timestamp
// combination because there no unique id for the set of rankings that
// corresponds to a user's full vote on a given poll.
$query = "\n SELECT v.vote_id, v.tag, v.uid, v.vote_source, v.timestamp, v.value, u.name\n FROM {votingapi_vote} v\n LEFT JOIN {users} u\n ON v.uid = u.uid\n WHERE v.content_id = %d\n AND v.uid IN(" . implode(', ', $uid_placeholders) . ")\n AND v.vote_source IN(" . implode(', ', $host_placeholders) . ")\n AND v.timestamp IN(" . implode(', ', $time_placeholders) . ")" . tablesort_sql($header);
$parameters = array_merge(array(
$query,
$node->nid,
), array_values($uids), array_values($hostnames), array_values($timestamps));
$result = call_user_func_array('db_query', $parameters);
while ($vote = db_fetch_object($result)) {
$key = $vote->uid ? $vote->uid : $vote->vote_source . '-' . $vote->timestamp;
$rows[$key]['name'] = $vote->name ? theme('username', $vote) : check_plain($vote->vote_source);
$rows[$key]['timestamp'] = $vote->timestamp;
if ($node->type == 'advpoll_ranking') {
// Need two dimensional results (if equal rankings are allowed).
$rows[$key]['votes'][$vote->value][] = _advpoll_choice_markup($node->choice[$vote->tag]['label'], $node->format, FALSE);
}
else {
// Just need one dimensional results.
$rows[$key]['votes'][] = _advpoll_choice_markup($node->choice[$vote->tag]['label'], $node->format, FALSE);
}
}
}
$separators = array(
'advpoll_ranking' => ' > ',
'advpoll_binary' => ', ',
);
// Create strings out of each vote.
$results = array();
foreach ($rows as $key => $container) {
$ranking = $container['votes'];
asort($ranking);
$rankings = array();
if ($node->type == 'advpoll_ranking') {
// Include support for multiple choices having the same ranking.
foreach ($ranking as $vote => $choices) {
$rankings[$vote] = implode(' = ', $choices);
}
}
else {
// Just copy the previous array.
$rankings = $ranking;
}
ksort($rankings);
$results[$key]['name'] = $rows[$key]['name'];
$results[$key]['timestamp'] = format_date($rows[$key]['timestamp'], 'small');
$results[$key]['vote'] = implode($separators[$node->type], $rankings);
}
$output .= theme('table', $header, $results);
$output .= theme('pager', NULL, 20, 0);
}
else {
$output = '<div class="advpoll-cant-show-votes">' . t('This poll is configured to not display individual votes.') . '</div>';
}
// Only display the button if the user has access.
if (_advpoll_clear_votes_access($node)) {
$output .= drupal_get_form('advpoll_clear_votes_form', $node->nid);
}
print theme('page', $output);
}