-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsc_sponsors.php
82 lines (70 loc) · 4.46 KB
/
sc_sponsors.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
<?php
/*
##########################################################################
# #
# Version 4 / / / #
# -----------__---/__---__------__----__---/---/- #
# | /| / /___) / ) (_ ` / ) /___) / / #
# _|/_|/__(___ _(___/_(__)___/___/_(___ _/___/___ #
# Free Content / Management System #
# / #
# #
# #
# Copyright 2005-2011 by webspell.org #
# #
# visit webSPELL.org, webspell.info to get webSPELL for free #
# - Script runs under the GNU GENERAL PUBLIC LICENSE #
# - It's NOT allowed to remove this copyright-tag #
# -- http://www.fsf.org/licensing/licenses/gpl.html #
# #
# Code based on WebSPELL Clanpackage (Michael Gruber - webspell.at), #
# Far Development by Development Team - webspell.org #
# #
# visit webspell.org #
# #
##########################################################################
##########################################################################
# #
# Version 4 / / / #
# -----------__---/__---__------__----__---/---/- #
# | /| / /___) / ) (_ ` / ) /___) / / #
# _|/_|/__(___ _(___/_(__)___/___/_(___ _/___/___ #
# Society / Edition #
# / #
# #
# modified by webspell|k3rmit (Stefan Giesecke) in 2009 #
# #
# - Modifications are released under the GNU GENERAL PUBLIC LICENSE #
# - It is NOT allowed to remove this copyright-tag #
# - http://www.fsf.org/licensing/licenses/gpl.html #
# #
##########################################################################
*/
$_language->read_module('sponsors');
$mainsponsors=safe_query("SELECT * FROM ".PREFIX."sponsors WHERE (displayed = '1' AND mainsponsor = '1') ORDER BY sort");
if(mysql_num_rows($mainsponsors)) {
if(mysql_num_rows($mainsponsors) == 1) $main_title = $_language->module['mainsponsor'];
else $main_title = $_language->module['mainsponsors'];
echo '<b>'.$main_title.'</b><br />';
while($da=mysql_fetch_array($mainsponsors)) {
if(!empty($da['banner_small'])) $sponsor='<img src="images/sponsors/'.$da['banner_small'].'" style="margin:2px 0;" border="0" alt="'.htmlspecialchars($da['name']).'" title="'.htmlspecialchars($da['name']).'" />';
else $sponsor=$da['name'];
$sponsorID = $da['sponsorID'];
eval ("\$sc_sponsors_main = \"".gettemplate("sc_sponsors_main")."\";");
echo $sc_sponsors_main;
}
}
$sponsors=safe_query("SELECT * FROM ".PREFIX."sponsors WHERE (displayed = '1' AND mainsponsor = '0') ORDER BY sort");
if(mysql_num_rows($sponsors)) {
if(mysql_num_rows($sponsors) == 1) $title = $_language->module['sponsor'];
else $title = $_language->module['sponsors'];
echo '<b>'.$title.'</b><br />';
while($db=mysql_fetch_array($sponsors)) {
if(!empty($db['banner_small'])) $sponsor='<img src="images/sponsors/'.$db['banner_small'].'" style="margin:2px 0;" border="0" alt="'.htmlspecialchars($db['name']).'" title="'.htmlspecialchars($db['name']).'" />';
else $sponsor=$db['name'];
$sponsorID = $db['sponsorID'];
eval ("\$sc_sponsors = \"".gettemplate("sc_sponsors")."\";");
echo $sc_sponsors;
}
}
?>