source: trunk/nbm.php @ 2278

Last change on this file since 2278 was 2278, checked in by rvelices, 16 years ago
  • changes to template to accomodate nbm (solved issue when we had same template filename with different root dirs)
  • started some changes in mail templates
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 4.0 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | PhpWebGallery - a PHP based picture gallery                           |
4// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
5// | Copyright (C) 2003-2008 PhpWebGallery Team - http://phpwebgallery.net |
6// +-----------------------------------------------------------------------+
7// | file          : $Id: nbm.php 2278 2008-03-13 01:43:45Z rvelices $
8// | last update   : $Date: 2008-03-13 01:43:45 +0000 (Thu, 13 Mar 2008) $
9// | last modifier : $Author: rvelices $
10// | revision      : $Revision: 2278 $
11// +-----------------------------------------------------------------------+
12// | This program is free software; you can redistribute it and/or modify  |
13// | it under the terms of the GNU General Public License as published by  |
14// | the Free Software Foundation                                          |
15// |                                                                       |
16// | This program is distributed in the hope that it will be useful, but   |
17// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
18// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
19// | General Public License for more details.                              |
20// |                                                                       |
21// | You should have received a copy of the GNU General Public License     |
22// | along with this program; if not, write to the Free Software           |
23// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
24// | USA.                                                                  |
25// +-----------------------------------------------------------------------+
26
27
28//--------------------------------------------------------------------- include
29define('PHPWG_ROOT_PATH','./');
30include_once(PHPWG_ROOT_PATH.'include/common.inc.php');
31check_status(ACCESS_NONE);
32include_once(PHPWG_ROOT_PATH.'include/functions_notification.inc.php');
33include_once(PHPWG_ROOT_PATH.'include/functions_mail.inc.php');
34include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
35include_once(PHPWG_ROOT_PATH.'admin/include/functions_notification_by_mail.inc.php');
36// Translations are in admin file too
37load_language('admin.lang');
38// Need to update a second time
39trigger_action('loading_lang');
40load_language('local.lang');
41
42
43
44// +-----------------------------------------------------------------------+
45// | Main                                                                  |
46// +-----------------------------------------------------------------------+
47$page['errors'] = array();
48$page['infos'] = array();
49
50if (isset($_GET['subscribe'])
51    and preg_match('/^[A-Za-z0-9]{16}$/', $_GET['subscribe']))
52{
53  subscribe_notification_by_mail(false, array($_GET['subscribe']));
54}
55else
56if (isset($_GET['unsubscribe'])
57    and preg_match('/^[A-Za-z0-9]{16}$/', $_GET['unsubscribe']))
58{
59  unsubscribe_notification_by_mail(false, array($_GET['unsubscribe']));
60}
61else
62{
63  array_push($page['errors'], l10n('nbm_unknown_identifier'));
64}
65
66// +-----------------------------------------------------------------------+
67// | template initialization                                               |
68// +-----------------------------------------------------------------------+
69$title = l10n('nbm_item_notification');
70$page['body_id'] = 'theNBMPage';
71include(PHPWG_ROOT_PATH.'include/page_header.php');
72
73$template->set_filenames(array('nbm'=>'nbm.tpl'));
74
75// +-----------------------------------------------------------------------+
76// | errors & infos                                                        |
77// +-----------------------------------------------------------------------+
78$template->assign(
79    array(
80      'errors' => $page['errors'],
81      'infos' => $page['infos'],
82    )
83  );
84
85// +-----------------------------------------------------------------------+
86// | html code display                                                     |
87// +-----------------------------------------------------------------------+
88$template->parse('nbm');
89include(PHPWG_ROOT_PATH.'include/page_tail.php');
90?>
Note: See TracBrowser for help on using the repository browser.