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 . 'Subscribe_to_Comments/'); |
---|
16 | define('SUBSCRIBE_TO_TABLE', $prefixeTable . 'subscribe_to_comments'); |
---|
17 | define('SUBSCRIBE_TO_VERSION', '2.0.3'); |
---|
18 | |
---|
19 | |
---|
20 | add_event_handler('init', 'stc_init'); |
---|
21 | |
---|
22 | |
---|
23 | function stc_init() |
---|
24 | { |
---|
25 | global $conf, $user, $pwg_loaded_plugins; |
---|
26 | |
---|
27 | // no comments on luciano |
---|
28 | if ($user['theme'] == 'luciano') return; |
---|
29 | |
---|
30 | // apply upgrade if needed |
---|
31 | if ( |
---|
32 | $pwg_loaded_plugins['Subscribe_to_Comments']['version'] == 'auto' or |
---|
33 | version_compare($pwg_loaded_plugins['Subscribe_to_Comments']['version'], SUBSCRIBE_TO_VERSION, '<') |
---|
34 | ) |
---|
35 | { |
---|
36 | include_once(SUBSCRIBE_TO_PATH . 'include/install.inc.php'); |
---|
37 | stc_install(); |
---|
38 | |
---|
39 | if ($pwg_loaded_plugins['Subscribe_to_Comments']['version'] != 'auto') |
---|
40 | { |
---|
41 | $query = ' |
---|
42 | UPDATE '. PLUGINS_TABLE .' |
---|
43 | SET version = "'. SUBSCRIBE_TO_VERSION .'" |
---|
44 | WHERE id = "Subscribe_to_Comments"'; |
---|
45 | pwg_query($query); |
---|
46 | |
---|
47 | $pwg_loaded_plugins['Subscribe_to_Comments']['version'] = SUBSCRIBE_TO_VERSION; |
---|
48 | |
---|
49 | if (defined('IN_ADMIN')) |
---|
50 | { |
---|
51 | $_SESSION['page_infos'][] = 'Subscribe to comments updated to version '. SUBSCRIBE_TO_VERSION; |
---|
52 | } |
---|
53 | } |
---|
54 | } |
---|
55 | |
---|
56 | // load language and conf |
---|
57 | load_language('plugin.lang', SUBSCRIBE_TO_PATH); |
---|
58 | $conf['Subscribe_to_Comments'] = unserialize($conf['Subscribe_to_Comments']); |
---|
59 | |
---|
60 | |
---|
61 | include_once(SUBSCRIBE_TO_PATH.'include/functions.inc.php'); |
---|
62 | include_once(SUBSCRIBE_TO_PATH.'include/subscribe_to_comments.inc.php'); |
---|
63 | |
---|
64 | |
---|
65 | // send mails |
---|
66 | add_event_handler('user_comment_insertion', 'stc_comment_insertion'); |
---|
67 | add_event_handler('user_comment_validation', 'stc_comment_validation', EVENT_HANDLER_PRIORITY_NEUTRAL, 2); |
---|
68 | |
---|
69 | // subscribe |
---|
70 | add_event_handler('loc_end_picture', 'stc_on_picture'); |
---|
71 | add_event_handler('loc_begin_coa', 'stc_on_album'); |
---|
72 | |
---|
73 | // management |
---|
74 | add_event_handler('loc_end_section_init', 'stc_detect_section'); |
---|
75 | add_event_handler('loc_begin_page_header', 'stc_load_section'); |
---|
76 | |
---|
77 | // items deletion |
---|
78 | add_event_handler('begin_delete_elements', 'stc_delete_elements'); |
---|
79 | add_event_handler('delete_categories', 'stc_delete_categories'); |
---|
80 | |
---|
81 | // profile link |
---|
82 | add_event_handler('loc_begin_profile', 'stc_profile_link'); |
---|
83 | |
---|
84 | // config page |
---|
85 | add_event_handler('get_admin_plugin_menu_links', 'stc_admin_menu'); |
---|
86 | } |
---|
87 | |
---|
88 | |
---|
89 | function stc_admin_menu($menu) |
---|
90 | { |
---|
91 | array_push($menu, array( |
---|
92 | 'NAME' => 'Subscribe to Comments', |
---|
93 | 'URL' => get_root_url().'admin.php?page=plugin-' . basename(dirname(__FILE__)) |
---|
94 | )); |
---|
95 | return $menu; |
---|
96 | } |
---|
97 | |
---|
98 | ?> |
---|