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-2006 PhpWebGallery Team - http://phpwebgallery.net | |
---|
6 | // +-----------------------------------------------------------------------+ |
---|
7 | // | branch : BSF (Best So Far) |
---|
8 | // | file : $Id: section_init.inc.php 1689 2007-01-02 22:30:18Z rub $ |
---|
9 | // | last update : $Date: 2007-01-02 22:30:18 +0000 (Tue, 02 Jan 2007) $ |
---|
10 | // | last modifier : $Author: rub $ |
---|
11 | // | revision : $Revision: 1689 $ |
---|
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 | /** |
---|
29 | * This included page checks section related parameter and provides |
---|
30 | * following informations: |
---|
31 | * |
---|
32 | * - $page['title'] |
---|
33 | * |
---|
34 | * - $page['items']: ordered list of items to display |
---|
35 | * |
---|
36 | * - $page['cat_nb_images']: number of items in the section (should be equal |
---|
37 | * to count($page['items'])) |
---|
38 | * |
---|
39 | * - $page['thumbnails_include']: include page managing thumbnails to |
---|
40 | * display |
---|
41 | */ |
---|
42 | |
---|
43 | // "index.php?/category/12-foo/start-24&action=fill_caddie" or |
---|
44 | // "index.php/category/12-foo/start-24&action=fill_caddie" |
---|
45 | // must return : |
---|
46 | // |
---|
47 | // array( |
---|
48 | // 'section' => 'categories', |
---|
49 | // 'category' => 12, |
---|
50 | // 'start' => 24 |
---|
51 | // 'action' => 'fill_caddie' |
---|
52 | // ); |
---|
53 | |
---|
54 | $page['section'] = 'categories'; |
---|
55 | |
---|
56 | // some ISPs set PATH_INFO to empty string or to SCRIPT_FILENAME while in the |
---|
57 | // default apache implementation it is not set |
---|
58 | if ( $conf['question_mark_in_urls']==false and |
---|
59 | isset($_SERVER["PATH_INFO"]) and !empty($_SERVER["PATH_INFO"]) ) |
---|
60 | { |
---|
61 | $rewritten = $_SERVER["PATH_INFO"]; |
---|
62 | $rewritten = str_replace('//', '/', $rewritten); |
---|
63 | $path_count = count( explode('/', $rewritten) ); |
---|
64 | $page['root_path'] = PHPWG_ROOT_PATH.str_repeat('../', $path_count-1); |
---|
65 | } |
---|
66 | else |
---|
67 | { |
---|
68 | $rewritten = ''; |
---|
69 | foreach (array_keys($_GET) as $keynum => $key) |
---|
70 | { |
---|
71 | $rewritten = $key; |
---|
72 | break; |
---|
73 | } |
---|
74 | $page['root_path'] = PHPWG_ROOT_PATH; |
---|
75 | } |
---|
76 | |
---|
77 | // deleting first "/" if displayed |
---|
78 | $tokens = explode( |
---|
79 | '/', |
---|
80 | preg_replace('#^/#', '', $rewritten) |
---|
81 | ); |
---|
82 | // $tokens = array( |
---|
83 | // 0 => category, |
---|
84 | // 1 => 12-foo, |
---|
85 | // 2 => start-24 |
---|
86 | // ); |
---|
87 | |
---|
88 | $next_token = 0; |
---|
89 | if (script_basename() == 'picture') // basename without file extention |
---|
90 | { // the first token must be the identifier for the picture |
---|
91 | if ( isset($_GET['image_id']) |
---|
92 | and isset($_GET['cat']) and is_numeric($_GET['cat']) ) |
---|
93 | {// url compatibility with versions below 1.6 |
---|
94 | $url = make_picture_url( array( |
---|
95 | 'section' => 'categories', |
---|
96 | 'category' => $_GET['cat'], |
---|
97 | 'image_id' => $_GET['image_id'] |
---|
98 | ) ); |
---|
99 | redirect($url); |
---|
100 | } |
---|
101 | $token = $tokens[$next_token]; |
---|
102 | $next_token++; |
---|
103 | if ( is_numeric($token) ) |
---|
104 | { |
---|
105 | $page['image_id'] = $token; |
---|
106 | } |
---|
107 | else |
---|
108 | { |
---|
109 | preg_match('/^(\d+-)?(.*)?$/', $token, $matches); |
---|
110 | if (isset($matches[1]) and is_numeric($matches[1]=rtrim($matches[1],'-')) ) |
---|
111 | { |
---|
112 | $page['image_id'] = $matches[1]; |
---|
113 | if ( !empty($matches[2]) ) |
---|
114 | { |
---|
115 | $page['image_file'] = $matches[2]; |
---|
116 | } |
---|
117 | |
---|
118 | } |
---|
119 | else |
---|
120 | { |
---|
121 | if ( !empty($matches[2]) ) |
---|
122 | { |
---|
123 | $page['image_file'] = $matches[2]; |
---|
124 | } |
---|
125 | else |
---|
126 | { |
---|
127 | die('Fatal: picture identifier is missing'); |
---|
128 | } |
---|
129 | } |
---|
130 | } |
---|
131 | } |
---|
132 | |
---|
133 | if (0 === strpos($tokens[$next_token], 'categor')) |
---|
134 | { |
---|
135 | $page['section'] = 'categories'; |
---|
136 | $next_token++; |
---|
137 | |
---|
138 | if (isset($tokens[$next_token]) |
---|
139 | and preg_match('/^(\d+)/', $tokens[$next_token], $matches)) |
---|
140 | { |
---|
141 | $page['category'] = $matches[1]; |
---|
142 | $next_token++; |
---|
143 | } |
---|
144 | } |
---|
145 | else if (0 === strpos($tokens[$next_token], 'tag')) |
---|
146 | { |
---|
147 | $page['section'] = 'tags'; |
---|
148 | $page['tags'] = array(); |
---|
149 | |
---|
150 | $next_token++; |
---|
151 | $i = $next_token; |
---|
152 | |
---|
153 | $requested_tag_ids = array(); |
---|
154 | $requested_tag_url_names = array(); |
---|
155 | |
---|
156 | while (isset($tokens[$i])) |
---|
157 | { |
---|
158 | if ( preg_match('/^(created-|posted-|start-(\d)+)/', $tokens[$i]) ) |
---|
159 | break; |
---|
160 | |
---|
161 | if ( preg_match('/^(\d+)(?:-(.*))?/', $tokens[$i], $matches) ) |
---|
162 | { |
---|
163 | array_push($requested_tag_ids, $matches[1]); |
---|
164 | } |
---|
165 | else |
---|
166 | { |
---|
167 | array_push($requested_tag_url_names, "'".$tokens[$i]."'"); |
---|
168 | } |
---|
169 | $i++; |
---|
170 | } |
---|
171 | $next_token = $i; |
---|
172 | |
---|
173 | if ( empty($requested_tag_ids) && empty($requested_tag_url_names) ) |
---|
174 | { |
---|
175 | die('Fatal: at least one tag required'); |
---|
176 | } |
---|
177 | // tag infos |
---|
178 | $query = ' |
---|
179 | SELECT name, url_name, id |
---|
180 | FROM '.TAGS_TABLE.' |
---|
181 | WHERE '; |
---|
182 | if ( !empty($requested_tag_ids) ) |
---|
183 | { |
---|
184 | $query.= 'id IN ('.implode(',', $requested_tag_ids ).')'; |
---|
185 | } |
---|
186 | if ( !empty($requested_tag_url_names) ) |
---|
187 | { |
---|
188 | if ( !empty($requested_tag_ids) ) |
---|
189 | { |
---|
190 | $query.= ' OR '; |
---|
191 | } |
---|
192 | $query.= 'url_name IN ('.implode(',', $requested_tag_url_names ).')'; |
---|
193 | } |
---|
194 | $result = pwg_query($query); |
---|
195 | $tag_infos = array(); |
---|
196 | while ($row = mysql_fetch_array($result)) |
---|
197 | { |
---|
198 | $tag_infos[ $row['id'] ] = $row; |
---|
199 | array_push($page['tags'], $row );//we loose given tag order; is it important? |
---|
200 | } |
---|
201 | if ( empty($page['tags']) ) |
---|
202 | { |
---|
203 | page_not_found('Requested tag does not exist', get_root_url().'tags.php' ); |
---|
204 | } |
---|
205 | } |
---|
206 | else if (0 === strpos($tokens[$next_token], 'fav')) |
---|
207 | { |
---|
208 | $page['section'] = 'favorites'; |
---|
209 | $next_token++; |
---|
210 | } |
---|
211 | else if ('most_visited' == $tokens[$next_token]) |
---|
212 | { |
---|
213 | $page['section'] = 'most_visited'; |
---|
214 | $next_token++; |
---|
215 | } |
---|
216 | else if ('best_rated' == $tokens[$next_token]) |
---|
217 | { |
---|
218 | $page['section'] = 'best_rated'; |
---|
219 | $next_token++; |
---|
220 | } |
---|
221 | else if ('recent_pics' == $tokens[$next_token]) |
---|
222 | { |
---|
223 | $page['section'] = 'recent_pics'; |
---|
224 | $next_token++; |
---|
225 | } |
---|
226 | else if ('recent_cats' == $tokens[$next_token]) |
---|
227 | { |
---|
228 | $page['section'] = 'recent_cats'; |
---|
229 | $next_token++; |
---|
230 | } |
---|
231 | else if ('search' == $tokens[$next_token]) |
---|
232 | { |
---|
233 | $page['section'] = 'search'; |
---|
234 | $next_token++; |
---|
235 | |
---|
236 | preg_match('/(\d+)/', $tokens[$next_token], $matches); |
---|
237 | if (!isset($matches[1])) |
---|
238 | { |
---|
239 | die('Fatal: search identifier is missing'); |
---|
240 | } |
---|
241 | $page['search'] = $matches[1]; |
---|
242 | $next_token++; |
---|
243 | } |
---|
244 | else if ('list' == $tokens[$next_token]) |
---|
245 | { |
---|
246 | $page['section'] = 'list'; |
---|
247 | $next_token++; |
---|
248 | |
---|
249 | $page['list'] = array(); |
---|
250 | if (!preg_match('/^\d+(,\d+)*$/', $tokens[$next_token])) |
---|
251 | { |
---|
252 | die('wrong format on list GET parameter'); |
---|
253 | } |
---|
254 | foreach (explode(',', $tokens[$next_token]) as $image_id) |
---|
255 | { |
---|
256 | array_push($page['list'], $image_id); |
---|
257 | } |
---|
258 | $next_token++; |
---|
259 | } |
---|
260 | |
---|
261 | $i = $next_token; |
---|
262 | |
---|
263 | while (isset($tokens[$i])) |
---|
264 | { |
---|
265 | if (preg_match('/^start-(\d+)/', $tokens[$i], $matches)) |
---|
266 | { |
---|
267 | $page['start'] = $matches[1]; |
---|
268 | } |
---|
269 | |
---|
270 | if (preg_match('/^(posted|created)/', $tokens[$i] )) |
---|
271 | { |
---|
272 | $chronology_tokens = explode('-', $tokens[$i] ); |
---|
273 | |
---|
274 | $page['chronology_field'] = $chronology_tokens[0]; |
---|
275 | |
---|
276 | array_shift($chronology_tokens); |
---|
277 | $page['chronology_style'] = $chronology_tokens[0]; |
---|
278 | |
---|
279 | array_shift($chronology_tokens); |
---|
280 | if ( count($chronology_tokens)>0 ) |
---|
281 | { |
---|
282 | if ('list'==$chronology_tokens[0] or |
---|
283 | 'calendar'==$chronology_tokens[0]) |
---|
284 | { |
---|
285 | $page['chronology_view'] = $chronology_tokens[0]; |
---|
286 | array_shift($chronology_tokens); |
---|
287 | } |
---|
288 | $page['chronology_date'] = $chronology_tokens; |
---|
289 | } |
---|
290 | } |
---|
291 | |
---|
292 | $i++; |
---|
293 | } |
---|
294 | |
---|
295 | |
---|
296 | // $page['nb_image_page'] is the number of picture to display on this page |
---|
297 | // By default, it is the same as the $user['nb_image_page'] |
---|
298 | $page['nb_image_page'] = $user['nb_image_page']; |
---|
299 | |
---|
300 | if (isset($_COOKIE['pwg_image_order']) |
---|
301 | and is_numeric($_COOKIE['pwg_image_order']) |
---|
302 | and $_COOKIE['pwg_image_order'] > 0) |
---|
303 | { |
---|
304 | $orders = get_category_preferred_image_orders(); |
---|
305 | |
---|
306 | $conf['order_by'] = str_replace( |
---|
307 | 'ORDER BY ', |
---|
308 | 'ORDER BY '.$orders[ $_COOKIE['pwg_image_order'] ][1].',', |
---|
309 | $conf['order_by'] |
---|
310 | ); |
---|
311 | $page['super_order_by'] = true; |
---|
312 | } |
---|
313 | |
---|
314 | // +-----------------------------------------------------------------------+ |
---|
315 | // | category | |
---|
316 | // +-----------------------------------------------------------------------+ |
---|
317 | if ('categories' == $page['section']) |
---|
318 | { |
---|
319 | if (isset($page['category'])) |
---|
320 | { |
---|
321 | $result = get_cat_info($page['category']); |
---|
322 | if (empty($result)) |
---|
323 | { |
---|
324 | page_not_found('Requested category does not exist' ); |
---|
325 | } |
---|
326 | |
---|
327 | $page = array_merge( |
---|
328 | $page, |
---|
329 | array( |
---|
330 | 'comment' => $result['comment'], |
---|
331 | 'cat_dir' => $result['dir'], |
---|
332 | 'cat_name' => $result['name'], |
---|
333 | 'cat_site_id' => $result['site_id'], |
---|
334 | 'cat_uploadable' => $result['uploadable'], |
---|
335 | 'cat_commentable' => $result['commentable'], |
---|
336 | 'cat_id_uppercat' => $result['id_uppercat'], |
---|
337 | 'uppercats' => $result['uppercats'], |
---|
338 | |
---|
339 | 'title' => get_cat_display_name($result['name'], '', false), |
---|
340 | ) |
---|
341 | ); |
---|
342 | |
---|
343 | if (!isset($page['chronology_field'])) |
---|
344 | { |
---|
345 | $query = ' |
---|
346 | SELECT image_id |
---|
347 | FROM '.IMAGE_CATEGORY_TABLE.' |
---|
348 | INNER JOIN '.IMAGES_TABLE.' ON id = image_id |
---|
349 | WHERE category_id = '.$page['category'].' |
---|
350 | '.$conf['order_by'].' |
---|
351 | ;'; |
---|
352 | $page['items'] = array_from_query($query, 'image_id'); |
---|
353 | |
---|
354 | $page['thumbnails_include'] = |
---|
355 | $result['nb_images'] > 0 |
---|
356 | ? 'include/category_default.inc.php' |
---|
357 | : 'include/category_subcats.inc.php'; |
---|
358 | } //otherwise the calendar will requery all subitems |
---|
359 | } |
---|
360 | else |
---|
361 | { |
---|
362 | $page['title'] = $lang['no_category']; |
---|
363 | $page['thumbnails_include'] = 'include/category_subcats.inc.php'; |
---|
364 | } |
---|
365 | } |
---|
366 | // special sections |
---|
367 | else |
---|
368 | { |
---|
369 | if (!empty($user['forbidden_categories'])) |
---|
370 | { |
---|
371 | $forbidden = |
---|
372 | ' category_id NOT IN ('.$user['forbidden_categories'].')'; |
---|
373 | } |
---|
374 | else |
---|
375 | { |
---|
376 | $forbidden = ' 1 = 1'; |
---|
377 | } |
---|
378 | // +-----------------------------------------------------------------------+ |
---|
379 | // | tags section | |
---|
380 | // +-----------------------------------------------------------------------+ |
---|
381 | if ($page['section'] == 'tags') |
---|
382 | { |
---|
383 | $page['tag_ids'] = array(); |
---|
384 | foreach ($page['tags'] as $tag) |
---|
385 | { |
---|
386 | array_push($page['tag_ids'], $tag['id']); |
---|
387 | } |
---|
388 | |
---|
389 | $items = get_image_ids_for_tags($page['tag_ids']); |
---|
390 | |
---|
391 | // permissions depends on category, so to only keep images that are |
---|
392 | // reachable to the connected user, we need to check category |
---|
393 | // associations |
---|
394 | if (!empty($items) ) |
---|
395 | { |
---|
396 | $query = ' |
---|
397 | SELECT image_id |
---|
398 | FROM '.IMAGE_CATEGORY_TABLE.' INNER JOIN '.IMAGES_TABLE.' ON image_id=id |
---|
399 | WHERE image_id IN ('.implode(',', $items).') |
---|
400 | AND '.$forbidden. |
---|
401 | $conf['order_by'].' |
---|
402 | ;'; |
---|
403 | $items = array_unique( |
---|
404 | array_from_query($query, 'image_id') |
---|
405 | ); |
---|
406 | } |
---|
407 | |
---|
408 | $title = count($page['tags']) > 1 ? l10n('Tags') : l10n('Tag'); |
---|
409 | $title.= ' '; |
---|
410 | |
---|
411 | $tag_num = 1; |
---|
412 | foreach ($page['tag_ids'] as $tag_id) |
---|
413 | { |
---|
414 | $title.= |
---|
415 | ($tag_num++ > 1 ? ' + ' : '') |
---|
416 | .'<a href="' |
---|
417 | .make_index_url( |
---|
418 | array( |
---|
419 | 'tags' => array( |
---|
420 | array( |
---|
421 | 'id' => $tag_id, |
---|
422 | 'url_name' => $tag_infos[$tag_id]['url_name'], |
---|
423 | ), |
---|
424 | ) |
---|
425 | ) |
---|
426 | ) |
---|
427 | .'">' |
---|
428 | .$tag_infos[$tag_id]['name'] |
---|
429 | .'</a>'; |
---|
430 | } |
---|
431 | |
---|
432 | $page = array_merge( |
---|
433 | $page, |
---|
434 | array( |
---|
435 | 'title' => $title, |
---|
436 | 'items' => array_values($items), |
---|
437 | 'thumbnails_include' => 'include/category_default.inc.php', |
---|
438 | ) |
---|
439 | ); |
---|
440 | } |
---|
441 | // +-----------------------------------------------------------------------+ |
---|
442 | // | search section | |
---|
443 | // +-----------------------------------------------------------------------+ |
---|
444 | if ($page['section'] == 'search') |
---|
445 | { |
---|
446 | include_once( PHPWG_ROOT_PATH .'include/functions_search.inc.php' ); |
---|
447 | |
---|
448 | $search_items = get_search_items($page['search']); |
---|
449 | if ( !empty($search_items) ) |
---|
450 | { |
---|
451 | $query = ' |
---|
452 | SELECT DISTINCT(id) |
---|
453 | FROM '.IMAGES_TABLE.' |
---|
454 | INNER JOIN '.IMAGE_CATEGORY_TABLE.' AS ic ON id = ic.image_id |
---|
455 | WHERE id IN ('.implode(',', $search_items).') |
---|
456 | AND '.$forbidden.' |
---|
457 | '.$conf['order_by'].' |
---|
458 | ;'; |
---|
459 | $page['items'] = array_from_query($query, 'id'); |
---|
460 | } |
---|
461 | else |
---|
462 | { |
---|
463 | $page['items'] = array(); |
---|
464 | } |
---|
465 | |
---|
466 | $page = array_merge( |
---|
467 | $page, |
---|
468 | array( |
---|
469 | 'title' => $lang['search_result'], |
---|
470 | 'thumbnails_include' => 'include/category_default.inc.php', |
---|
471 | ) |
---|
472 | ); |
---|
473 | } |
---|
474 | // +-----------------------------------------------------------------------+ |
---|
475 | // | favorite section | |
---|
476 | // +-----------------------------------------------------------------------+ |
---|
477 | else if ($page['section'] == 'favorites') |
---|
478 | { |
---|
479 | check_user_favorites(); |
---|
480 | |
---|
481 | $query = ' |
---|
482 | SELECT image_id |
---|
483 | FROM '.FAVORITES_TABLE.' |
---|
484 | INNER JOIN '.IMAGES_TABLE.' ON image_id = id |
---|
485 | WHERE user_id = '.$user['id'].' |
---|
486 | '.$conf['order_by'].' |
---|
487 | ;'; |
---|
488 | |
---|
489 | $page = array_merge( |
---|
490 | $page, |
---|
491 | array( |
---|
492 | 'title' => $lang['favorites'], |
---|
493 | 'items' => array_from_query($query, 'image_id'), |
---|
494 | 'thumbnails_include' => 'include/category_default.inc.php', |
---|
495 | ) |
---|
496 | ); |
---|
497 | } |
---|
498 | // +-----------------------------------------------------------------------+ |
---|
499 | // | recent pictures section | |
---|
500 | // +-----------------------------------------------------------------------+ |
---|
501 | else if ($page['section'] == 'recent_pics') |
---|
502 | { |
---|
503 | $query = ' |
---|
504 | SELECT DISTINCT(id) |
---|
505 | FROM '.IMAGES_TABLE.' |
---|
506 | INNER JOIN '.IMAGE_CATEGORY_TABLE.' AS ic ON id = ic.image_id |
---|
507 | WHERE date_available > \''. |
---|
508 | date('Y-m-d', time() - 60*60*24*$user['recent_period']).'\' |
---|
509 | AND '.$forbidden.' |
---|
510 | '.$conf['order_by'].' |
---|
511 | ;'; |
---|
512 | |
---|
513 | $page = array_merge( |
---|
514 | $page, |
---|
515 | array( |
---|
516 | 'title' => '<a href="'.duplicate_index_url().'">' |
---|
517 | .$lang['recent_pics_cat'].'</a>', |
---|
518 | 'items' => array_from_query($query, 'id'), |
---|
519 | 'thumbnails_include' => 'include/category_default.inc.php', |
---|
520 | ) |
---|
521 | ); |
---|
522 | } |
---|
523 | // +-----------------------------------------------------------------------+ |
---|
524 | // | recently updated categories section | |
---|
525 | // +-----------------------------------------------------------------------+ |
---|
526 | else if ($page['section'] == 'recent_cats') |
---|
527 | { |
---|
528 | $page = array_merge( |
---|
529 | $page, |
---|
530 | array( |
---|
531 | 'title' => $lang['recent_cats_cat'], |
---|
532 | 'thumbnails_include' => 'include/category_recent_cats.inc.php', |
---|
533 | ) |
---|
534 | ); |
---|
535 | } |
---|
536 | // +-----------------------------------------------------------------------+ |
---|
537 | // | most visited section | |
---|
538 | // +-----------------------------------------------------------------------+ |
---|
539 | else if ($page['section'] == 'most_visited') |
---|
540 | { |
---|
541 | $page['super_order_by'] = true; |
---|
542 | $conf['order_by'] = ' ORDER BY hit DESC, file ASC'; |
---|
543 | $query = ' |
---|
544 | SELECT DISTINCT(id) |
---|
545 | FROM '.IMAGES_TABLE.' |
---|
546 | INNER JOIN '.IMAGE_CATEGORY_TABLE.' AS ic ON id = ic.image_id |
---|
547 | WHERE hit > 0 |
---|
548 | AND '.$forbidden.' |
---|
549 | '.$conf['order_by'].' |
---|
550 | LIMIT 0, '.$conf['top_number'].' |
---|
551 | ;'; |
---|
552 | |
---|
553 | $page = array_merge( |
---|
554 | $page, |
---|
555 | array( |
---|
556 | 'title' => '<a href="'.duplicate_index_url().'">' |
---|
557 | .$conf['top_number'].' '.$lang['most_visited_cat'].'</a>', |
---|
558 | 'items' => array_from_query($query, 'id'), |
---|
559 | 'thumbnails_include' => 'include/category_default.inc.php', |
---|
560 | ) |
---|
561 | ); |
---|
562 | } |
---|
563 | // +-----------------------------------------------------------------------+ |
---|
564 | // | best rated section | |
---|
565 | // +-----------------------------------------------------------------------+ |
---|
566 | else if ($page['section'] == 'best_rated') |
---|
567 | { |
---|
568 | $page['super_order_by'] = true; |
---|
569 | $conf['order_by'] = ' ORDER BY average_rate DESC, id ASC'; |
---|
570 | |
---|
571 | $query =' |
---|
572 | SELECT DISTINCT(id) |
---|
573 | FROM '.IMAGES_TABLE.' |
---|
574 | INNER JOIN '.IMAGE_CATEGORY_TABLE.' AS ic ON id = ic.image_id |
---|
575 | WHERE average_rate IS NOT NULL |
---|
576 | AND '.$forbidden.' |
---|
577 | '.$conf['order_by'].' |
---|
578 | LIMIT 0, '.$conf['top_number'].' |
---|
579 | ;'; |
---|
580 | $page = array_merge( |
---|
581 | $page, |
---|
582 | array( |
---|
583 | 'title' => '<a href="'.duplicate_index_url().'">' |
---|
584 | .$conf['top_number'].' '.$lang['best_rated_cat'].'</a>', |
---|
585 | 'items' => array_from_query($query, 'id'), |
---|
586 | 'thumbnails_include' => 'include/category_default.inc.php', |
---|
587 | ) |
---|
588 | ); |
---|
589 | } |
---|
590 | // +-----------------------------------------------------------------------+ |
---|
591 | // | list section | |
---|
592 | // +-----------------------------------------------------------------------+ |
---|
593 | else if ($page['section'] == 'list') |
---|
594 | { |
---|
595 | $query =' |
---|
596 | SELECT DISTINCT(id) |
---|
597 | FROM '.IMAGES_TABLE.' |
---|
598 | INNER JOIN '.IMAGE_CATEGORY_TABLE.' AS ic ON id = ic.image_id |
---|
599 | WHERE image_id IN ('.implode(',', $page['list']).') |
---|
600 | AND '.$forbidden.' |
---|
601 | '.$conf['order_by'].' |
---|
602 | ;'; |
---|
603 | |
---|
604 | $page = array_merge( |
---|
605 | $page, |
---|
606 | array( |
---|
607 | 'title' => '<a href="'.duplicate_index_url().'">' |
---|
608 | .$lang['random_cat'].'</a>', |
---|
609 | 'items' => array_from_query($query, 'id'), |
---|
610 | 'thumbnails_include' => 'include/category_default.inc.php', |
---|
611 | ) |
---|
612 | ); |
---|
613 | } |
---|
614 | } |
---|
615 | |
---|
616 | // +-----------------------------------------------------------------------+ |
---|
617 | // | chronology | |
---|
618 | // +-----------------------------------------------------------------------+ |
---|
619 | |
---|
620 | if (isset($page['chronology_field'])) |
---|
621 | { |
---|
622 | include_once( PHPWG_ROOT_PATH.'include/functions_calendar.inc.php' ); |
---|
623 | initialize_calendar(); |
---|
624 | } |
---|
625 | |
---|
626 | $page['cat_nb_images'] = isset($page['items']) ? count($page['items']) : 0; |
---|
627 | |
---|
628 | if (script_basename() == 'picture' |
---|
629 | and !isset($page['image_id']) ) |
---|
630 | { |
---|
631 | if ( !empty($page['items']) ) |
---|
632 | { |
---|
633 | $query = ' |
---|
634 | SELECT id,file |
---|
635 | FROM '.IMAGES_TABLE .' |
---|
636 | WHERE id IN ('.implode(',',$page['items']).') |
---|
637 | AND file LIKE "' . $page['image_file'] . '.%" ESCAPE "|"' |
---|
638 | ; |
---|
639 | $result = pwg_query($query); |
---|
640 | if (mysql_num_rows($result)>0) |
---|
641 | { |
---|
642 | list($page['image_id'], $page['image_file']) = mysql_fetch_row($result); |
---|
643 | } |
---|
644 | } |
---|
645 | if ( !isset($page['image_id']) ) |
---|
646 | { |
---|
647 | $page['image_id'] = -1; // will fail in picture.php |
---|
648 | } |
---|
649 | } |
---|
650 | ?> |
---|