| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Old Sites/modip/modules/views_slideshow/ |
Upload File : |
<?php
// $Id: views_slideshow.views.inc,v 1.1.2.1.2.1 2010/02/23 22:21:44 psynaptic Exp $
/**
* @file
* Defines the View Style Plugins for Views Slideshow module.
*/
/**
* Implements hook_views_plugins().
*/
function views_slideshow_views_plugins() {
return array(
'style' => array(
'slideshow' => array(
'title' => t('Slideshow'),
'help' => t('Display the results as a slideshow.'),
'handler' => 'views_slideshow_plugin_style_slideshow',
'theme' => 'views_slideshow',
'uses options' => TRUE,
'uses row plugin' => TRUE,
'type' => 'normal',
'parent' => 'list',
),
),
);
}