aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/AMenuManager/main.inc.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xplugins/AMenuManager/main.inc.php68
1 files changed, 0 insertions, 68 deletions
diff --git a/plugins/AMenuManager/main.inc.php b/plugins/AMenuManager/main.inc.php
deleted file mode 100755
index ac90f3c7f..000000000
--- a/plugins/AMenuManager/main.inc.php
+++ /dev/null
@@ -1,68 +0,0 @@
-<?php
-/*
-Plugin Name: Advanced Menu Manager
-Version: 2.0
-Description: Gestion avancée du menu / Advanced management of menu
-Plugin URI: http://piwigo.org
-Author: Piwigo team
-Author URI: http://piwigo.org
-*/
-
-/*
---------------------------------------------------------------------------------
- Author : Grum
- email : grum@grum.dnsalias.com
- website : http://photos.grum.dnsalias.com
- PWG user : http://forum.phpwebgallery.net/profile.php?id=3706
-
- << May the Little SpaceFrog be with you ! >>
---------------------------------------------------------------------------------
-
-:: HISTORY
-
-1.0.0 - 27/07/08 -
-
-:: TO DO
-
---------------------------------------------------------------------------------
-
-:: NFO
- AMM_AIM : classe to manage plugin integration into plugin menu
- AMM_AIP : classe to manage plugin admin pages
- AMM_PIP : classe to manage plugin public integration
-
---------------------------------------------------------------------------------
-*/
-
-// pour faciliter le debug :o)
-ini_set('error_reporting', E_ALL);
-ini_set('display_errors', true);
-
-if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
-
-define('AMM_DIR' , basename(dirname(__FILE__)));
-define('AMM_PATH' , PHPWG_PLUGINS_PATH . AMM_DIR . '/');
-
-define('AMM_VERSION' , '1.0.0'); // => ne pas oublier la version dans l'entĂȘte !!
-
-global $prefixeTable;
-
-if(defined('IN_ADMIN'))
-{
- //AMM admin part loaded and active only if in admin page
- include_once("amm_aim.class.inc.php");
-
- $obj = new AMM_AIM($prefixeTable, __FILE__);
- $obj->init_events();
- set_plugin_data($plugin['id'], $obj);
-}
-else
-{
- //AMM public part loaded and active only if in admin page
- include_once("amm_pip.class.inc.php");
-
- $obj = new AMM_PIP($prefixeTable, __FILE__);
- set_plugin_data($plugin['id'], $obj);
-}
-
-?>