source: extensions/DownloadSinceThumbnail/save_history.php @ 31376

Last change on this file since 31376 was 31376, checked in by ddtddt, 8 years ago

[extensions] - DownloadSinceThumbnail - first commit

File size: 1.4 KB
Line 
1<?php
2
3
4define('PHPWG_ROOT_PATH','../../');
5include_once(PHPWG_ROOT_PATH.'include/common.inc.php');
6include_once(PHPWG_ROOT_PATH.'include/functions_picture.inc.php');
7
8check_status(ACCESS_GUEST);
9
10if (!isset($_POST['dsp_his']))
11{
12  die;
13}
14
15pwg_log($_POST['dsp_his'], 'download');
16/*
17
18$query = 'UPDATE '.IMAGES_TABLE.' SET hit=hit+1 WHERE id = '.$_POST['dsp_his'].';';
19pwg_query($query);
20
21$do_log = $conf['log'];
22if (is_admin())
23{
24  $do_log = $conf['history_admin'];
25}
26if (is_a_guest())
27{
28  $do_log = $conf['history_guest'];
29}
30
31if (!$do_log)
32{
33  exit();
34}
35
36if (!empty($_POST['section']))
37{
38  $page['section'] = pwg_db_real_escape_string($_POST['section']);
39}
40if (!empty($_POST['catid']))
41{
42  $page['category']['id'] = pwg_db_real_escape_string($_POST['catid']);
43}
44if ('tags'==@$page['section'] and !empty($_POST['tagids']))
45{
46  $tags_string = pwg_db_real_escape_string($_POST['tagids']);
47}
48
49  $query = '
50INSERT INTO '.HISTORY_TABLE.'
51  (
52    date,
53    time,
54    user_id,
55    IP,
56    section,
57    category_id,
58    image_id,
59    image_type,
60    tag_ids,
61    lightbox
62  )
63  VALUES
64  (
65    CURDATE(),
66    CURTIME(),
67    '.$user['id'].',
68    \''.$_SERVER['REMOTE_ADDR'].'\',
69    '.(isset($page['section']) ? "'".$page['section']."'" : 'NULL').',
70    '.(isset($page['category']['id']) ? $page['category']['id'] : 'NULL').',
71    '.$image_id.',
72    "picture",
73    '.(isset($tags_string) ? "'".$tags_string."'" : 'NULL').',
74    "true"
75  )
76;';
77
78pwg_query($query);*/
Note: See TracBrowser for help on using the repository browser.