Click here to check more useful plugins.
Author: Gopi.R
Version: 9.0
Author URI: http://www.gopiplus.com/work/
Donate link: http://www.gopiplus.com/work/2010/07/18/vertical-scroll-image-slideshow-gallery/
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
function VSslideshow_slideshow()
{
?>
" . $gSlidedir;
}
}
function VSslideshow_install()
{
add_option('VSslideshow_title', "Slide Show");
add_option('VSslideshow_width', "200px");
add_option('VSslideshow_height', "175px");
add_option('VSslideshow_time', "3000");
add_option('VSslideshow_dir', "wp-content/plugins/vertical-scroll-image-slideshow-gallery/VSslideshow/");
add_option('VSslideshow_imglink', "#");
}
function VSslideshow_widget($args)
{
extract($args);
echo $before_widget . $before_title;
echo get_option('VSslideshow_title');
echo $after_title;
VSslideshow_slideshow();
echo $after_widget;
}
function VSslideshow_control()
{
$VSslideshow_title = get_option('VSslideshow_title');
$VSslideshow_width = get_option('VSslideshow_width');
$VSslideshow_height = get_option('VSslideshow_height');
$VSslideshow_time = get_option('VSslideshow_time');
$VSslideshow_dir = get_option('VSslideshow_dir');
$VSslideshow_imglink = get_option('VSslideshow_imglink');
if (@$_POST['VSslideshow_submit'])
{
$VSslideshow_title = stripslashes($_POST['VSslideshow_title']);
$VSslideshow_width = stripslashes($_POST['VSslideshow_width']);
$VSslideshow_height = stripslashes($_POST['VSslideshow_height']);
$VSslideshow_time = stripslashes($_POST['VSslideshow_time']);
$VSslideshow_dir = stripslashes($_POST['VSslideshow_dir']);
$VSslideshow_imglink = stripslashes($_POST['VSslideshow_imglink']);
update_option('VSslideshow_title', $VSslideshow_title );
update_option('VSslideshow_width', $VSslideshow_width );
update_option('VSslideshow_height', $VSslideshow_height );
update_option('VSslideshow_time', $VSslideshow_time );
update_option('VSslideshow_dir', $VSslideshow_dir );
update_option('VSslideshow_imglink', $VSslideshow_imglink );
}
echo '
Title:
';
echo 'Set the scrollerwidth and scrollerheight to the width/height of the LARGEST image in your slideshow!
';
echo 'Width: ';
echo ' Height:
';
echo 'Slide timeout: (3000 = 3 seconds)
';
echo 'Images Link:
';
echo 'Image directory:(Upload all your images in this directory) ';
echo ' Default: wp-content/plugins/vertical-scroll-image-slideshow-gallery/VSslideshow/';
echo ' Best practice : Dont upload your original images into this default folder instead you change this default path to original path. Otherwise you may lose the images when you update the plugin to next version.
';
echo ' ';
?>
Check official website for more info