[3339] | 1 | <?php /* |
---|
| 2 | Plugin Name: Panoramas |
---|
| 3 | Version: 2.0.b |
---|
| 4 | Description: Animated InnerFade with JQuery |
---|
| 5 | Plugin URI: http://phpwebgallery.net/ext/extension_view.php?eid=207 |
---|
| 6 | Author: VDigital (PhpWebGallery team) & OpenStudio |
---|
| 7 | Author URI: http://www.openstudio.fr/Animated-InnerFade-with-JQuery.html |
---|
| 8 | */ |
---|
| 9 | /* Specials thanks to: |
---|
| 10 | jquery.innerfade.js |
---|
| 11 | Datum: 2007-01-29 |
---|
| 12 | Firma: Medienfreunde Hofmann & Baldes GbR |
---|
| 13 | Autor: Torsten Baldes |
---|
| 14 | Mail: t.baldes@medienfreunde.com |
---|
| 15 | Web: http://medienfreunde.com |
---|
| 16 | |
---|
| 17 | based on the work of Matt Oakes http://portfolio.gizone.co.uk/applications/slideshow/ |
---|
| 18 | jquery.animated.innerfade.js |
---|
| 19 | Datum: 2007-10-30 |
---|
| 20 | Firma: OpenStudio |
---|
| 21 | Autor: Arnault PACHOT |
---|
| 22 | Mail: apachot@openstudio.fr |
---|
| 23 | Web: http://www.openstudio.fr |
---|
| 24 | |
---|
| 25 | jQuery http://jquery.com/ |
---|
| 26 | |
---|
| 27 | Animated InnerFade with JQuery |
---|
| 28 | http://www.openstudio.fr/Animated-InnerFade-with-JQuery.html |
---|
| 29 | |
---|
| 30 | Synopsis |
---|
| 31 | on picture-url if Picture-name contains _360 (by default) : |
---|
| 32 | change picture display |
---|
| 33 | |
---|
| 34 | History |
---|
| 35 | 2008-10-04 2.0.b (stable) |
---|
| 36 | IE7 bug, with jQuery script (Thanks to repié38 who find cause and solution) |
---|
| 37 | 2008-09-29 2.0.a (stable) |
---|
| 38 | Smarty version for Piwigo (Don't use it with PhpWebGallery 1.7.x) |
---|
| 39 | 2008-02-10 1.7.d (stable) |
---|
| 40 | IE6 bug: corrective for blank pictures |
---|
| 41 | 2008-02-06 1.7.c |
---|
| 42 | High Resolution support |
---|
| 43 | 2008-02-06 1.7.b (bugged) |
---|
| 44 | No title where no decription available |
---|
| 45 | 2008-01-15 First release |
---|
| 46 | */ |
---|
| 47 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
| 48 | define('AI_JQUERY_DIR' , basename(dirname(__FILE__))); |
---|
| 49 | define('AI_JQUERY_PATH' , PHPWG_PLUGINS_PATH . AI_JQUERY_DIR . '/'); |
---|
| 50 | include_once( AI_JQUERY_PATH . 'AI_jQuery.php'); |
---|
| 51 | |
---|
| 52 | ?> |
---|