summaryrefslogtreecommitdiff
path: root/data/templates/default/bookmarks-thumbnail.inc.tpl.php
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2011-05-23 06:53:31 +0200
committerChristian Weiske <cweiske@cweiske.de>2011-05-23 06:53:31 +0200
commita11432db93dbfdb0dbc78e1dd384663439799559 (patch)
tree374acc61a5be95bda099b355cc80582348d151bd /data/templates/default/bookmarks-thumbnail.inc.tpl.php
parent97bba97049eeed2ecec022caa641b50ca507cb72 (diff)
downloadsemanticscuttle-a11432db93dbfdb0dbc78e1dd384663439799559.tar.gz
semanticscuttle-a11432db93dbfdb0dbc78e1dd384663439799559.tar.bz2
first try to implement theming support, which currently does not work at all
Diffstat (limited to 'data/templates/default/bookmarks-thumbnail.inc.tpl.php')
-rw-r--r--data/templates/default/bookmarks-thumbnail.inc.tpl.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/data/templates/default/bookmarks-thumbnail.inc.tpl.php b/data/templates/default/bookmarks-thumbnail.inc.tpl.php
new file mode 100644
index 0000000..200b8f7
--- /dev/null
+++ b/data/templates/default/bookmarks-thumbnail.inc.tpl.php
@@ -0,0 +1,18 @@
+<?php
+/**
+ * Bookmark thumbnail image
+ * Shows the website thumbnail for the bookmark.
+ *
+ * Expects a $row variable with bookmark data.
+ */
+if (!$GLOBALS['enableWebsiteThumbnails']) {
+ return;
+}
+
+$thumbnailHash = md5(
+ $address . $GLOBALS['thumbnailsUserId'] . $GLOBALS['thumbnailsKey']
+);
+//echo '<a href="'. $address .'"'. $rel .' ><img class="thumbnail" src="http://www.artviper.net/screenshots/screener.php?url='.$address.'&w=120&sdx=1280&userID='.$GLOBALS['thumbnailsUserId'].'&hash='.$thumbnailHash.'" />';
+echo '<img class="thumbnail" onclick="window.location.href=\''.$address.'\'" src="http://www.artviper.net/screenshots/screener.php?url='.$address.'&w=120&sdx=1280&userID='.$GLOBALS['thumbnailsUserId'].'&hash='.$thumbnailHash.'" />';
+
+?> \ No newline at end of file