1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | Piwigo - a PHP based photo gallery | |
---|
4 | // +-----------------------------------------------------------------------+ |
---|
5 | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org | |
---|
6 | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | |
---|
7 | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | |
---|
8 | // +-----------------------------------------------------------------------+ |
---|
9 | // | This program is free software; you can redistribute it and/or modify | |
---|
10 | // | it under the terms of the GNU General Public License as published by | |
---|
11 | // | the Free Software Foundation | |
---|
12 | // | | |
---|
13 | // | This program is distributed in the hope that it will be useful, but | |
---|
14 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
15 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
16 | // | General Public License for more details. | |
---|
17 | // | | |
---|
18 | // | You should have received a copy of the GNU General Public License | |
---|
19 | // | along with this program; if not, write to the Free Software | |
---|
20 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
21 | // | USA. | |
---|
22 | // +-----------------------------------------------------------------------+ |
---|
23 | |
---|
24 | |
---|
25 | //--------------------------------------------------------------------- include |
---|
26 | define('PHPWG_ROOT_PATH','./'); |
---|
27 | include_once(PHPWG_ROOT_PATH.'include/common.inc.php'); |
---|
28 | check_status(ACCESS_FREE); |
---|
29 | include_once(PHPWG_ROOT_PATH.'include/functions_notification.inc.php'); |
---|
30 | include_once(PHPWG_ROOT_PATH.'include/functions_mail.inc.php'); |
---|
31 | include_once(PHPWG_ROOT_PATH.'admin/include/functions.php'); |
---|
32 | include_once(PHPWG_ROOT_PATH.'admin/include/functions_notification_by_mail.inc.php'); |
---|
33 | // Translations are in admin file too |
---|
34 | load_language('admin.lang'); |
---|
35 | // Need to update a second time |
---|
36 | trigger_action('loading_lang'); |
---|
37 | load_language('lang', PHPWG_ROOT_PATH.PWG_LOCAL_DIR, array('no_fallback'=>true, 'local'=>true) ); |
---|
38 | |
---|
39 | |
---|
40 | |
---|
41 | // +-----------------------------------------------------------------------+ |
---|
42 | // | Main | |
---|
43 | // +-----------------------------------------------------------------------+ |
---|
44 | $page['errors'] = array(); |
---|
45 | $page['infos'] = array(); |
---|
46 | |
---|
47 | if (isset($_GET['subscribe']) |
---|
48 | and preg_match('/^[A-Za-z0-9]{16}$/', $_GET['subscribe'])) |
---|
49 | { |
---|
50 | subscribe_notification_by_mail(false, array($_GET['subscribe'])); |
---|
51 | } |
---|
52 | else |
---|
53 | if (isset($_GET['unsubscribe']) |
---|
54 | and preg_match('/^[A-Za-z0-9]{16}$/', $_GET['unsubscribe'])) |
---|
55 | { |
---|
56 | unsubscribe_notification_by_mail(false, array($_GET['unsubscribe'])); |
---|
57 | } |
---|
58 | else |
---|
59 | { |
---|
60 | array_push($page['errors'], l10n('Unknown identifier')); |
---|
61 | } |
---|
62 | |
---|
63 | // +-----------------------------------------------------------------------+ |
---|
64 | // | template initialization | |
---|
65 | // +-----------------------------------------------------------------------+ |
---|
66 | $title = l10n('Notification'); |
---|
67 | $page['body_id'] = 'theNBMPage'; |
---|
68 | |
---|
69 | $template->set_filenames(array('nbm'=>'nbm.tpl')); |
---|
70 | |
---|
71 | // +-----------------------------------------------------------------------+ |
---|
72 | // | errors & infos | |
---|
73 | // +-----------------------------------------------------------------------+ |
---|
74 | $template->assign( |
---|
75 | array( |
---|
76 | 'errors' => $page['errors'], |
---|
77 | 'infos' => $page['infos'], |
---|
78 | ) |
---|
79 | ); |
---|
80 | |
---|
81 | // include menubar |
---|
82 | $themeconf = $template->get_template_vars('themeconf'); |
---|
83 | if (!isset($themeconf['hide_menu_on']) OR !in_array('theNBMPage', $themeconf['hide_menu_on'])) |
---|
84 | { |
---|
85 | include( PHPWG_ROOT_PATH.'include/menubar.inc.php'); |
---|
86 | } |
---|
87 | |
---|
88 | // +-----------------------------------------------------------------------+ |
---|
89 | // | html code display | |
---|
90 | // +-----------------------------------------------------------------------+ |
---|
91 | include(PHPWG_ROOT_PATH.'include/page_header.php'); |
---|
92 | $template->parse('nbm'); |
---|
93 | include(PHPWG_ROOT_PATH.'include/page_tail.php'); |
---|
94 | ?> |
---|