forked from renlok/WeBid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyourfeedback.php
More file actions
140 lines (126 loc) · 4.89 KB
/
yourfeedback.php
File metadata and controls
140 lines (126 loc) · 4.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?php
/***************************************************************************
* copyright : (C) 2008 - 2015 WeBid
* site : http://www.webidsupport.com/
***************************************************************************/
/***************************************************************************
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version. Although none of the code may be
* sold. If you have been sold this script, get a refund.
***************************************************************************/
include 'common.php';
include $include_path . 'membertypes.inc.php';
foreach ($membertypes as $idm => $memtypearr)
{
$memtypesarr[$memtypearr['feedbacks']] = $memtypearr;
}
ksort($memtypesarr, SORT_NUMERIC);
if (!$user->is_logged_in())
{
$_SESSION['REDIRECT_AFTER_LOGIN'] = 'yourfeedback.php';
header('location: user_login.php');
exit;
}
$i = 0;
foreach ($memtypesarr as $k => $l)
{
if ($k >= $user->user_data['rate_sum'] || $i++ == (count($memtypesarr) - 1))
{
$TPL_rate_ratio_value = '<img src="' . $system->SETTINGS['siteurl'] . 'images/icons/' . $l['icon'] . '" alt="' . $l['icon'] . '" class="fbstar">';
break;
}
}
$page = (isset($_GET['pg']) && intval($_GET['pg']) > 0) ? $_GET['pg'] : 1;
$left_limit = ($page - 1) * $system->SETTINGS['perpage'];
$query = "SELECT count(*) As COUNT FROM " . $DBPrefix . "feedbacks WHERE rated_user_id = :user_id";
$params = array();
$params[] = array(':user_id', $user->user_data['id'], 'int');
$db->query($query, $params);
$total = $db->result('COUNT');
// get number of pages
$pages = ceil($total / $system->SETTINGS['perpage']);
$left_limit = ($left_limit < 0) ? 0 : $left_limit;
$query = "SELECT f.*, a.title, u.rate_sum FROM " . $DBPrefix . "feedbacks f
LEFT OUTER JOIN " . $DBPrefix . "auctions a ON (a.id = f.auction_id)
LEFT JOIN " . $DBPrefix . "users u ON (u.id = f.rated_user_id)
WHERE rated_user_id = :user_id
ORDER by feedbackdate DESC
LIMIT :left_limit, :perpage";
$params = array();
$params[] = array(':user_id', $user->user_data['id'], 'int');
$params[] = array(':left_limit', $left_limit, 'int');
$params[] = array(':perpage', $system->SETTINGS['perpage'], 'int');
$db->query($query, $params);
$i = 0;
$feed_disp = array();
while ($arrfeed = $db->fetch())
{
$j = 0;
foreach ($memtypesarr as $k => $l)
{
if ($k >= $arrfeed['rate_sum'] || $j++ == (count($memtypesarr) - 1))
{
$usicon = '<img src="' . $system->SETTINGS['siteurl'] . 'images/icons/' . $l['icon'] . '" alt="' . $l['icon'] . '" class="fbstar">';
break;
}
}
switch ($arrfeed['rate'])
{
case 1: $uimg = $system->SETTINGS['siteurl'] . 'images/positive.png';
break;
case - 1: $uimg = $system->SETTINGS['siteurl'] . 'images/negative.png';
break;
case 0: $uimg = $system->SETTINGS['siteurl'] . 'images/neutral.png';
break;
}
$template->assign_block_vars('fbs', array(
'BGCOLOUR' => (!(($i + 1) % 2)) ? '' : 'class="alt-row"',
'IMG' => $uimg,
'USFLINK' => 'profile.php?user_id=' . $arrfeed['rated_user_id'] . '&auction_id=' . $arrfeed['auction_id'],
'USERNAME' => $arrfeed['rater_user_nick'],
'USFEED' => $arrfeed['rate_sum'],
'USICON' => (isset($usicon)) ? $usicon : '',
'FBDATE' => FormatDate($arrfeed['feedbackdate']),
'AUCTIONURL' => ($arrfeed['title']) ? '<a href="item.php?id=' . $arrfeed['auction_id'] . '">' . $system->uncleanvars($arrfeed['title']) . '</a>' : $MSG['113'] . $arrfeed['auction_id'],
'FEEDBACK' => nl2br(stripslashes($arrfeed['feedback']))
));
$i++;
}
$firstpage = (($page - 5) <= 0) ? 1 : ($page - 5);
$lastpage = (($page + 5) > $pages) ? $pages : ($page + 5);
$backpage = (($page - 1) <= 0) ? 1 : ($page - 1);
$nextpage = (($page + 1) > $pages) ? $pages : ($page + 1);
$echofeed = ($page == 1) ? '' : '<a href="yourfeedback.php">«</a> <a href="yourfeedback.php?pg=' . $backpage . '"><</a> ';
for ($ind2 = $firstpage; $ind2 <= $lastpage; $ind2++)
{
if ($page != $ind2)
{
$echofeed .= '<a href="yourfeedback.php?pg=' . $ind2 . '">' . $ind2 . '</a>';
}
else
{
$echofeed .= $ind2;
}
if ($ind2 != $lastpage)
{
$echofeed .= ' | ';
}
}
$echofeed .= ($page == $pages || $pages == 0) ? '' : ' <a href="yourfeedback.php?pg=' . $nextpage . '">></a> <a href="yourfeedback.php?pg=' . $pages . '">»</a>';
$template->assign_vars(array(
'USERNICK' => $user->user_data['nick'],
'USERFB' => $user->user_data['rate_sum'],
'USERFBIMG' => (isset($TPL_rate_ratio_value)) ? $TPL_rate_ratio_value : '',
'PAGENATION' => $echofeed,
'BGCOLOUR' => (!(($i + 1) % 2)) ? '' : 'class="alt-row"'
));
include 'header.php';
$TMP_usmenutitle = $MSG['25_0223'];
include $include_path . 'user_cp.php';
$template->set_filenames(array(
'body' => 'yourfeedback.tpl'
));
$template->display('body');
include 'footer.php';