Ignore:
Timestamp:
Mar 8, 2016, 5:59:15 PM (8 years ago)
Author:
ddtddt
Message:

[extensions] - DownloadFromThumbnail

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/DownloadFromThumbnail/save_history.php

    r31377 r31410  
    11<?php
    2 
     2// +-----------------------------------------------------------------------+
     3// | Download From Thumbnail plugin for piwigo                             |
     4// +-----------------------------------------------------------------------+
     5// | Copyright(C) 2015-2016 ddtddt               http://temmii.com/piwigo/ |
     6// +-----------------------------------------------------------------------+
     7// | This program is free software; you can redistribute it and/or modify  |
     8// | it under the terms of the GNU General Public License as published by  |
     9// | the Free Software Foundation                                          |
     10// |                                                                       |
     11// | This program is distributed in the hope that it will be useful, but   |
     12// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
     13// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
     14// | General Public License for more details.                              |
     15// |                                                                       |
     16// | You should have received a copy of the GNU General Public License     |
     17// | along with this program; if not, write to the Free Software           |
     18// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
     19// | USA.                                                                  |
     20// +-----------------------------------------------------------------------+
    321
    422define('PHPWG_ROOT_PATH','../../');
     
    1432
    1533pwg_log($_POST['dsp_his'], 'dft_download');
    16 /*
    17 
    18 $query = 'UPDATE '.IMAGES_TABLE.' SET hit=hit+1 WHERE id = '.$_POST['dsp_his'].';';
    19 pwg_query($query);
    20 
    21 $do_log = $conf['log'];
    22 if (is_admin())
    23 {
    24   $do_log = $conf['history_admin'];
    25 }
    26 if (is_a_guest())
    27 {
    28   $do_log = $conf['history_guest'];
    29 }
    30 
    31 if (!$do_log)
    32 {
    33   exit();
    34 }
    35 
    36 if (!empty($_POST['section']))
    37 {
    38   $page['section'] = pwg_db_real_escape_string($_POST['section']);
    39 }
    40 if (!empty($_POST['catid']))
    41 {
    42   $page['category']['id'] = pwg_db_real_escape_string($_POST['catid']);
    43 }
    44 if ('tags'==@$page['section'] and !empty($_POST['tagids']))
    45 {
    46   $tags_string = pwg_db_real_escape_string($_POST['tagids']);
    47 }
    48 
    49   $query = '
    50 INSERT 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 
    78 pwg_query($query);*/
Note: See TracChangeset for help on using the changeset viewer.