|
Revision 7458, 0.9 KB
(checked in by cljosse, 3 years ago)
|
|
[Autosize][beta] Add the option validation of the autosize according to the status
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | /* |
|---|
| 3 | Plugin Name: AutoSize |
|---|
| 4 | Version: 1.2.7 |
|---|
| 5 | Description: Ajuste l'affichage des photos en fonction de la hauteur de la fenetre de navigation |
|---|
| 6 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=448 |
|---|
| 7 | Author: cljosse |
|---|
| 8 | Author URI:http://cljosse.free.fr |
|---|
| 9 | */ |
|---|
| 10 | /*| Ajoute l' option validation de l'autotaille en fonction du statut */ |
|---|
| 11 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
|---|
| 12 | if (!defined('AUTOSIZE_PATH')) |
|---|
| 13 | define( 'AUTOSIZE_PATH', PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/' ); |
|---|
| 14 | include_once(AUTOSIZE_PATH.'autosize.inc.php'); |
|---|
| 15 | $autosize_controler = new autosize_controler(); |
|---|
| 16 | |
|---|
| 17 | add_event_handler('loc_after_page_header', array(&$autosize_controler, 'cl_autosize_affiche'), 45 ); |
|---|
| 18 | |
|---|
| 19 | |
|---|
| 20 | add_event_handler('get_admin_plugin_menu_links', array(&$autosize_controler,'cl_autosize_admin') ); |
|---|
| 21 | add_event_handler('load_profile_in_template', array(&$autosize_controler,'cl_autosize_script'),40 ); |
|---|
| 22 | |
|---|
| 23 | ?> |
|---|