Changeset 556 for trunk/plog-content/themes/air/slideshow.php
- Timestamp:
- 07/09/08 13:00:01 (5 months ago)
- Files:
-
- 1 modified
-
trunk/plog-content/themes/air/slideshow.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plog-content/themes/air/slideshow.php
r552 r556 36 36 37 37 <?php function generate_slideshow_interface() { 38 global $config ;38 global $config, $thumbnail_config; 39 39 $large_link = ' 40 40 <a accesskey="v" title="' . plog_tr('View Large Image') . '" href="javascript:slides.hotlink()"> 41 <img src="'. $config["gallery_url"].'graphics/search.gif" width="16" height="16" alt="'. plog_tr('View Large Image') . '"/>41 <img src="'.THEME_URL.'images/search.gif" width="16" height="16" alt="'. plog_tr('View Large Image') . '"/> 42 42 </a>'; 43 43 44 44 $prev_url = ' 45 45 <a accesskey="," title="' .plog_tr('Previous Image') . '" href="javascript:slides.previous();"> 46 <img src="'. $config["gallery_url"].'graphics/rewind.gif" width="16" height="16" alt="' . plog_tr('Previous Image') . '" />46 <img src="'.THEME_URL.'images/rewind.gif" width="16" height="16" alt="' . plog_tr('Previous Image') . '" /> 47 47 </a>'; 48 48 49 49 $next_url = ' 50 50 <a accesskey="." title="' . plog_tr('Next Image') . '" href="javascript:slides.next();"> 51 <img src="'. $config["gallery_url"].'graphics/fforward.gif" width="16" height="16" alt="' . plog_tr('Next Image') . '" />51 <img src="'.THEME_URL.'images/fforward.gif" width="16" height="16" alt="' . plog_tr('Next Image') . '" /> 52 52 </a>'; 53 53 54 54 $stop_url = ' 55 55 <a accesskey="x" title="'. plog_tr('Stop Slideshow') . '" href="javascript:slides.pause();"> 56 <img src="'. $config["gallery_url"].'graphics/stop.gif" width="16" height="16" alt="' . plog_tr('Stop Slideshow') . '" />56 <img src="'.THEME_URL.'images/stop.gif" width="16" height="16" alt="' . plog_tr('Stop Slideshow') . '" /> 57 57 </a>'; 58 58 59 59 $play_url = ' 60 60 <a accesskey="s" title="'. plog_tr('Start Slideshow') . '" href="javascript:slides.play();"> 61 <img src="'. $config["gallery_url"].'graphics/play.gif" width="16" height="16" alt="' . plog_tr('Start Slideshow') . '" />61 <img src="'.THEME_URL.'images/play.gif" width="16" height="16" alt="' . plog_tr('Start Slideshow') . '" /> 62 62 </a>'; 63 63 64 $output = '<div class="large-thumb-toolbar" style="width:'.$ config["max_display_size"].'">'.$large_link.$prev_url.$stop_url.$play_url.$next_url.'</div>';64 $output = '<div class="large-thumb-toolbar" style="width:'.$thumbnail_config[THUMB_LARGE]["size"].'">'.$large_link.$prev_url.$stop_url.$play_url.$next_url.'</div>'; 65 65 66 66 $imgtag = '<img id="slideshow_image" class="photos-large" src="about:blank" title="" alt="" />';
