source: branches/2.5/notification.php @ 26010

Last change on this file since 26010 was 20609, checked in by rvelices, 11 years ago

replaced page_messages.php with a function to call

  • Property svn:eol-style set to LF
File size: 4.4 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based photo gallery                                    |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2013 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// |                           initialization                              |
26// +-----------------------------------------------------------------------+
27
28define('PHPWG_ROOT_PATH','./');
29include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
30
31/**
32 * search an available feed_id
33 *
34 * @return string feed identifier
35 */
36function find_available_feed_id()
37{
38  while (true)
39  {
40    $key = generate_key(50);
41    $query = '
42SELECT COUNT(*)
43  FROM '.USER_FEED_TABLE.'
44  WHERE id = \''.$key.'\'
45;';
46    list($count) = pwg_db_fetch_row(pwg_query($query));
47    if (0 == $count)
48    {
49      return $key;
50    }
51  }
52}
53
54// +-----------------------------------------------------------------------+
55// | Check Access and exit when user status is not ok                      |
56// +-----------------------------------------------------------------------+
57check_status(ACCESS_GUEST);
58
59trigger_action('loc_begin_notification');
60
61// +-----------------------------------------------------------------------+
62// |                          new feed creation                            |
63// +-----------------------------------------------------------------------+
64
65$page['feed'] = find_available_feed_id();
66
67$query = '
68INSERT INTO '.USER_FEED_TABLE.'
69  (id, user_id, last_check)
70  VALUES
71  (\''.$page['feed'].'\', '.$user['id'].', NULL)
72;';
73pwg_query($query);
74
75
76$feed_url=PHPWG_ROOT_PATH.'feed.php';
77if (is_a_guest())
78{
79  $feed_image_only_url=$feed_url;
80  $feed_url .= '?feed='.$page['feed'];
81}
82else
83{
84  $feed_url .= '?feed='.$page['feed'];
85  $feed_image_only_url=$feed_url.'&amp;image_only';
86}
87
88// +-----------------------------------------------------------------------+
89// |                        template initialization                        |
90// +-----------------------------------------------------------------------+
91
92$title = l10n('Notification');
93$page['body_id'] = 'theNotificationPage';
94$page['meta_robots']=array('noindex'=>1, 'nofollow'=>1);
95
96
97$template->set_filenames(array('notification'=>'notification.tpl'));
98
99$template->assign(
100  array(
101    'U_FEED' => $feed_url,
102    'U_FEED_IMAGE_ONLY' => $feed_image_only_url,
103    )
104  );
105 
106// include menubar
107$themeconf = $template->get_template_vars('themeconf');
108if (!isset($themeconf['hide_menu_on']) OR !in_array('theNotificationPage', $themeconf['hide_menu_on']))
109{
110  include( PHPWG_ROOT_PATH.'include/menubar.inc.php');
111}
112
113// +-----------------------------------------------------------------------+
114// |                           html code display                           |
115// +-----------------------------------------------------------------------+
116include(PHPWG_ROOT_PATH.'include/page_header.php');
117trigger_action('loc_end_notification');
118flush_page_messages();
119$template->pparse('notification');
120include(PHPWG_ROOT_PATH.'include/page_tail.php');
121
122?>
Note: See TracBrowser for help on using the repository browser.