diff options
author | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-11-02 09:38:02 +0000 |
---|---|---|
committer | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-11-02 09:38:02 +0000 |
commit | cee739e6278020dd4d79a5dcd86465c6c6a44a6c (patch) | |
tree | ac1399996ba74719599c5619fef93f0a536bc532 /data/templates/bookmarks-vote-horizontal.inc.tpl.php | |
parent | b622fda3ad7679dd0b0daaa9c45c86efc5abdaeb (diff) | |
download | semanticscuttle-cee739e6278020dd4d79a5dcd86465c6c6a44a6c.tar.gz semanticscuttle-cee739e6278020dd4d79a5dcd86465c6c6a44a6c.tar.bz2 |
add horizontal voting links and switch config setting
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@498 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'data/templates/bookmarks-vote-horizontal.inc.tpl.php')
-rw-r--r-- | data/templates/bookmarks-vote-horizontal.inc.tpl.php | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/data/templates/bookmarks-vote-horizontal.inc.tpl.php b/data/templates/bookmarks-vote-horizontal.inc.tpl.php new file mode 100644 index 0000000..acdfbf7 --- /dev/null +++ b/data/templates/bookmarks-vote-horizontal.inc.tpl.php @@ -0,0 +1,46 @@ +<?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'] || $GLOBALS['votingMode'] != 2) { + return; +} +if (!isset($row['hasVoted'])) { + $classes = 'vote-horiz vote-horiz-inactive'; +} else if (isset($row['vote'])) { + $classes = 'vote-horiz ' + . ($row['vote'] == 1 + ? 'vote-horiz-for' + : 'vote-horiz-against' + ); +} else { + $classes = 'vote-horiz'; +} +echo '<div class="' . $classes . '" id="bmv-' . $row['bId'] . '">'; +echo 'Voting <span class="voting">' . $row['bVoting'] . '</span> '; + +if (isset($row['hasVoted'])) { + if ($row['vote'] != 1) { + echo '<a class="vote-for" rel="nofollow" href="' + . createVoteURL(true, $row['bId']) . '"' + . ' onclick="javascript:vote(' . $row['bId'] . ',1); return false;"' + . '>Vote for</a> '; + } else { + echo '<span class="vote-for-inactive">Vote for</span> '; + } + + + if ($row['vote'] != -1) { + echo '<a class="vote-against" rel="nofollow" href="' + . createVoteURL(false, $row['bId']) . '"' + . ' onclick="vote(' . $row['bId'] . ',-1); return false;"' + . '>Vote against</a>'; + } else { + echo '<span class="vote-against-inactive">Vote against</span>'; + } +} +echo '</div>'; +?>
\ No newline at end of file |