1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292: 293: 294: 295: 296: 297: 298: 299: 300: 301: 302: 303: 304: 305: 306: 307: 308: 309: 310: 311: 312: 313: 314: 315: 316: 317: 318: 319: 320: 321: 322: 323: 324: 325: 326: 327: 328: 329: 330: 331: 332: 333: 334: 335: 336: 337: 338: 339: 340: 341: 342: 343: 344: 345: 346: 347: 348: 349: 350: 351: 352: 353: 354: 355: 356: 357: 358: 359: 360: 361: 362: 363: 364: 365: 366: 367: 368: 369: 370: 371: 372: 373: 374: 375: 376: 377: 378: 379: 380: 381: 382: 383: 384: 385: 386: 387: 388: 389: 390: 391: 392: 393: 394: 395: 396: 397: 398: 399: 400: 401: 402: 403: 404: 405: 406: 407: 408: 409: 410: 411: 412: 413: 414: 415: 416: 417: 418: 419: 420: 421: 422: 423: 424: 425: 426: 427: 428: 429: 430: 431: 432: 433: 434: 435: 436: 437: 438: 439: 440: 441: 442: 443: 444: 445: 446: 447: 448: 449: 450: 451: 452: 453: 454: 455: 456: 457: 458: 459: 460: 461: 462: 463: 464: 465: 466: 467: 468: 469: 470: 471: 472: 473: 474: 475: 476: 477: 478: 479: 480: 481: 482: 483: 484: 485: 486: 487: 488: 489: 490: 491: 492: 493: 494: 495: 496: 497: 498: 499: 500: 501: 502: 503: 504: 505: 506: 507: 508: 509: 510: 511: 512: 513: 514: 515: 516: 517: 518: 519: 520: 521: 522: 523: 524: 525: 526: 527: 528: 529: 530: 531: 532: 533: 534: 535: 536: 537: 538: 539: 540: 541: 542: 543: 544: 545: 546: 547: 548: 549: 550: 551: 552: 553: 554: 555: 556: 557: 558: 559: 560: 561: 562: 563: 564: 565: 566: 567: 568: 569: 570: 571: 572: 573: 574: 575: 576: 577: 578: 579: 580: 581: 582: 583: 584: 585: 586: 587: 588: 589: 590: 591: 592: 593: 594: 595: 596: 597: 598: 599: 600: 601: 602: 603: 604: 605: 606: 607: 608: 609: 610: 611: 612: 613: 614: 615: 616: 617: 618: 619: 620: 621: 622: 623: 624: 625: 626: 627: 628: 629: 630: 631: 632: 633: 634: 635: 636: 637: 638: 639: 640: 641: 642: 643: 644: 645: 646: 647: 648: 649: 650: 651: 652: 653: 654: 655: 656: 657: 658: 659: 660: 661: 662: 663: 664: 665: 666: 667: 668: 669: 670: 671: 672: 673: 674: 675: 676: 677: 678: 679: 680: 681: 682: 683: 684: 685: 686: 687: 688: 689: 690: 691: 692: 693: 694: 695: 696: 697: 698: 699: 700: 701: 702: 703: 704: 705: 706: 707: 708: 709: 710: 711: 712: 713: 714: 715: 716: 717: 718: 719: 720: 721: 722: 723: 724: 725: 726: 727: 728: 729: 730: 731: 732: 733: 734: 735: 736: 737: 738: 739: 740: 741: 742: 743: 744: 745: 746: 747: 748: 749: 750: 751: 752: 753: 754: 755: 756: 757: 758: 759: 760: 761: 762: 763: 764: 765: 766: 767: 768: 769: 770: 771: 772: 773: 774: 775: 776: 777: 778: 779: 780: 781: 782: 783: 784: 785: 786: 787: 788:
<?php
$plugin_is_filter = 9 | THEME_PLUGIN | ADMIN_PLUGIN;
$plugin_description = gettext("Slideshow plugin based on the Cycle2 jQuery plugin.");
$plugin_author = "Malte Müller (acrylian)";
$plugin_disable = (extensionEnabled('slideshow')) ? sprintf(gettext('Only one slideshow plugin may be enabled. <a href="#%1$s"><code>%1$s</code></a> is already enabled.'), 'slideshow') : '';
$plugin_category = gettext('Media');
$option_interface = 'cycle';
global $_zp_gallery, $_zp_gallery_page;
zp_register_filter('theme_head', 'cycle::cycleJS');
zp_register_filter('content_macro', 'cycle::macro');
class cycle {
function __construct() {
global $_zp_gallery;
if (OFFSET_PATH == 2) {
foreach (getThemeFiles(array('404.php', 'themeoptions.php', 'theme_description.php', 'slideshow.php', 'functions.php', 'password.php', 'sidebar.php', 'register.php', 'contact.php')) as $theme => $scripts) {
foreach ($scripts as $script) {
purgeOption('cycle_' . $theme . '_' . stripSuffix($script));
}
}
setOptionDefault('cycle-slideshow_width', '595');
setOptionDefault('cycle-slideshow_height', '595');
setOptionDefault('cycle-slideshow_mode', 'cycle');
setOptionDefault('cycle-slideshow_effect', 'fade');
setOptionDefault('cycle-slideshow_speed', '1000');
setOptionDefault('cycle-slideshow_timeout', '3000');
setOptionDefault('cycle-slideshow_showdesc', 0);
setOptionDefault('cycle-slideshow_colorbox_transition', 'fade');
setOptionDefault('cycle-slideshow_colorbox_imagetype', 'sizedimage');
setOptionDefault('cycle-slideshow_colorbox_imagetitle', 1);
if (class_exists('cacheManager')) {
cacheManager::deleteCacheSizes('cycle');
cacheManager::addCacheSize('cycle', NULL, getOption('cycle-slideshow_width'), getOption('cycle-slideshow_height'), NULL, NULL, NULL, NULL, NULL, NULL, NULL, true);
}
}
}
function getOptionsSupported() {
$options = array(
gettext('Slideshow: Mode') => array(
'key' => 'cycle-slideshow_mode',
'type' => OPTION_TYPE_SELECTOR,
'order' => 0,
'selections' => array(
gettext("jQuery Cycle") => "cycle",
gettext("jQuery Colorbox") => "colorbox"),
'desc' => gettext('<em>jQuery Cycle</em> for slideshow using the jQuery Cycle2 plugin<br /><em>jQuery Colorbox</em> for slideshow using Colorbox (Colorbox plugin required).<br />NOTE: The jQuery Colorbox mode is attached to the link the printSlideShowLink() function prints and can neither be called directly nor used on the slideshow.php theme page.')),
gettext('Slideshow: Speed') => array(
'key' => 'cycle-slideshow_speed',
'type' => OPTION_TYPE_TEXTBOX,
'order' => 1,
'desc' => gettext("Speed of the transition in milliseconds."))
);
switch (getOption('cycle-slideshow_mode')) {
case 'cycle':
$options = array_merge($options, array(
gettext('Slideshow: Slide width') => array(
'key' => 'cycle-slideshow_width',
'type' => OPTION_TYPE_TEXTBOX,
'order' => 5,
'desc' => gettext("Width of the images in the slideshow.")),
gettext('Slideshow: Slide height') => array(
'key' => 'cycle-slideshow_height',
'type' => OPTION_TYPE_TEXTBOX,
'order' => 6,
'desc' => gettext("Height of the images in the slideshow.")),
gettext('Slideshow: Effect') => array(
'key' => 'cycle-slideshow_effect',
'type' => OPTION_TYPE_SELECTOR,
'order' => 2,
'selections' => array(
gettext('none') => "none",
gettext('fade') => "fade",
gettext('fadeOut') => "fadeOut",
gettext('shuffle') => "shuffle",
gettext('Scroll horizontal') => "scrollHorz",
gettext('Scroll vertical') => "scrollVert",
gettext('Flip horizontal') => "flipHorz",
gettext('Flip vertical') => "flipVert",
gettext('Tile slide') => "tileSlide",
gettext('Tile blind') => "tileBlind"),
'desc' => gettext("The cycle slide effect to be used. Flip transitions are only supported on browsers that support CSS3 3D transforms. (IE10+, current Chrome, Firefox, Opera and Safari.)")),
gettext('Slideshow: Tile Effect - Extra') => array(
'key' => 'cycle-slideshow_tileeffect',
'type' => OPTION_TYPE_SELECTOR,
'order' => 3,
'selections' => array(
gettext('Horziontal') => "tileVert",
gettext('Vertical') => "tileHorz"),
'desc' => gettext("If one of the tile effects is selected, this is its orientation.")),
gettext('Slideshow: Timeout') => array(
'key' => 'cycle-slideshow_timeout',
'type' => OPTION_TYPE_TEXTBOX,
'order' => 4,
'desc' => gettext("Milliseconds between slide transitions (0 to disable auto advance.)")),
gettext('Slideshow: Description') => array(
'key' => 'cycle-slideshow_showdesc',
'type' => OPTION_TYPE_CHECKBOX,
'order' => 7,
'desc' => gettext("Check if you want to show the image’s description below the slideshow.")),
gettext('Slideshow: Swipe gestures') => array(
'key' => 'cycle-slideshow_swipe',
'type' => OPTION_TYPE_CHECKBOX,
'order' => 8,
'desc' => gettext("Check if you want to enable touch screen swipe gestures.")),
gettext('Slideshow: Pause on hover') => array(
'key' => 'cycle-slideshow_pausehover',
'type' => OPTION_TYPE_CHECKBOX,
'order' => 9,
'desc' => gettext("Check if you want the slidesshow to pause on hover."))
));
break;
case 'colorbox':
$options = array_merge($options, array(gettext('Colorbox: Transition') => array('key' => 'cycle-slideshow_colorbox_transition', 'type' => OPTION_TYPE_SELECTOR,
'order' => 2,
'selections' => array(
gettext('elastic') => "elastic",
gettext('fade') => "fade",
gettext('none') => "none"),
'desc' => gettext("The Colorbox transition slide effect to be used.")),
gettext('Colorbox: Image type') => array(
'key' => 'cycle-slideshow_colorbox_imagetype',
'type' => OPTION_TYPE_SELECTOR,
'order' => 3,
'selections' => array(
gettext('full image') => "fullimage",
gettext("sized image") => "sizedimage"),
'desc' => gettext("The image type you wish to use for the Colorbox. If you choose “sized image” the slideshow width value will be used for the longest side of the image.")),
gettext('Colorbox: Image title') => array(
'key' => 'cycle-slideshow_colorbox_imagetitle',
'type' => OPTION_TYPE_CHECKBOX,
'order' => 4,
'desc' => gettext("If the image title should be shown at the bottom of the Colorbox."))
));
if (getOption('cycle-slideshow_colorbox_imagetype') == 'sizedimage') {
$options = array_merge($options, array(
gettext('Colorbox: Slide width') => array(
'key' => 'cycle-slideshow_width',
'type' => OPTION_TYPE_TEXTBOX,
'order' => 3.5,
'desc' => gettext("Width of the images in the slideshow."))
));
}
break;
}
return $options;
}
function handleOption($option, $currentValue) {
}
static function getSlideshowPlayer($album, $controls = false, $width = NULL, $height = NULL) {
$albumobj = NULL;
if (!empty($album)) {
$albumobj = newAlbum($album, NULL, true);
}
if (is_object($albumobj) && $albumobj->loaded) {
$returnpath = $albumobj->getLink();
return cycle::getShow(false, false, $albumobj, NULL, $width, $height, false, false, false, $controls, $returnpath, 0);
} else {
return '<div class="errorbox" id="message"><h2>' . gettext('Invalid slideshow album name!') . '</h2></div>';
}
}
static function getShow($heading, $speedctl, $albumobj, $imageobj, $width, $height, $crop, $shuffle, $linkslides, $controls, $returnpath, $imagenumber) {
global $_zp_gallery, $_zp_gallery_page;
setOption('cycle-slideshow_' . $_zp_gallery->getCurrentTheme() . '_' . stripSuffix($_zp_gallery_page), 1);
if (!$albumobj->isMyItem(LIST_RIGHTS) && !checkAlbumPassword($albumobj)) {
return '<div class="errorbox" id="message"><h2>' . gettext('This album is password protected!') . '</h2></div>';
}
if (empty($width) || empty($height)) {
$width = getOption('cycle-slideshow_width');
$height = getOption('cycle-slideshow_height');
}
if ($crop) {
$cropw = $width;
$croph = $height;
} else {
$cropw = NULL;
$croph = NULL;
}
$slides_temp = $albumobj->getImages(0);
$slides = array();
foreach($slides_temp as $slide) {
$imgobj = newImage($albumobj, $slide);
if(isImagePhoto($imgobj)) {
$slides[] = $slide;
}
}
if(empty($slides)) {
return '';
}
$numslides = count($slides);
if ($shuffle) {
shuffle($slides);
}
if ($imagenumber != 0) {
$count = -1;
$extractslides = array();
foreach ($slides as $slide) {
$count++;
if ($count < $imagenumber) {
$extractslides[] = $slide;
unset($slides[$count]);
}
}
$slides = array_merge($slides, $extractslides);
}
if (getOption('cycle-slideshow_swipe')) {
$option_swipe = 'true';
} else {
$option_swipe = 'false';
}
if (getOption('cycle-slideshow_pausehover')) {
$option_pausehover = 'true';
} else {
$option_pausehover = 'false';
}
$option_fx = getOption('cycle-slideshow_effect');
$option_tilevertical = '';
if ($option_fx == 'tileSlide' || $option_fx == 'tileBlind') {
$option_tileextra = getOption('cycle-slideshow_tileeffect');
switch ($option_tileextra) {
case 'tileVert':
$option_tilevertical = 'data-cycle-tile-vertical=true';
break;
case 'tileHorz':
$option_tilevertical = 'data-cycle-tile-vertical=false';
break;
default:
$option_tilevertical = '';
break;
}
}
if ($numslides == 0) {
return '<div class="errorbox" id="message"><h2>' . gettext('No images for the slideshow!') . '</h2></div>';
}
$slideshow = '<section class="slideshow"><!-- extra class with album id so we can address slides! -->' . "\n";
if ($controls) {
$slideshow .= '<ul class="slideshow_controls">' . "\n";
$slideshow .= '<li><a href="#" data-cycle-cmd="prev" class="cycle-slideshow-prev icon-backward" title="' . gettext('prev') . '"></a></li>' . "\n";
$slideshow .= '<li><a href="' . $returnpath . '" class="cycle-slideshow-stop icon-stop" title="' . gettext('stop') . '"></a></li>' . "\n";
$slideshow .= '<li><a href="#" data-cycle-cmd="pause" class="cycle-slideshow-pause icon-pause" title="' . gettext('pause') . '"></a></li>' . "\n";
$slideshow .= '<li><a href="#" data-cycle-cmd="resume" class="cycle-slideshow-resume icon-play" title="' . gettext('play') . '"></a></li>' . "\n";
$slideshow .= '<li><a href="#" data-cycle-cmd="next" class="cycle-slideshow-next icon-forward" title="' . gettext('next') . '"></a></li>' . "\n";
$slideshow .= '</ul>' . "\n";
}
$slideshow .= '<div class="cycle-slideshow"' . "\n";
$slideshow .= 'data-cycle-pause-on-hover=' . $option_pausehover . "\n";
$slideshow .= 'data-cycle-fx="' . $option_fx . '"' . "\n";
$slideshow .= $option_tilevertical . "\n";
$slideshow .= 'data-cycle-speed=' . getOption('cycle-slideshow_speed') . "\n";
$slideshow .= 'data-cycle-timeout=' . getOption('cycle-slideshow_timeout') . "\n";
$slideshow .= 'data-cycle-slides=".slide"' . "\n";
$slideshow .= 'data-cycle-auto-height=true' . "\n";
$slideshow .= 'data-cycle-center-horz=true' . "\n";
$slideshow .= 'data-cycle-center-vert=true' . "\n";
$slideshow .= 'data-cycle-swipe=' . $option_swipe . "\n";
$slideshow .= 'data-cycle-loader=true' . "\n";
$slideshow .= 'data-cycle-progressive=".slides"' . "\n";
$slideshow .= '>';
$firstslide = array_shift($slides);
$slideobj = cycle::getSlideObj($firstslide, $albumobj);
$slideshow .= cycle::getSlide($albumobj, $slideobj, $width, $height, $cropw, $croph, $linkslides, false);
$slideshow .= '<script class="slides" type="text/cycle" data-cycle-split="---">' . "\n";
$count = '';
foreach ($slides as $slide) {
$count++;
$slideobj = cycle::getSlideObj($slide, $albumobj);
$slideshow .= cycle::getSlide($albumobj, $slideobj, $width, $height, $cropw, $croph, $linkslides, false);
if ($count != $numslides) {
$slideshow .= "---\n";
}
}
$slideshow .= '</script>' . "\n";
$slideshow .= '</div>' . "\n";
$slideshow .= '</section>' . "\n";
return $slideshow;
}
static function getSlide($albumobj, $imgobj, $width, $height, $cropw, $croph, $linkslides, $crop = false, $carousel = false) {
global $_zp_current_image;
if ($crop) {
$imageurl = $imgobj->getCustomImage(NULL, $width, $height, $cropw, $croph, NULL, NULL, true, NULL);
} else {
$maxwidth = $width;
$maxheight = $height;
getMaxSpaceContainer($maxwidth, $maxheight, $imgobj);
$imageurl = $imgobj->getCustomImage(NULL, $maxwidth, $maxheight, NULL, NULL, NULL, NULL, NULL, NULL);
}
$slidecontent = '<div class="slide">' . "\n";
if (!$carousel) {
$slidecontent .= '<h4>' . html_encode($albumobj->getTitle()) . ': ' . html_Encode($imgobj->getTitle()) . '</h4>' . "\n";
}
if ($carousel) {
if ($linkslides) {
$url = pathurlencode($imgobj->getFullImageURL());
} else {
$url = $imgobj->getLink();
}
$slidecontent .= '<a href="' . $url . '">' . "\n";
} else if (!$carousel && $linkslides) {
$slidecontent .= '<a href="' . $imgobj->getLink() . '">' . "\n";
}
$active = '';
if ($carousel && !is_null($_zp_current_image)) {
if ($_zp_current_image->filename == $imgobj->filename) {
$active = ' class="activeslide"';
} else {
$active = '';
}
}
$slidecontent .= '<img src="' . pathurlencode($imageurl) . '" alt=""' . $active . '>' . "\n";
if ($linkslides || $carousel) {
$slidecontent .= '</a>' . "\n";
}
if (getOption("cycle-slideshow_showdesc") && !$carousel) {
$slidecontent .= '<div class="slide_desc">' . html_encodeTagged($imgobj->getDesc()) . '</div>' . "\n";
}
$slidecontent .= '</div>' . "\n";
return $slidecontent;
}
static function printSlide($albumobj, $imgobj, $width, $height, $cropw, $croph, $linkslides, $crop = false, $carousel = false) {
echo getSlide($albumobj, $imgobj, $width, $height, $cropw, $croph, $linkslides, $crop, $carousel);
}
static function getSlideObj($slide, $albumobj) {
return newImage($albumobj, $slide);
}
static function macro($macros) {
$macros['SLIDESHOW'] = array(
'class' => 'function',
'params' => array('string', 'bool*', 'int*', 'int*'),
'value' => 'cycle::getSlideshowPlayer',
'owner' => 'cycle',
'desc' => gettext('provide the album name as %1 and (optionally) <code>true</code> (or <code>false</code>) as %2 to show (hide) controls. Hiding the controls is the default. Width(%3) and height(%4) may also be specified to override the defaults.')
);
return $macros;
}
static function cycleJS() {
global $_zp_gallery;
?>
<script src="<?php echo FULLWEBPATH . '/' . ZENFOLDER . '/' . PLUGIN_FOLDER ?>/slideshow2/jquery.cycle2.min.js" type="text/javascript"></script>
<script src="<?php echo FULLWEBPATH . '/' . ZENFOLDER . '/' . PLUGIN_FOLDER ?>/slideshow2/jquery.cycle2.center.min.js" type="text/javascript"></script>
<!-- effect plugins -->
<?php if (getOption('cycle-slideshow_effect') == 'flipHorz' || getOption('cycle-slideshow_effect') == 'flipVert') { ?>
<script src="<?php echo FULLWEBPATH . '/' . ZENFOLDER . '/' . PLUGIN_FOLDER ?>/slideshow2/jquery.cycle2.flip.min.js" type="text/javascript"></script>
<?php } ?>
<!--[if lt IE 9]>
<script src="<?php echo FULLWEBPATH . '/' . ZENFOLDER . '/' . PLUGIN_FOLDER ?>/slideshow2/jquery.cycle2.ie-fade.min.js" type="text/javascript"></script>
<![endif]-->
<?php if (getOption('cycle-slideshow_effect') == 'shuffle') { ?>
<script src="<?php echo FULLWEBPATH . '/' . ZENFOLDER . '/' . PLUGIN_FOLDER ?>/slideshow2/jquery.cycle2.shuffle.min.js" type="text/javascript"></script>
<?php } ?>
<?php if (getOption('cycle-slideshow_effect') == 'tileSlide' || getOption('cycle-slideshow_effect') == 'tileBlind') { ?>
<script src="<?php echo FULLWEBPATH . '/' . ZENFOLDER . '/' . PLUGIN_FOLDER ?>/slideshow2/jquery.cycle2.tile.min.js" type="text/javascript"></script>
<?php } ?>
<?php if (getOption('cycle-slideshow_effect') == 'scrollVert') { ?>
<script src="<?php echo FULLWEBPATH . '/' . ZENFOLDER . '/' . PLUGIN_FOLDER ?>/slideshow2/jquery.cycle2.scrollVert.min.js" type="text/javascript"></script>
<?php } ?>
<script src="<?php echo FULLWEBPATH . '/' . ZENFOLDER . '/' . PLUGIN_FOLDER ?>/slideshow2/jquery.cycle2.carousel.min.js" type="text/javascript"></script>
<!-- swipe with iOS fix -->
<?php if (getOption('cycle-slideshow_swipe')) { ?>
<script src="<?php echo FULLWEBPATH . '/' . ZENFOLDER . '/' . PLUGIN_FOLDER ?>/slideshow2/jquery.cycle2.swipe.min.js" type="text/javascript"></script>
<script src="<?php echo FULLWEBPATH . '/' . ZENFOLDER . '/' . PLUGIN_FOLDER ?>/slideshow2/ios6fix.js" type="text/javascript"></script>
<?php
}
$theme = $_zp_gallery->getCurrentTheme();
$css = SERVERPATH . '/' . THEMEFOLDER . '/' . internalToFilesystem($theme) . '/slideshow2.css';
if (file_exists($css)) {
$css = WEBPATH . '/' . THEMEFOLDER . '/' . $theme . '/slideshow2.css';
} else {
$css = WEBPATH . '/' . ZENFOLDER . '/' . PLUGIN_FOLDER . '/slideshow2/slideshow2.css';
}
?>
<link rel="stylesheet" type="text/css" href="<?php echo $css ?>" />
<!--[if lte IE 7]>
<link rel="stylesheet" type="text/css" href="<?php echo FULLWEBPATH . '/' . ZENFOLDER . '/' . PLUGIN_FOLDER ?>/slideshow2/fonts/ie7.css" />
<script src="<?php echo FULLWEBPATH . '/' . ZENFOLDER . '/' . PLUGIN_FOLDER ?>/slideshow2/fonts/ie7.js" type="text/javascript"></script>
<![endif]-->
<?php
}
static function is_valid($image, $valid_types) {
if (is_object($image)) {
$image = $image->filename;
}
$ext = getSuffix($image);
if (in_array($ext, $valid_types)) {
return $ext;
}
return false;
}
}
if ($plugin_disable) {
enableExtension('slideshow2', 0);
}
if (extensionEnabled('slideshow2')) {
function printSlideShowLink($linktext = NULL, $linkstyle = Null) {
global $_zp_gallery, $_zp_current_image, $_zp_current_album, $_zp_current_search, $slideshow_instance, $_zp_gallery_page, $_myFavorites;
if (is_null($linktext)) {
$linktext = gettext('View Slideshow');
}
if (empty($_GET['page'])) {
$pagenr = 1;
} else {
$pagenr = sanitize_numeric($_GET['page']);
}
$slideshowhidden = '';
$numberofimages = 0;
if (in_context(ZP_SEARCH)) {
$imagenumber = '';
$imagefile = '';
$albumnr = 0;
$slideshowlink = getCustomPageURL('slideshow');
$slideshowhidden = '<input type="hidden" name="preserve_search_params" value="' . html_encode($_zp_current_search->getSearchParams()) . '" />';
} else {
if (in_context(ZP_IMAGE)) {
$imagenumber = imageNumber();
$imagefile = $_zp_current_image->filename;
} else {
$imagenumber = '';
$imagefile = '';
}
if (in_context(ZP_SEARCH_LINKED)) {
$albumnr = -$_zp_current_album->getID();
$slideshowhidden = '<input type="hidden" name="preserve_search_params" value="' . html_encode($_zp_current_search->getSearchParams()) . '" />';
} else {
$albumnr = $_zp_current_album->getID();
}
if ($albumnr) {
$slideshowlink = rewrite_path(pathurlencode($_zp_current_album->getFolder()) . '/' . _PAGE_ . '/slideshow/', "index.php?p=slideshow&album=" . urlencode($_zp_current_album->getFolder()));
} else {
$slideshowlink = getCustomPageURL('slideshow');
$slideshowhidden = '<input type="hidden" name="favorites_page" value="1" />' . "\n" . '<input type="hidden" name="title" value="' . $_myFavorites->instance . '" />';
}
}
$numberofimages = getNumImages();
$option = getOption('cycle-slideshow_mode');
switch ($option) {
case 'cycle':
if ($numberofimages > 1) {
?>
<form name="slideshow_<?php echo $slideshow_instance; ?>" method="post" action="<?php echo $slideshowlink; ?>">
<?php echo $slideshowhidden; ?>
<input type="hidden" name="pagenr" value="<?php echo html_encode($pagenr); ?>" />
<input type="hidden" name="albumid" value="<?php echo $albumnr; ?>" />
<input type="hidden" name="numberofimages" value="<?php echo $numberofimages; ?>" />
<input type="hidden" name="imagenumber" value="<?php echo $imagenumber; ?>" />
<input type="hidden" name="imagefile" value="<?php echo html_encode($imagefile); ?>" />
<?php if (!empty($linkstyle)) echo '<p style="' . $linkstyle . '">'; ?>
<a class="slideshowlink" id="slideshowlink_<?php echo $slideshow_instance; ?>" href="javascript:document.slideshow_<?php echo $slideshow_instance; ?>.submit()"><?php echo $linktext; ?></a>
<?php if (!empty($linkstyle)) echo '</p>'; ?>
</form>
<?php
}
$slideshow_instance++;
break;
case 'colorbox':
$theme = $_zp_gallery->getCurrentTheme();
$script = stripSuffix($_zp_gallery_page);
if (!getOption('colorbox_' . $theme . '_' . $script)) {
setOptionDefault('colorbox_' . $theme . '_' . $script, 1);
$themes = $_zp_gallery->getThemes();
?>
<div class="errorbox"><?php printf(gettext('Slideshow not available because colorbox is not enabled on %1$s <em>%2$s</em> pages.'), $themes[$theme]['name'], $script); ?></div>
<?php
break;
}
if ($numberofimages > 1) {
if ((in_context(ZP_SEARCH_LINKED) && !in_context(ZP_ALBUM_LINKED)) || in_context(ZP_SEARCH) && is_null($_zp_current_album)) {
$images = $_zp_current_search->getImages(0);
} else {
$images = $_zp_current_album->getImages(0);
}
$count = '';
?>
<script type="text/javascript">
$(document).ready(function () {
$("a[rel='slideshow']").colorbox({
slideshow: true,
loop: true,
transition: '<?php echo getOption('cycle-slideshow_colorbox_transition'); ?>',
slideshowSpeed: <?php echo getOption('cycle-slideshow_speed'); ?>,
slideshowStart: '<?php echo gettext("start slideshow"); ?>',
slideshowStop: '<?php echo gettext("stop slideshow"); ?>',
previous: '<?php echo gettext("prev"); ?>',
next: '<?php echo gettext("next"); ?>',
close: '<?php echo gettext("close"); ?>',
current: '<?php printf(gettext('image %1$s of %2$s'), '{current}', '{total}'); ?>',
maxWidth: '98%',
maxHeight: '98%',
photo: true
});
});
</script>
<?php
foreach ($images as $image) {
if (is_array($image)) {
$suffix = getSuffix($image['filename']);
} else {
$suffix = getSuffix($image);
}
$suffixes = array('jpg', 'jpeg', 'gif', 'png');
if (in_array($suffix, $suffixes)) {
$count++;
if (is_array($image)) {
$albobj = newAlbum($image['folder']);
$imgobj = newImage($albobj, $image['filename']);
} else {
$imgobj = newImage($_zp_current_album, $image);
}
if (in_context(ZP_SEARCH_LINKED) || $_zp_gallery_page != 'image.php') {
if ($count == 1) {
$style = '';
} else {
$style = ' style="display:none"';
}
} else {
if ($_zp_current_image->filename == $image) {
$style = '';
} else {
$style = ' style="display:none"';
}
}
switch (getOption('cycle-slideshow_colorbox_imagetype')) {
case 'fullimage':
$imagelink = getFullImageURL($imgobj);
break;
case 'sizedimage':
$imagelink = $imgobj->getCustomImage(getOption("cycle-slideshow_width"), NULL, NULL, NULL, NULL, NULL, NULL, false, NULL);
break;
}
$imagetitle = '';
if (getOption('cycle-slideshow_colorbox_imagetitle')) {
$imagetitle = html_encode(getBare($imgobj->getTitle()));
}
?>
<a class="slideshowlink" href="<?php echo html_encode(pathurlencode($imagelink)); ?>" rel="slideshow"<?php echo $style; ?> title="<?php echo $imagetitle; ?>"><?php echo $linktext; ?></a>
<?php
}
}
}
break;
}
}
function printSlideShow($heading = true, $speedctl = false, $albumobj = NULL, $imageobj = NULL, $width = NULL, $height = NULL, $crop = false, $shuffle = false, $linkslides = false, $controls = true) {
global $_myFavorites, $_zp_conf_vars;
if (!isset($_POST['albumid']) AND ! is_object($albumobj)) {
return '<div class="errorbox" id="message"><h2>' . gettext('Invalid linking to the slideshow page.') . '</h2></div>';
}
if (!empty($_POST['imagenumber']) AND ! is_object($imageobj)) {
$imagenumber = sanitize_numeric($_POST['imagenumber']) - 1;
} elseif (is_object($imageobj)) {
$imagenumber = $imageobj->getIndex();
} else {
$imagenumber = 0;
}
if (isset($_POST['pagenr'])) {
$pagenumber = sanitize_numeric($_POST['pagenr']);
} else {
$pagenumber = 1;
}
if (!empty($_POST['numberofimages'])) {
$numberofimages = sanitize_numeric($_POST['numberofimages']);
} elseif (is_object($albumobj)) {
$numberofimages = $albumobj->getNumImages();
} else {
$numberofimages = 0;
}
if ($numberofimages < 2 || $imagenumber > $numberofimages) {
$imagenumber = 0;
}
if (!empty($_POST['albumid']) && !is_object($albumobj)) {
$albumid = sanitize_numeric($_POST['albumid']);
} elseif (is_object($albumobj)) {
$albumid = $albumobj->getID();
} else {
$albumid = 0;
}
if (isset($_POST['preserve_search_params'])) {
$search = new SearchEngine();
$params = sanitize($_POST['preserve_search_params']);
$search->setSearchParams($params);
$searchwords = $search->getSearchWords();
$searchdate = $search->getSearchDate();
$searchfields = $search->getSearchFields(true);
$page = $search->page;
$returnpath = getSearchURL($searchwords, $searchdate, $searchfields, $page);
$albumobj = new AlbumBase(NULL, false);
$albumobj->setTitle(gettext('Search'));
$albumobj->images = $search->getImages(0);
} else {
if (isset($_POST['favorites_page'])) {
$albumobj = $_myFavorites;
$returnpath = $_myFavorites->getLink($pagenumber);
} else {
$albumq = query_single_row("SELECT title, folder FROM " . prefix('albums') . " WHERE id = " . $albumid);
$albumobj = newAlbum($albumq['folder']);
if (empty($_POST['imagenumber'])) {
$returnpath = $albumobj->getLink($pagenumber);
} else {
$image = newImage($albumobj, sanitize($_POST['imagefile']));
$returnpath = $image->getLink();
}
}
}
echo cycle::getShow($heading, $speedctl, $albumobj, $imageobj, $width, $height, $crop, $shuffle, $linkslides, $controls, $returnpath, $imagenumber);
}
}