Last change
on this file since 10627 was
7893,
checked in by ddtddt, 14 years ago
|
[extensions] - delete_rate - News plugin
|
-
Property svn:eol-style set to
LF
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
667 bytes
|
Line | |
---|
1 | <?php |
---|
2 | /* |
---|
3 | Plugin Name: Delete Rate |
---|
4 | Version: auto |
---|
5 | Description: delete Rate |
---|
6 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=475 |
---|
7 | Author: ddtddt |
---|
8 | Author URI: http://piwigo.org/ |
---|
9 | */ |
---|
10 | |
---|
11 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
12 | |
---|
13 | global $prefixeTable; |
---|
14 | |
---|
15 | define('RATE_DIR' , basename(dirname(__FILE__))); |
---|
16 | define('RATE_PATH' , PHPWG_PLUGINS_PATH . RATE_DIR . '/'); |
---|
17 | load_language('plugin.lang', RATE_PATH); |
---|
18 | |
---|
19 | add_event_handler('get_admin_plugin_menu_links', 'rate_admin_menu'); |
---|
20 | function rate_admin_menu($menu) |
---|
21 | { |
---|
22 | array_push($menu, array( |
---|
23 | 'NAME' => 'Delete Rate', |
---|
24 | 'URL' => get_admin_plugin_menu_link(RATE_PATH . 'admin/admin.php'))); |
---|
25 | return $menu; |
---|
26 | } |
---|
27 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.