SemanticScuttle/data/templates/bookmarks-vote.inc.tpl.php

34 lines
933 B
PHP

<?php
/**
* Bookmark voting badge.
* Shows the number of votes and buttons to vote for or
* against a bookmark.
* Expects a $row variable with bookmark data
*/
if (!$GLOBALS['enableVoting']) {
return;
}
if (isset($row['hasVoted']) && !$row['hasVoted']) {
$classes = 'vote-badge vote-badge-inactive';
} else {
$classes = 'vote-badge';
}
echo '<span class="' . $classes . '">';
if (isset($row['hasVoted']) && !$row['hasVoted']) {
echo '<a class="vote-for" rel="nofollow" href="'
. createVoteURL(true, $row['bId']) . '">+</a>';
} else {
echo '<span class="vote-for-inactive">+</span>';
}
echo '<span class="voting">' . $row['bVoting'] . '</span>';
if (isset($row['hasVoted']) && !$row['hasVoted']) {
echo '<a class="vote-against" rel="nofollow" href="'
. createVoteURL(false, $row['bId']) . '">-</a>';
} else {
echo '<span class="vote-against-inactive">-</span>';
}
echo '</span>';
?>