1 | <?php |
---|
2 | /* |
---|
3 | Plugin Name: Subscribe To Comments |
---|
4 | Version: auto |
---|
5 | Description: This plugin allows to subscribe to comments by email. |
---|
6 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=587 |
---|
7 | Author: Mistic |
---|
8 | Author URI: http://www.strangeplanet.fr |
---|
9 | */ |
---|
10 | |
---|
11 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
12 | |
---|
13 | global $prefixeTable; |
---|
14 | |
---|
15 | define('SUBSCRIBE_TO_PATH' , PHPWG_PLUGINS_PATH . basename(dirname(__FILE__)) . '/'); |
---|
16 | define('SUBSCRIBE_TO_TABLE', $prefixeTable . 'subscribe_to_comments'); |
---|
17 | |
---|
18 | add_event_handler('init', 'stc_init'); |
---|
19 | |
---|
20 | function stc_init() |
---|
21 | { |
---|
22 | global $conf, $user; |
---|
23 | |
---|
24 | // no comments on luciano |
---|
25 | if ($user['theme'] == 'luciano') return; |
---|
26 | |
---|
27 | load_language('plugin.lang', SUBSCRIBE_TO_PATH); |
---|
28 | $conf['Subscribe_to_Comments'] = unserialize($conf['Subscribe_to_Comments']); |
---|
29 | |
---|
30 | include_once(SUBSCRIBE_TO_PATH.'include/functions.inc.php'); |
---|
31 | include_once(SUBSCRIBE_TO_PATH.'include/subscribe_to_comments.inc.php'); |
---|
32 | |
---|
33 | // send mails |
---|
34 | add_event_handler('user_comment_insertion', 'stc_comment_insertion'); |
---|
35 | add_event_handler('user_comment_validation', 'stc_comment_validation', EVENT_HANDLER_PRIORITY_NEUTRAL, 2); |
---|
36 | |
---|
37 | // subscribe |
---|
38 | add_event_handler('loc_end_picture', 'stc_on_picture'); |
---|
39 | add_event_handler('loc_begin_coa', 'stc_on_album'); |
---|
40 | |
---|
41 | // management |
---|
42 | add_event_handler('loc_end_section_init', 'stc_detect_section'); |
---|
43 | add_event_handler('loc_begin_page_header', 'stc_load_section'); |
---|
44 | |
---|
45 | // profile link |
---|
46 | add_event_handler('loc_begin_profile', 'stc_profile_link'); |
---|
47 | |
---|
48 | // config page |
---|
49 | add_event_handler('get_admin_plugin_menu_links', 'stc_admin_menu'); |
---|
50 | } |
---|
51 | |
---|
52 | function stc_admin_menu($menu) |
---|
53 | { |
---|
54 | array_push($menu, array( |
---|
55 | 'NAME' => 'Subscribe to Comments', |
---|
56 | 'URL' => get_root_url().'admin.php?page=plugin-' . basename(dirname(__FILE__)) |
---|
57 | )); |
---|
58 | return $menu; |
---|
59 | } |
---|
60 | ?> |
---|