summaryrefslogtreecommitdiffstatshomepage
path: root/data/templates/bookmarks-vote-horizontal.inc.tpl.php
diff options
context:
space:
mode:
authorGravatar Christian Weiske2011-05-25 19:43:36 +0200
committerGravatar Christian Weiske2011-05-25 19:43:36 +0200
commit5ba53394fcda4ae9cfa9af52b37fb67517deeb5a (patch)
tree4416be7903a2b339382e9f933284f50797edc239 /data/templates/bookmarks-vote-horizontal.inc.tpl.php
parent63b0a4b8cb38a8a7c41410900b9dfcc84e6a33a9 (diff)
downloadscuttle-5ba53394fcda4ae9cfa9af52b37fb67517deeb5a.tar.gz
scuttle-5ba53394fcda4ae9cfa9af52b37fb67517deeb5a.zip
implement request #1989987: theme support. merge themes branch with --squash
Diffstat (limited to 'data/templates/bookmarks-vote-horizontal.inc.tpl.php')
-rw-r--r--data/templates/bookmarks-vote-horizontal.inc.tpl.php50
1 files changed, 0 insertions, 50 deletions
diff --git a/data/templates/bookmarks-vote-horizontal.inc.tpl.php b/data/templates/bookmarks-vote-horizontal.inc.tpl.php
deleted file mode 100644
index c4a9f8e..0000000
--- a/data/templates/bookmarks-vote-horizontal.inc.tpl.php
+++ /dev/null
@@ -1,50 +0,0 @@
-<?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 sprintf(
- T_('Voting <span class="voting">%d</span>'), $row['bVoting']
-) . ' ';
-
-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;"'
- . '>' . T_('Vote for') . '</a> ';
- } else {
- echo '<span class="vote-for-inactive">'
- . T_('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;"'
- . '>' . T_('Vote against') . '</a>';
- } else {
- echo '<span class="vote-against-inactive">'
- . T_('Vote against') . '</span>';
- }
-}
-echo '</div>';
-?> \ No newline at end of file