source: extensions/ThumbnailTooltip/main.inc.php @ 27975

Last change on this file since 27975 was 27975, checked in by sarybe, 10 years ago

[ThumbnailTooltip] Bug numero de version

File size: 751 bytes
Line 
1<?php
2/*
3Plugin Name: Thumbnail TooltipVersion: 1.4
4Description: Permet de changer l'infobulle sur les images dans les albums.
5Plugin URI: http://fr.piwigo.org/ext/extension_view.php?eid=738
6Author: Sarybe
7Author URI: http://www.lesrempartsdetours.com
8*/
9// 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)
10if (!defined('PHPWG_ROOT_PATH')) {
11  die('Hacking attempt!');
12}
13define('thumbnail_tooltip_PATH' , PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/');
14if (script_basename()  == 'admin') {
15  include(dirname(__FILE__).'/admin/functions.inc.php');
16}
17else {
18  include_once(dirname(__FILE__).'/initialize.inc.php');
19}?>
Note: See TracBrowser for help on using the repository browser.