|
Revision 13462, 0.7 KB
(checked in by Eric, 15 months ago)
|
|
New version 2.3.5 for publication:
- Update uk_UA, thanks to : animan
- Update de_DE
|
-
Property svn:eol-style set to
LF
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | /* |
|---|
| 3 | Plugin Name: Comments Access Manager |
|---|
| 4 | Version: 2.3.5 |
|---|
| 5 | Description: Gérer l'accès aux commentaites - Manage comments access |
|---|
| 6 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=545 |
|---|
| 7 | Author: Eric |
|---|
| 8 | Author URI: http://www.infernoweb.net |
|---|
| 9 | */ |
|---|
| 10 | |
|---|
| 11 | /* History: CM_PATH.'Changelog.txt' */ |
|---|
| 12 | |
|---|
| 13 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
|---|
| 14 | if (!defined('CM_PATH')) define('CM_PATH' , PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/'); |
|---|
| 15 | |
|---|
| 16 | global $conf; |
|---|
| 17 | |
|---|
| 18 | include_once (CM_PATH.'include/functions.inc.php'); |
|---|
| 19 | |
|---|
| 20 | // Plugin administration panel |
|---|
| 21 | add_event_handler('get_admin_plugin_menu_links', 'CM_admin_menu'); |
|---|
| 22 | |
|---|
| 23 | // Comments authorisation check |
|---|
| 24 | add_event_handler('user_comment_check', 'CM_CheckComment', 50, 2); |
|---|
| 25 | ?> |
|---|