mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-10 18:53:01 +02:00
- based on test_menu by grum (thanks to you) - integration of dynamic menu bar to pwg
- the menubar is composed now of dynamic blocks that can be ordered/hidden - plugins can add their own blocks git-svn-id: http://piwigo.org/svn/trunk@2488 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -5,8 +5,8 @@ if (!defined('PHPWG_ROOT_PATH')) { die('Hacking attempt!'); }
|
||||
ini_set('error_reporting', E_ALL);
|
||||
ini_set('display_errors', true);
|
||||
|
||||
define('AMM_DIR' , basename(dirname(__FILE__)));
|
||||
define('AMM_PATH' , PHPWG_PLUGINS_PATH . AMM_DIR . '/');
|
||||
defined('AMM_DIR') || define('AMM_DIR' , basename(dirname(__FILE__)));
|
||||
defined('AMM_PATH') || define('AMM_PATH' , PHPWG_PLUGINS_PATH . AMM_DIR . '/');
|
||||
@include_once(PHPWG_PLUGINS_PATH.'grum_plugins_classes-2/tables.class.inc.php');
|
||||
|
||||
|
||||
@@ -23,11 +23,11 @@ load_language('plugin.lang', AMM_PATH);
|
||||
|
||||
function plugin_install($plugin_id, $plugin_version, &$errors)
|
||||
{
|
||||
global $prefixeTable, $gpc_installed, $menu;
|
||||
global $prefixeTable, $gpc_installed;
|
||||
if($gpc_installed)
|
||||
{
|
||||
$menu->register('mbAMM_links', 'Links', 0, 'AMM');
|
||||
$menu->register('mbAMM_randompict', 'Random pictures', 0, 'AMM');
|
||||
//$menu->register('mbAMM_links', 'Links', 0, 'AMM');
|
||||
//$menu->register('mbAMM_randompict', 'Random pictures', 0, 'AMM');
|
||||
$amm=new AMM_install($prefixeTable, __FILE__);
|
||||
$result=$amm->install();
|
||||
}
|
||||
@@ -47,18 +47,9 @@ function plugin_deactivate($plugin_id)
|
||||
|
||||
function plugin_uninstall($plugin_id)
|
||||
{
|
||||
global $prefixeTable, $gpc_installed, $menu;
|
||||
if($gpc_installed)
|
||||
{
|
||||
$menu->unregister('mbAMM_links');
|
||||
$menu->unregister('mbAMM_randompict');
|
||||
$amm=new AMM_install($prefixeTable, __FILE__);
|
||||
$result=$amm->uninstall();
|
||||
}
|
||||
else
|
||||
{
|
||||
array_push($errors, l10n('Grum Plugin Classes is not installed'));
|
||||
}
|
||||
global $prefixeTable;
|
||||
$amm=new AMM_install($prefixeTable, __FILE__);
|
||||
$result=$amm->uninstall();
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user