[6527] | 1 | <?php /* |
---|
| 2 | Plugin Name: Panoramas |
---|
[7478] | 3 | Version: auto |
---|
[6527] | 4 | Description: A simple panorama viewer based on jQuery |
---|
| 5 | Plugin URI: http://fr.piwigo.org/ext/extension_view.php?eid=207 |
---|
| 6 | Author: Piwigo team & OpenStudio |
---|
| 7 | Author URI: http://www.vdigital.org |
---|
| 8 | */ |
---|
| 9 | |
---|
| 10 | /* Specials thanks to: jquery.panorama authors: Arnault PACHOT & Frédéric Martini |
---|
| 11 | Copyright (c) 2009 |
---|
| 12 | Licence : GPL |
---|
| 13 | http://www.openstudio.fr/Un-viewer-de-panoramas-simple-en.html |
---|
| 14 | ========================================================= |
---|
| 15 | |
---|
| 16 | Synopsis: on picture-url if Picture-name contains _360 (by default) change picture display |
---|
| 17 | |
---|
| 18 | History |
---|
| 19 | 2010-05-27 2.1.a |
---|
| 20 | New: jQuery function replacement |
---|
| 21 | jquery.animated.innerfade has been removed |
---|
| 22 | and jquery.panorama added |
---|
| 23 | 2008-10-04 2.0.b (stable) |
---|
| 24 | IE7 bug, with jQuery script (Thanks to repié38 who find cause and solution) |
---|
| 25 | 2008-09-29 2.0.a (stable) |
---|
| 26 | Smarty version for Piwigo (Don't use it with PhpWebGallery 1.7.x) |
---|
| 27 | 2008-02-10 1.7.d (stable) |
---|
| 28 | IE6 bug: corrective for blank pictures |
---|
| 29 | 2008-02-06 1.7.c |
---|
| 30 | High Resolution support |
---|
| 31 | 2008-02-06 1.7.b (bugged) |
---|
| 32 | No title where no decription available |
---|
| 33 | 2008-01-15 First release |
---|
| 34 | */ |
---|
| 35 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
| 36 | define('ASP_DIR' , basename(dirname(__FILE__))); |
---|
| 37 | define('ASP_PATH' , PHPWG_PLUGINS_PATH . ASP_DIR . '/'); |
---|
[6534] | 38 | define('ASP_VER' , '2.1.b'); |
---|
[6527] | 39 | include_once( ASP_PATH . 'AS_Panorama.php'); |
---|
| 40 | ?> |
---|