source: extensions/delete_rate/main.inc.php @ 7907

Last change on this file since 7907 was 7893, checked in by ddtddt, 13 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/*
3Plugin Name: Delete Rate
4Version: auto
5Description: delete Rate
6Plugin URI: http://piwigo.org/ext/extension_view.php?eid=475
7Author: ddtddt
8Author URI: http://piwigo.org/
9*/
10
11if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
12
13global $prefixeTable;
14
15define('RATE_DIR' , basename(dirname(__FILE__)));
16define('RATE_PATH' , PHPWG_PLUGINS_PATH . RATE_DIR . '/');
17load_language('plugin.lang', RATE_PATH);
18
19add_event_handler('get_admin_plugin_menu_links', 'rate_admin_menu');
20function 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.