[6527] | 1 | <?php /* |
---|
| 2 | Plugin Name: Panoramas |
---|
[21585] | 3 | Version: auto |
---|
[6527] | 4 | Description: A simple panorama viewer based on jQuery |
---|
[19460] | 5 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=207 |
---|
[6527] | 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 |
---|
[19536] | 19 | 2012-12-23 2.4.6 |
---|
| 20 | New: Ajout de fonctionnalités de type Pamooramics |
---|
[19460] | 21 | 2012-12-15 2.4.5 |
---|
| 22 | New: Add Viewport height parameter |
---|
| 23 | Upgrade for Piwigo 2.4.5 |
---|
[6527] | 24 | 2010-05-27 2.1.a |
---|
| 25 | New: jQuery function replacement |
---|
| 26 | jquery.animated.innerfade has been removed |
---|
| 27 | and jquery.panorama added |
---|
| 28 | 2008-10-04 2.0.b (stable) |
---|
| 29 | IE7 bug, with jQuery script (Thanks to repié38 who find cause and solution) |
---|
| 30 | 2008-09-29 2.0.a (stable) |
---|
| 31 | Smarty version for Piwigo (Don't use it with PhpWebGallery 1.7.x) |
---|
| 32 | 2008-02-10 1.7.d (stable) |
---|
| 33 | IE6 bug: corrective for blank pictures |
---|
| 34 | 2008-02-06 1.7.c |
---|
| 35 | High Resolution support |
---|
| 36 | 2008-02-06 1.7.b (bugged) |
---|
| 37 | No title where no decription available |
---|
| 38 | 2008-01-15 First release |
---|
| 39 | */ |
---|
| 40 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
| 41 | define('ASP_DIR' , basename(dirname(__FILE__))); |
---|
| 42 | define('ASP_PATH' , PHPWG_PLUGINS_PATH . ASP_DIR . '/'); |
---|
| 43 | include_once( ASP_PATH . 'AS_Panorama.php'); |
---|
| 44 | ?> |
---|