source: extensions/reset_level/main.inc.php @ 14518

Last change on this file since 14518 was 9752, checked in by ddtddt, 13 years ago

[extensions] - reset_level - First release

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 674 bytes
Line 
1<?php
2/*
3Plugin Name: reset level
4Version: auto
5Description: reset level
6Plugin URI: http://piwigo.org/ext/extension_view.php?eid=517
7Author: ddtddt
8Author URI: http://piwigo.org/
9*/
10
11if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
12
13global $prefixeTable;
14
15define('DELLE_DIR' , basename(dirname(__FILE__)));
16define('DELLE_PATH' , PHPWG_PLUGINS_PATH . DELLE_DIR . '/');
17load_language('plugin.lang', DELLE_PATH);
18
19add_event_handler('get_admin_plugin_menu_links', 'delle_admin_menu');
20function delle_admin_menu($menu)
21{
22  array_push($menu, array(
23        'NAME' => 'Reset level',
24    'URL' => get_admin_plugin_menu_link(DELLE_PATH . 'admin/admin.php')));
25  return $menu;
26}
27?>
Note: See TracBrowser for help on using the repository browser.