aboutsummaryrefslogtreecommitdiff
path: root/data/templates/sidebar.block.watchstatus.php
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2011-05-25 19:43:36 +0200
committerChristian Weiske <cweiske@cweiske.de>2011-05-25 19:43:36 +0200
commit5ba53394fcda4ae9cfa9af52b37fb67517deeb5a (patch)
tree4416be7903a2b339382e9f933284f50797edc239 /data/templates/sidebar.block.watchstatus.php
parent63b0a4b8cb38a8a7c41410900b9dfcc84e6a33a9 (diff)
downloadsemanticscuttle-5ba53394fcda4ae9cfa9af52b37fb67517deeb5a.tar.gz
semanticscuttle-5ba53394fcda4ae9cfa9af52b37fb67517deeb5a.tar.bz2
implement request #1989987: theme support. merge themes branch with --squash
Diffstat (limited to 'data/templates/sidebar.block.watchstatus.php')
-rw-r--r--data/templates/sidebar.block.watchstatus.php28
1 files changed, 0 insertions, 28 deletions
diff --git a/data/templates/sidebar.block.watchstatus.php b/data/templates/sidebar.block.watchstatus.php
deleted file mode 100644
index 99574aa..0000000
--- a/data/templates/sidebar.block.watchstatus.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-/* Service creation: only useful services are created */
-//No specific services
-
-
-if ($userservice->isLoggedOn()) {
-
- if ($currentUser->getUsername() != $user) {
- $result = $userservice->getWatchStatus($userid, $userservice->getCurrentUserId());
- if ($result) {
- $linkText = T_('Remove from Watchlist');
- } else {
- $linkText = T_('Add to Watchlist');
- }
- $linkAddress = createURL('watch', $user);
-?>
-
-<h2><?php echo T_('Actions'); ?></h2>
-<div id="watchlist">
- <ul>
- <li><a href="<?php echo $linkAddress ?>"><?php echo $linkText ?></a></li>
- </ul>
-</div>
-
-<?php
- }
-}
-?> \ No newline at end of file