0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
3.2.0-5
/
standard
/
htdocs
/
lib
/
smarty_tiki
/
[
Home
]
File: function.gallery.php
<?php /* $Id: /cvsroot/tikiwiki/tiki/lib/smarty_tiki/function.gallery.php,v 1.11 2006-08-29 20:19:10 sylvieg Exp $ */ //this script may only be included - so its better to die if called directly. if (strpos($_SERVER["SCRIPT_NAME"],basename(__FILE__)) !== false) { header("location: index.php"); exit; } function smarty_function_gallery($params, &$smarty) { global $tikilib; global $dbTiki; global $imagegallib; include_once('lib/imagegals/imagegallib.php'); extract($params); // Param = id if (empty($id)) { $smarty->trigger_error("assign: missing 'id' parameter"); return; } $img = $imagegallib->get_random_image($id); print('<div style="text-align: center">'); if (!isset($hidelink) || $hidelink != 1) { print('<a href="tiki-browse_image.php?galleryId='.$img['galleryId'].'&imageId='.$img['imageId'].'">'); } print ('<img alt="thumbnail" class="athumb" src="show_image.php?id='.$img['imageId'].'&thumb=1" />'); if (!isset($hidelink) || $hidelink !=1) { print('</a>'); } if (!isset($hideimgname) || $hideimgname !=1) { print('<br /><b>'.$img['name'].'</b>'); } if (isset($showgalleryname) && $showgalleryname == 1) { print('<br /><small>'.tra("Gallery").': <a href="tiki-browse_gallery.php?galleryId='.$img['galleryId'].'">'.$img['gallery'].'</a></small>'); } print('</div>'); } ?>