Last change
on this file since 28400 was
28288,
checked in by sarybe, 11 years ago
|
[thumbnailTooltip] Update core files
|
File size:
763 bytes
|
Rev | Line | |
---|
[27649] | 1 | <?php |
---|
| 2 | /* |
---|
[27976] | 3 | Plugin Name: Thumbnail Tooltip |
---|
[28288] | 4 | Version: 1.4.5 |
---|
[27649] | 5 | Description: Permet de changer l'infobulle sur les images dans les albums. |
---|
[28288] | 6 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=738 |
---|
[27649] | 7 | Author: Sarybe |
---|
| 8 | Author URI: http://www.lesrempartsdetours.com |
---|
| 9 | */ |
---|
[27976] | 10 | |
---|
[28288] | 11 | // Inspiré des plugins CatAddFav by jfc (http://fr.piwigo.org/ext/extension_view.php?eid=489) et Lightbox by P@t (http://piwigo.org/ext/extension_view.php?eid=280) |
---|
[27976] | 12 | |
---|
[27649] | 13 | if (!defined('PHPWG_ROOT_PATH')) { |
---|
| 14 | die('Hacking attempt!'); |
---|
| 15 | } |
---|
[27976] | 16 | |
---|
[27649] | 17 | define('thumbnail_tooltip_PATH' , PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/'); |
---|
[27976] | 18 | |
---|
[27649] | 19 | if (script_basename() == 'admin') { |
---|
| 20 | include(dirname(__FILE__).'/admin/functions.inc.php'); |
---|
| 21 | } |
---|
| 22 | else { |
---|
| 23 | include_once(dirname(__FILE__).'/initialize.inc.php'); |
---|
[27976] | 24 | } |
---|
| 25 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.