[850] | 1 | <?php |
---|
| 2 | // +-----------------------------------------------------------------------+ |
---|
[8728] | 3 | // | Piwigo - a PHP based photo gallery | |
---|
[2297] | 4 | // +-----------------------------------------------------------------------+ |
---|
[8728] | 5 | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org | |
---|
[2297] | 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 | // +-----------------------------------------------------------------------+ |
---|
[850] | 23 | |
---|
| 24 | // +-----------------------------------------------------------------------+ |
---|
| 25 | // | initialization | |
---|
| 26 | // +-----------------------------------------------------------------------+ |
---|
| 27 | |
---|
| 28 | define('PHPWG_ROOT_PATH','./'); |
---|
| 29 | include_once( PHPWG_ROOT_PATH.'include/common.inc.php' ); |
---|
| 30 | |
---|
| 31 | // +-----------------------------------------------------------------------+ |
---|
[1072] | 32 | // | Check Access and exit when user status is not ok | |
---|
| 33 | // +-----------------------------------------------------------------------+ |
---|
| 34 | check_status(ACCESS_GUEST); |
---|
| 35 | |
---|
| 36 | // +-----------------------------------------------------------------------+ |
---|
[850] | 37 | // | new feed creation | |
---|
| 38 | // +-----------------------------------------------------------------------+ |
---|
| 39 | |
---|
| 40 | $page['feed'] = find_available_feed_id(); |
---|
| 41 | |
---|
| 42 | $query = ' |
---|
| 43 | INSERT INTO '.USER_FEED_TABLE.' |
---|
| 44 | (id, user_id, last_check) |
---|
| 45 | VALUES |
---|
| 46 | (\''.$page['feed'].'\', '.$user['id'].', NULL) |
---|
| 47 | ;'; |
---|
| 48 | pwg_query($query); |
---|
| 49 | |
---|
[1636] | 50 | |
---|
[1750] | 51 | $feed_url=PHPWG_ROOT_PATH.'feed.php'; |
---|
[2029] | 52 | if (is_a_guest()) |
---|
[1750] | 53 | { |
---|
| 54 | $feed_image_only_url=$feed_url; |
---|
| 55 | $feed_url .= '?feed='.$page['feed']; |
---|
| 56 | } |
---|
| 57 | else |
---|
| 58 | { |
---|
| 59 | $feed_url .= '?feed='.$page['feed']; |
---|
| 60 | $feed_image_only_url=$feed_url.'&image_only'; |
---|
| 61 | } |
---|
| 62 | |
---|
[850] | 63 | // +-----------------------------------------------------------------------+ |
---|
| 64 | // | template initialization | |
---|
| 65 | // +-----------------------------------------------------------------------+ |
---|
| 66 | |
---|
| 67 | $title = l10n('Notification'); |
---|
| 68 | $page['body_id'] = 'theNotificationPage'; |
---|
[1703] | 69 | $page['meta_robots']=array('noindex'=>1, 'nofollow'=>1); |
---|
| 70 | |
---|
[1539] | 71 | |
---|
[850] | 72 | $template->set_filenames(array('notification'=>'notification.tpl')); |
---|
| 73 | |
---|
[2288] | 74 | $template->assign( |
---|
[850] | 75 | array( |
---|
[1636] | 76 | 'U_FEED' => $feed_url, |
---|
| 77 | 'U_FEED_IMAGE_ONLY' => $feed_image_only_url, |
---|
[850] | 78 | ) |
---|
| 79 | ); |
---|
[10812] | 80 | |
---|
| 81 | // include menubar |
---|
| 82 | $themeconf = $template->get_template_vars('themeconf'); |
---|
[10824] | 83 | if (!isset($themeconf['hide_menu_on']) OR !in_array('theNotificationPage', $themeconf['hide_menu_on'])) |
---|
[10812] | 84 | { |
---|
| 85 | include( PHPWG_ROOT_PATH.'include/menubar.inc.php'); |
---|
| 86 | } |
---|
[850] | 87 | |
---|
| 88 | // +-----------------------------------------------------------------------+ |
---|
| 89 | // | html code display | |
---|
| 90 | // +-----------------------------------------------------------------------+ |
---|
[2288] | 91 | include(PHPWG_ROOT_PATH.'include/page_header.php'); |
---|
[2446] | 92 | $template->pparse('notification'); |
---|
[850] | 93 | include(PHPWG_ROOT_PATH.'include/page_tail.php'); |
---|
| 94 | |
---|
| 95 | ?> |
---|