| 1 | <?php |
|---|
| 2 | // +-----------------------------------------------------------------------+ |
|---|
| 3 | // | Piwigo - a PHP based picture gallery | |
|---|
| 4 | // +-----------------------------------------------------------------------+ |
|---|
| 5 | // | Copyright(C) 2008-2010 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.'local/', 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 | include(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'); |
|---|
| 86 | include(PHPWG_ROOT_PATH.'include/page_tail.php'); |
|---|
| 87 | ?> |
|---|