1 | <?php |
---|
2 | /* |
---|
3 | Plugin Name: Subscribe To Comments |
---|
4 | Version: auto |
---|
5 | Description: This plugin allows you 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_DIR' , basename(dirname(__FILE__))); |
---|
16 | define('SUBSCRIBE_TO_PATH' , PHPWG_PLUGINS_PATH . SUBSCRIBE_TO_DIR . '/'); |
---|
17 | define('SUBSCRIBE_TO_TABLE', $prefixeTable . 'subscribe_to_comments'); |
---|
18 | |
---|
19 | add_event_handler('init', 'stc_init'); |
---|
20 | |
---|
21 | function stc_init() |
---|
22 | { |
---|
23 | include_once(SUBSCRIBE_TO_PATH.'include/functions.inc.php'); |
---|
24 | include_once(SUBSCRIBE_TO_PATH.'include/subscribe_to_comments.inc.php'); |
---|
25 | |
---|
26 | load_language('plugin.lang', SUBSCRIBE_TO_PATH); |
---|
27 | |
---|
28 | // send mails |
---|
29 | add_event_handler('user_comment_insertion', 'stc_comment_insertion'); |
---|
30 | add_event_handler('user_comment_validation', 'stc_comment_validation', EVENT_HANDLER_PRIORITY_NEUTRAL, 2); |
---|
31 | |
---|
32 | // subscribe |
---|
33 | add_event_handler('loc_end_picture', 'stc_on_picture'); |
---|
34 | add_event_handler('loc_begin_index', 'stc_on_album'); |
---|
35 | |
---|
36 | // management |
---|
37 | add_event_handler('loc_end_section_init', 'stc_detect_section'); |
---|
38 | add_event_handler('loc_end_index', 'stc_load_section'); |
---|
39 | |
---|
40 | // profile link |
---|
41 | add_event_handler('loc_begin_profile', 'stc_profile_link'); |
---|
42 | } |
---|
43 | ?> |
---|