source: trunk/category.php @ 856

Last change on this file since 856 was 850, checked in by plg, 19 years ago
  • new : HTML BODY identifier to let CSS stylesheets manage specific behaviour.
  • deletion : admin/search useless
  • improvement : in admin/user_list, special behaviour for true/false fields (expand, show_comments)
  • new : gallery_title and gallery_description are displayed at the top of each page.
  • improvement : simplification in HTML for categories menu.
  • improvement : standardization of presentation in all public pages (identification, registration, search, profile, notification, comments, etc.)

(not in ChangeLog, below this line)

  • add forgotten notification.php (should have been added in a previous commit)
  • [template cclear] deletion of useless class .bouton
  • [template cclear] for test purpose, new presentation of register page (using FORM.filter)
  • [template cclear] adaptation of admin/group_list from template default
  • [template cclear] deletion of obsolete admin/infos_images
  • [template cclear] deletion of obsolete admin/search_username
  • [template cclear] new icon register.png
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 12.7 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | PhpWebGallery - a PHP based picture gallery                           |
4// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
5// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
6// +-----------------------------------------------------------------------+
7// | branch        : BSF (Best So Far)
8// | file          : $RCSfile$
9// | last update   : $Date: 2005-08-25 22:43:47 +0000 (Thu, 25 Aug 2005) $
10// | last modifier : $Author: plg $
11// | revision      : $Revision: 850 $
12// +-----------------------------------------------------------------------+
13// | This program is free software; you can redistribute it and/or modify  |
14// | it under the terms of the GNU General Public License as published by  |
15// | the Free Software Foundation                                          |
16// |                                                                       |
17// | This program is distributed in the hope that it will be useful, but   |
18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
20// | General Public License for more details.                              |
21// |                                                                       |
22// | You should have received a copy of the GNU General Public License     |
23// | along with this program; if not, write to the Free Software           |
24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
25// | USA.                                                                  |
26// +-----------------------------------------------------------------------+
27
28//--------------------------------------------------------------------- include
29define('PHPWG_ROOT_PATH','./');
30include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
31//---------------------------------------------------------------------- logout
32if ( isset( $_GET['act'] )
33     and $_GET['act'] == 'logout'
34     and isset( $_COOKIE['id'] ) )
35{
36  // cookie deletion if exists
37  setcookie( 'id', '', 0, cookie_path() );
38  $url = 'category.php';
39  redirect( $url );
40}
41//-------------------------------------------------- access authorization check
42if (isset($_GET['cat']))
43{
44  check_cat_id($_GET['cat']);
45}
46check_login_authorization();
47if (isset($page['cat']) and is_numeric($page['cat']))
48{
49  check_restrictions($page['cat']);
50}
51//-------------------------------------------------------------- initialization
52// detection of the start picture to display
53if ( !isset( $_GET['start'] )
54     or !is_numeric( $_GET['start'] )
55     or ( is_numeric( $_GET['start'] ) and $_GET['start'] < 0 ) )
56{
57  $page['start'] = 0;
58}
59else
60{
61  $page['start'] = $_GET['start'];
62}
63
64// Sometimes, a "num" is provided in the URL. It is the number
65// of the picture to show. This picture must be in the thumbnails page.
66// We have to find the right $page['start'] that show the num picture
67// in this category
68if ( isset( $_GET['num'] )
69     and is_numeric( $_GET['num'] )
70     and $_GET['num'] >= 0 )
71{
72  $page['start'] = floor( $_GET['num'] / $user['nb_image_page'] );
73  $page['start']*= $user['nb_image_page'];
74}
75
76initialize_category();
77
78// caddie filling :-)
79if (isset($_GET['caddie']))
80{
81//  include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
82 
83  $query = '
84SELECT DISTINCT(id)
85  FROM '.IMAGES_TABLE.' AS i
86    INNER JOIN '.IMAGE_CATEGORY_TABLE.' AS ic ON id = ic.image_id
87  '.$page['where'].'
88;';
89  fill_caddie(array_from_query($query, 'id'));
90}
91
92// creation of the array containing the cat ids to expand in the menu
93// $page['tab_expand'] contains an array with the category ids
94// $page['expand'] contains the string to display in URL with comma
95$page['tab_expand'] = array();
96if ( isset( $page['cat'] ) and is_numeric( $page['cat'] ) )
97{
98  // the category displayed (in the URL cat=23) must be seen in the menu ->
99  // parent categories must be expanded
100  $uppercats = explode( ',', $page['uppercats'] );
101  foreach ( $uppercats as $uppercat ) {
102    array_push( $page['tab_expand'], $uppercat );
103  }
104}
105// in case of expanding all authorized cats $page['tab_expand'] is empty
106if ( $user['expand'] )
107{
108  $page['tab_expand'] = array();
109}
110//----------------------------------------------------- template initialization
111//
112// Start output of page
113//
114$title = $page['title'];
115$page['body_id'] = 'theCategoryPage';
116include(PHPWG_ROOT_PATH.'include/page_header.php');
117
118$template->set_filenames( array('category'=>'category.tpl') );
119//-------------------------------------------------------------- category title
120if (isset($page['cat']) and is_numeric($page['cat']))
121{
122  $template_title = get_cat_display_name($page['cat_name'],
123                                         'category.php?cat=',
124                                         false);
125}
126else
127{
128  $template_title = $page['title'];
129}
130
131if ( isset( $page['cat_nb_images'] ) and $page['cat_nb_images'] > 0 )
132{
133  $template_title.= ' ['.$page['cat_nb_images'].']';
134}
135
136$icon_recent = get_icon(date('Y-m-d'));
137
138$template->assign_vars(
139  array(
140  'NB_PICTURE' => count_user_total_images(),
141  'TITLE' => $template_title,
142  'USERNAME' => $user['username'],
143  'TOP_NUMBER'=>$conf['top_number'],
144  'MENU_CATEGORIES_CONTENT'=>get_categories_menu(),
145
146  'L_CATEGORIES' => $lang['categories'],
147  'L_HINT_CATEGORY' => $lang['hint_category'],
148  'L_SUBCAT' => $lang['sub-cat'],
149  'L_IMG_AVAILABLE' => $lang['images_available'],
150  'L_TOTAL' => $lang['total'],
151  'L_SPECIAL_CATEGORIES' => $lang['special_categories'],
152  'L_SUMMARY' => $lang['title_menu'],
153  'L_UPLOAD' => $lang['upload_picture'],
154  'L_COMMENT' => $lang['comments'],
155  'L_IDENTIFY' => $lang['identification'],
156  'L_SUBMIT' => $lang['menu_login'],
157  'L_USERNAME' => $lang['login'],
158  'L_PASSWORD' => $lang['password'],
159  'L_HELLO' => $lang['hello'],
160  'L_REGISTER' => $lang['ident_register'],
161  'L_LOGIN' => $lang['menu_login'],
162  'L_LOGOUT' => $lang['logout'],
163  'L_ADMIN' => $lang['admin'],
164  'L_ADMIN_HINT' => $lang['hint_admin'],
165  'L_PROFILE' => $lang['customize'],
166  'L_PROFILE_HINT' => $lang['hint_customize'],
167  'L_REMEMBER_ME' => $lang['remember_me'],
168 
169  'F_IDENTIFY' => add_session_id( PHPWG_ROOT_PATH.'identification.php' ),
170  'T_RECENT' => $icon_recent,
171
172  'U_HOME' => add_session_id( PHPWG_ROOT_PATH.'category.php' ),
173  'U_REGISTER' => add_session_id( PHPWG_ROOT_PATH.'register.php' ),
174  'U_LOGOUT' => PHPWG_ROOT_PATH.'category.php?act=logout',
175  'U_ADMIN'=>add_session_id( PHPWG_ROOT_PATH.'admin.php' ),
176  'U_PROFILE'=>add_session_id(PHPWG_ROOT_PATH.'profile.php')
177  )
178);
179//-------------------------------------------------------------- external links
180if (count($conf['links']) > 0)
181{
182  $template->assign_block_vars('links', array());
183
184  foreach ($conf['links'] as $url => $label)
185  {
186    $template->assign_block_vars(
187      'links.link',
188      array(
189        'URL' => $url,
190        'LABEL' => $label
191        ));
192  }
193}
194//---------------------------------------------------------- special categories
195// favorites categories
196if ( !$user['is_the_guest'] )
197{
198  $template->assign_block_vars('username', array());
199
200  $template->assign_block_vars(
201    'special_cat',
202    array(
203      'URL' => add_session_id(PHPWG_ROOT_PATH.'category.php?cat=fav'),
204      'TITLE' => $lang['favorite_cat_hint'],
205      'NAME' => $lang['favorite_cat']
206      ));
207}
208// most visited
209$template->assign_block_vars(
210  'special_cat',
211  array(
212    'URL' => add_session_id(PHPWG_ROOT_PATH.'category.php?cat=most_visited'),
213    'TITLE' => $lang['most_visited_cat_hint'],
214    'NAME' => $lang['most_visited_cat']
215    ));
216// best rated
217$template->assign_block_vars(
218  'special_cat',
219  array(
220    'URL' => add_session_id(PHPWG_ROOT_PATH.'category.php?cat=best_rated'),
221    'TITLE' => $lang['best_rated_cat_hint'],
222    'NAME' => $lang['best_rated_cat']
223    ));
224// random
225$template->assign_block_vars(
226  'special_cat',
227  array(
228    'URL' => add_session_id(PHPWG_ROOT_PATH.'random.php'),
229    'TITLE' => $lang['random_cat_hint'],
230    'NAME' => $lang['random_cat']
231    ));
232// recent pics
233$template->assign_block_vars(
234  'special_cat',
235  array(
236    'URL' => add_session_id(PHPWG_ROOT_PATH.'category.php?cat=recent_pics'),
237    'TITLE' => $lang['recent_pics_cat_hint'],
238    'NAME' => $lang['recent_pics_cat']
239    ));
240// recent cats
241$template->assign_block_vars(
242  'special_cat',
243  array(
244    'URL' => add_session_id(PHPWG_ROOT_PATH.'category.php?cat=recent_cats'),
245    'TITLE' => $lang['recent_cats_cat_hint'],
246    'NAME' => $lang['recent_cats_cat']
247    ));
248// calendar
249$template->assign_block_vars(
250  'special_cat',
251  array(
252    'URL' => add_session_id(PHPWG_ROOT_PATH.'category.php?cat=calendar'),
253    'TITLE' => $lang['calendar_hint'],
254    'NAME' => $lang['calendar']
255    ));
256//--------------------------------------------------------------------- summary
257
258if ($user['is_the_guest'])
259{
260  $template->assign_block_vars('register', array());
261  $template->assign_block_vars('login', array());
262 
263  $template->assign_block_vars('quickconnect', array());
264  if ($conf['authorize_remembering'])
265  {
266    $template->assign_block_vars('quickconnect.remember_me', array());
267  }
268}
269else
270{
271  $template->assign_block_vars('hello', array());
272  $template->assign_block_vars('profile', array());
273
274  // the logout link has no meaning with Apache authentication : it is not
275  // possible to logout with this kind of authentication.
276  if (!$conf['apache_authentication'])
277  {
278    $template->assign_block_vars('logout', array());
279  }
280
281  if ('admin' == $user['status'])
282  {
283    $template->assign_block_vars('admin', array());
284  }
285}
286
287// search link
288$template->assign_block_vars('summary', array(
289'TITLE'=>$lang['hint_search'],
290'NAME'=>$lang['search'],
291'U_SUMMARY'=>add_session_id( 'search.php' ),
292));
293
294// comments link
295$template->assign_block_vars('summary', array(
296'TITLE'=>$lang['hint_comments'],
297'NAME'=>$lang['comments'],
298'U_SUMMARY'=>add_session_id( 'comments.php' ),
299));
300
301// about link
302$template->assign_block_vars('summary', array(
303'TITLE'=>$lang['hint_about'],
304'NAME'=>$lang['about'],
305'U_SUMMARY'=>add_session_id( 'about.php?'.str_replace( '&', '&amp;', $_SERVER['QUERY_STRING'] ) )
306));
307
308// notification
309$template->assign_block_vars(
310  'summary',
311  array(
312    'TITLE'=>l10n('notification'),
313    'NAME'=>l10n('Notification'),
314    'U_SUMMARY'=>add_session_id(PHPWG_ROOT_PATH.'notification.php')
315));
316
317if (isset($page['cat'])
318    and is_numeric($page['cat'])
319    and 'admin' == $user['status'])
320{
321  $template->assign_block_vars(
322    'edit',
323    array(
324      'URL' =>
325        add_session_id(
326          PHPWG_ROOT_PATH.'admin.php?page=cat_modify'
327          .'&amp;cat_id='.$page['cat']
328          )
329      )
330    );
331}
332
333//------------------------------------------------------ main part : thumbnails
334if (isset($page['cat'])
335    and ((is_numeric($page['cat']) and $page['cat_nb_images'] != 0)
336         or in_array($page['cat'],
337                     array('search'
338                           ,'most_visited'
339                           ,'recent_pics'
340                           ,'best_rated'
341                           ,'list'
342                           ,'fav'
343                       ))))
344{
345  include(PHPWG_ROOT_PATH.'include/category_default.inc.php');
346
347  if ('admin' == $user['status'])
348  {
349    $template->assign_block_vars(
350      'caddie',
351      array(
352        'URL' =>
353          add_session_id(
354            PHPWG_ROOT_PATH.'category.php'
355            .get_query_string_diff(array('caddie')).'&amp;caddie=1')
356        )
357      );
358  }
359}
360elseif (isset($page['cat']) and $page['cat'] == 'calendar')
361{
362  include(PHPWG_ROOT_PATH.'include/category_calendar.inc.php');
363}
364elseif (isset($page['cat']) and $page['cat'] == 'recent_cats')
365{
366  include(PHPWG_ROOT_PATH.'include/category_recent_cats.inc.php');
367}
368else
369{
370  include(PHPWG_ROOT_PATH.'include/category_subcats.inc.php');
371}
372//------------------------------------------------------- category informations
373if ( isset ( $page['cat'] ) )
374{
375  // upload a picture in the category
376  if (is_numeric($page['cat'])
377      and $page['cat_site_id'] == 1
378      and $page['cat_dir'] != ''
379      and $page['cat_uploadable'])
380  {
381    $url = PHPWG_ROOT_PATH.'upload.php?cat='.$page['cat'];
382    $template->assign_block_vars(
383      'upload',
384      array('U_UPLOAD'=>add_session_id( $url ))
385      );
386  }
387
388  if ( $page['navigation_bar'] != ''
389       or ( isset( $page['comment'] ) and $page['comment'] != '' ) )
390  {
391    $template->assign_block_vars('cat_infos',array());
392  }
393 
394  // navigation bar
395  if ( $page['navigation_bar'] != '' )
396  { 
397    $template->assign_block_vars(
398      'cat_infos.navigation',
399      array('NAV_BAR' => $page['navigation_bar'])
400      );
401  }
402  // category comment
403  if ( isset( $page['comment'] ) and $page['comment'] != '' )
404  {
405    $template->assign_block_vars(
406      'cat_infos.comment',
407      array('COMMENTS' => $page['comment'])
408      );
409  }
410}
411//------------------------------------------------------------ log informations
412pwg_log( 'category', $page['title'] );
413mysql_close();
414
415$template->parse('category');
416include(PHPWG_ROOT_PATH.'include/page_tail.php');
417?>
Note: See TracBrowser for help on using the repository browser.