source: branches/2.1/notification.php @ 6464

Last change on this file since 6464 was 6364, checked in by plg, 14 years ago

remove all svn:mergeinfo properties

  • Property svn:eol-style set to LF
File size: 3.7 KB
RevLine 
[850]1<?php
2// +-----------------------------------------------------------------------+
[2297]3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
[5196]5// | Copyright(C) 2008-2010 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
28define('PHPWG_ROOT_PATH','./');
29include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
30
31// +-----------------------------------------------------------------------+
[1072]32// | Check Access and exit when user status is not ok                      |
33// +-----------------------------------------------------------------------+
34check_status(ACCESS_GUEST);
35
36// +-----------------------------------------------------------------------+
[850]37// |                          new feed creation                            |
38// +-----------------------------------------------------------------------+
39
40$page['feed'] = find_available_feed_id();
41
42$query = '
43INSERT INTO '.USER_FEED_TABLE.'
44  (id, user_id, last_check)
45  VALUES
46  (\''.$page['feed'].'\', '.$user['id'].', NULL)
47;';
48pwg_query($query);
49
[1636]50
[1750]51$feed_url=PHPWG_ROOT_PATH.'feed.php';
[2029]52if (is_a_guest())
[1750]53{
54  $feed_image_only_url=$feed_url;
55  $feed_url .= '?feed='.$page['feed'];
56}
57else
58{
59  $feed_url .= '?feed='.$page['feed'];
60  $feed_image_only_url=$feed_url.'&amp;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  );
80
81// +-----------------------------------------------------------------------+
82// |                           html code display                           |
83// +-----------------------------------------------------------------------+
[2288]84include(PHPWG_ROOT_PATH.'include/page_header.php');
[2446]85$template->pparse('notification');
[850]86include(PHPWG_ROOT_PATH.'include/page_tail.php');
87
88?>
Note: See TracBrowser for help on using the repository browser.