source: trunk/nbm.php @ 10591

Last change on this file since 10591 was 8728, checked in by plg, 13 years ago

Happy new year 2011

Change "Piwigo - a PHP based picture gallery" into "Piwigo - a PHP based photo gallery"

  • Property svn:eol-style set to LF
File size: 4.0 KB
Line 
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
26define('PHPWG_ROOT_PATH','./');
27include_once(PHPWG_ROOT_PATH.'include/common.inc.php');
28check_status(ACCESS_FREE);
29include_once(PHPWG_ROOT_PATH.'include/functions_notification.inc.php');
30include_once(PHPWG_ROOT_PATH.'include/functions_mail.inc.php');
31include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
32include_once(PHPWG_ROOT_PATH.'admin/include/functions_notification_by_mail.inc.php');
33// Translations are in admin file too
34load_language('admin.lang');
35// Need to update a second time
36trigger_action('loading_lang');
37load_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
47if (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}
52else
53if (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}
58else
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';
68include(PHPWG_ROOT_PATH.'include/page_header.php');
69
70$template->set_filenames(array('nbm'=>'nbm.tpl'));
71
72// +-----------------------------------------------------------------------+
73// | errors & infos                                                        |
74// +-----------------------------------------------------------------------+
75$template->assign(
76    array(
77      'errors' => $page['errors'],
78      'infos' => $page['infos'],
79    )
80  );
81
82// +-----------------------------------------------------------------------+
83// | html code display                                                     |
84// +-----------------------------------------------------------------------+
85$template->parse('nbm');
86include(PHPWG_ROOT_PATH.'include/page_tail.php');
87?>
Note: See TracBrowser for help on using the repository browser.