move thumbnail code in own file
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@434 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
parent
f24a387cc9
commit
1ea488babe
1 changed files with 18 additions and 0 deletions
18
data/templates/bookmarks-thumbnail.inc.tpl.php
Normal file
18
data/templates/bookmarks-thumbnail.inc.tpl.php
Normal file
|
@ -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.'" />';
|
||||||
|
|
||||||
|
?>
|
Loading…
Reference in a new issue