source: trunk/notification.php @ 14607

Last change on this file since 14607 was 13240, checked in by rvelices, 12 years ago
  • multisize thumb longest side can be smaller than the square size
  • remove unused css, shorten/optimize php called very often (at least theoretically should be faster)
  • Property svn:eol-style set to LF
File size: 4.3 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based photo gallery                                    |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2012 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
59// +-----------------------------------------------------------------------+
60// |                          new feed creation                            |
61// +-----------------------------------------------------------------------+
62
63$page['feed'] = find_available_feed_id();
64
65$query = '
66INSERT INTO '.USER_FEED_TABLE.'
67  (id, user_id, last_check)
68  VALUES
69  (\''.$page['feed'].'\', '.$user['id'].', NULL)
70;';
71pwg_query($query);
72
73
74$feed_url=PHPWG_ROOT_PATH.'feed.php';
75if (is_a_guest())
76{
77  $feed_image_only_url=$feed_url;
78  $feed_url .= '?feed='.$page['feed'];
79}
80else
81{
82  $feed_url .= '?feed='.$page['feed'];
83  $feed_image_only_url=$feed_url.'&amp;image_only';
84}
85
86// +-----------------------------------------------------------------------+
87// |                        template initialization                        |
88// +-----------------------------------------------------------------------+
89
90$title = l10n('Notification');
91$page['body_id'] = 'theNotificationPage';
92$page['meta_robots']=array('noindex'=>1, 'nofollow'=>1);
93
94
95$template->set_filenames(array('notification'=>'notification.tpl'));
96
97$template->assign(
98  array(
99    'U_FEED' => $feed_url,
100    'U_FEED_IMAGE_ONLY' => $feed_image_only_url,
101    )
102  );
103 
104// include menubar
105$themeconf = $template->get_template_vars('themeconf');
106if (!isset($themeconf['hide_menu_on']) OR !in_array('theNotificationPage', $themeconf['hide_menu_on']))
107{
108  include( PHPWG_ROOT_PATH.'include/menubar.inc.php');
109}
110
111// +-----------------------------------------------------------------------+
112// |                           html code display                           |
113// +-----------------------------------------------------------------------+
114include(PHPWG_ROOT_PATH.'include/page_header.php');
115$template->pparse('notification');
116include(PHPWG_ROOT_PATH.'include/page_tail.php');
117
118?>
Note: See TracBrowser for help on using the repository browser.