Index: views_slideshow.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/views_slideshow/views_slideshow.module,v retrieving revision 1.11.2.2.2.2 diff -u -p -r1.11.2.2.2.2 views_slideshow.module --- views_slideshow.module 18 Sep 2009 22:15:49 -0000 1.11.2.2.2.2 +++ views_slideshow.module 28 Sep 2009 21:23:43 -0000 @@ -6,39 +6,6 @@ * Provides Slideshow style options for Views. */ -define('VIEWS_SLIDESHOW_MODE_SINGLE_FRAME', 'singleframe'); // this will rotate through all slideshows in a single div element -define('VIEWS_SLIDESHOW_MODE_THUMBNAIL_HOVER', 'thumbnailhover'); // this will create thumbnails of all the node teasers, with a mouse-over triggering a larger div full node view -define('VIEWS_SLIDESHOW_MODE_JCAROUSEL', 'jcarousel'); // this uses the jcarousel jquery plugin, if the jcarousel module is installed -define('VIEWS_SLIDESHOW_DEFAULT_MODE', VIEWS_SLIDESHOW_MODE_SINGLE_FRAME); - -define('VIEWS_SLIDESHOW_JCAROUSEL_SKIN_TANGO', 'tango'); // the tango skin is included, and is a css class used on the list -define('VIEWS_SLIDESHOW_JCAROUSEL_SKIN_DEFAULT', VIEWS_SLIDESHOW_JCAROUSEL_SKIN_TANGO); -define('VIEWS_SLIDESHOW_JCAROUSEL_VERTICAL_DEFAULT', FALSE); - -define('VIEWS_SLIDESHOW_HOVER_BREAKOUT_TEASER', 'teaser'); // this will cause the breakout element of the 'thumbnail_hover' mode to display the larger element as a teaser. it is ignored by 'single_frame' mode. -define('VIEWS_SLIDESHOW_HOVER_BREAKOUT_FULL', 'full'); // this will cause the breakout element of the 'thumbnail_hover' mode to display the larger element as a full node. it is ignored by 'single_frame' mode. -define('VIEWS_SLIDESHOW_DEFAULT_HOVER_BREAKOUT', VIEWS_SLIDESHOW_HOVER_BREAKOUT_TEASER); - -define('VIEWS_SLIDESHOW_DEFAULT_CONTROL_DISPLAY', FALSE); - -define('VIEWS_SLIDESHOW_DEFAULT_TIMER_DELAY', 5000); - -define('VIEWS_SLIDESHOW_SORT_FORWARD', 1); -define('VIEWS_SLIDESHOW_SORT_RANDOM', 0); -define('VIEWS_SLIDESHOW_SORT_REVERSE', -1); -define('VIEWS_SLIDESHOW_DEFAULT_SORT_ORDER', VIEWS_SLIDESHOW_SORT_FORWARD); - -define('VIEWS_SLIDESHOW_FADE_SPEED_SLOW', 'slow'); -define('VIEWS_SLIDESHOW_FADE_SPEED_NORMAL', 'normal'); -define('VIEWS_SLIDESHOW_FADE_SPEED_FAST', 'fast'); -define('VIEWS_SLIDESHOW_DEFAULT_FADE_SPEED', VIEWS_SLIDESHOW_FADE_SPEED_SLOW); - -define('VIEWS_SLIDESHOW_DEFAULT_FADE_VALUE', 0.25); - -define('VIEWS_SLIDESHOW_DEFAULT_FADE', TRUE); - -define('VIEWS_SLIDESHOW_DEFAULT_TEASERS_LAST', TRUE); // when the mode is thumbnail hover, this determines whether to print the teasers first or second - /** * Implement hook_theme(). */