diff options
Diffstat (limited to 'data/templates/bookmarks-vote.inc.tpl.php')
-rw-r--r-- | data/templates/bookmarks-vote.inc.tpl.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/data/templates/bookmarks-vote.inc.tpl.php b/data/templates/bookmarks-vote.inc.tpl.php new file mode 100644 index 0000000..89818f8 --- /dev/null +++ b/data/templates/bookmarks-vote.inc.tpl.php @@ -0,0 +1,26 @@ +<?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; +} +echo '<span class="vote-badge">'; +if (!$row['hasVoted']) { + echo '<a class="vote-for" href="' + . createVoteURL(true, $row['bId']) . '">+</a>'; +} else { + echo '<span class="vote-against-i">+</span>'; +} +echo '<span class="voting">' . $row['bVoting'] . '</span>'; +if (!$row['hasVoted']) { + echo '<a class="vote-against" href="' + . createVoteURL(false, $row['bId']) . '">-</a>'; +} else { + echo '<span class="vote-against-i">-</span>'; +} +echo '</span>'; +?>
\ No newline at end of file |