-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
87 lines (81 loc) · 3.96 KB
/
footer.php
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
</div></div></div>
<div id="leftcolumn">
<?php if(!isGuest()): ?>
<?php $user = getUserParam($connect); ?>
<fieldset>
<legend>Пользовательское меню:</legend>
<table width="100%">
<tr>
<td>Баланс:</td>
<td><?php echo $user['balance']; ?> р.</td>
</tr>
<tr>
<td>Рефералов:</td>
<td><?php echo $user['referals']; ?> чел.</td>
</tr>
</table>
<table>
<tr>
<td colspan="2"><a style="font-size: 15px;" href = "<?php echo createUrl('surf'); ?>">Просмотр рекламы</a></td>
</tr>
<tr>
<td colspan="2"><a href = "<?php echo createUrl('payin'); ?>">Пополнить баланс</a></td>
</tr>
<tr>
<td colspan="2"><a href = "<?php echo createUrl('payout'); ?>">Вывести средства</a></td>
</tr>
<tr>
<td colspan="2"><a href = "<?php echo createUrl('banners'); ?>">Рекламные материалы</a></td>
</tr>
</table>
<?php if(getConfig('bonus', $connect) != 0 && hasBonus($connect)): ?>
<center><b><span id = "bonus"><img src="images/bonus.png" width="100" height="100" onclick="sendBonus()" style="cursor: pointer;" /></span></b></center>
<script type="text/javascript">
function sendBonus(){
$.post("<?php echo baseUrl(); ?>/ajax/ajax_bonus.php", '', function(data){
$("#bonus").fadeOut(500, function(){
$(this).html(data).fadeIn(100)
});
});
}
</script>
<?php endif; ?>
</fieldset>
<div id="navmainlistline"> </div>
<?php endif; ?>
<fieldset>
<legend>Статистика проекта:</legend>
<table width="100%">
<tr>
<td>За клик:</td>
<td><?php echo getConfig('click', $connect); ?> р.</td>
</tr>
<tr>
<td>За реф. клик:</td>
<td><?php echo getConfig('refclick', $connect); ?> р.</td>
</tr>
<tr>
<td>Минимум к выплате:</td>
<td><?php echo getConfig('minimum', $connect); ?> р.</td>
</tr>
<tr>
<td>Пользователей:</td>
<td><?php echo getConfig('users', $connect); ?> чел.</td>
</tr>
<tr>
<td>Выплачено:</td>
<td><?php echo getConfig('payout', $connect); ?> р.</td>
</tr>
<tr>
<td>Хитов:</td>
<td><?php echo getConfig('hits', $connect); ?> шт.</td>
</tr>
</table>
</fieldset>
<div id="navmainlistline"> </div>
</div>
<div id="footer">
© Copyright 2015
</div>
</body>
</html>