Ignore:
Timestamp:
Feb 27, 2008, 9:25:18 PM (16 years ago)
Author:
rub
Message:

Resolved issue 0000807: New slideshow features

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/config_default.inc.php

    r2216 r2218  
    33// | PhpWebGallery - a PHP based picture gallery                           |
    44// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
    5 // | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
     5// | Copyright (C) 2003-2008 PhpWebGallery Team - http://phpwebgallery.net |
    66// +-----------------------------------------------------------------------+
    77// | file          : $Id$
     
    6666//    the date_available
    6767$conf['order_by'] = ' ORDER BY date_available DESC, file ASC, id ASC';
    68 
    69 // slideshow_period : waiting time in seconds before loading a new page
    70 // during automated slideshow
    71 $conf['slideshow_period'] = 4;
    7268
    7369// file_ext : file extensions (case sensitive) authorized
     
    693689
    694690// +-----------------------------------------------------------------------+
    695 // | Light slideshow                                                       |
    696 // +-----------------------------------------------------------------------+
     691// | Slideshow                                                             |
     692// +-----------------------------------------------------------------------+
     693// slideshow_period : waiting time in seconds before loading a new page
     694// during automated slideshow
     695// slideshow_period_min, slideshow_period_max are bounds of slideshow_period
     696// slideshow_period_step is the step of navigation between min and max
     697$conf['slideshow_period_min'] = 1;
     698$conf['slideshow_period_max'] = 10;
     699$conf['slideshow_period_step'] = 1;
     700$conf['slideshow_period'] = 4;
     701
     702// slideshow_repeat : slideshow loops on pictures
     703$conf['slideshow_repeat'] = true;
     704
    697705// $conf['light_slideshow'] indicates to use slideshow.tpl in state of
    698706// picture.tpl for slideshow
Note: See TracChangeset for help on using the changeset viewer.