Security line in all includes changed
[mailer.git] / inc / modules / guest / what-sponsor_infos.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 06/10/2005 *
4  * ===============                              Last change: 05/18/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-sponsor_infos.php                           *
8  * -------------------------------------------------------------------- *
9  * Short description : Informations and prices for the sponsor          *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Informationen/Preise fuer den Sponsoren          *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software. You can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License.       *
21  *                                                                      *
22  * This program is distributed in the hope that it will be useful,      *
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
25  * GNU General Public License for more details.                         *
26  *                                                                      *
27  * You should have received a copy of the GNU General Public License    *
28  * along with this program; if not, write to the Free Software          *
29  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
30  * MA  02110-1301  USA                                                  *
31  ************************************************************************/
32
33 // Some security stuff...
34 if (!defined('__SECURITY')) {
35         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4)."/security.php";
36         require($INC);
37 }
38
39 // Add description as navigation point
40 ADD_DESCR("guest", basename(__FILE__));
41
42 // Remove result_act
43 unset($result_act);
44
45 // Load all sponsor actions
46 $result_act = SQL_QUERY("SELECT DISTINCT m.title, c.conv_rate, c.conv_name
47 FROM "._MYSQL_PREFIX."_sponsor_menu AS m
48 LEFT JOIN "._MYSQL_PREFIX."_sponsor_action_convert AS c ON m.what=c.ext_name
49 LEFT JOIN "._MYSQL_PREFIX."_sponsor_registry AS r ON m.what=r.ext_name
50 WHERE m.action='actions' AND r.is_active='Y'
51 ORDER BY m.sort ASC", __FILE__, __LINE__);
52 $num_act = SQL_NUMROWS($result_act);
53
54 if ($num_act > 0)
55 {
56         // Load all actions
57         $OUT_ACT = ""; $SW = 2;
58         while (list($title, $conv, $name) = SQL_FETCHROW($result_act))
59         {
60                 // Prepare data for the row template
61                 $content = array(
62                         'sw'    => $SW,
63                         'title' => $title,
64                         'conv'  => round($conv),
65                         'name'  => $name,
66                 );
67
68                 // Load row template and switch color
69                 $OUT_ACT .= LOAD_TEMPLATE("guest_sponsor_act_row", true, $content);
70                 $SW = 3 - $SW;
71         }
72
73         // Check for pay types
74         $result_pay = SQL_QUERY("SELECT pay_name, pay_rate, pay_min_count, pay_currency FROM "._MYSQL_PREFIX."_sponsor_paytypes ORDER BY pay_name", __FILE__, __LINE__);
75         if (SQL_NUMROWS($result_pay) > 0)
76         {
77                 // Load all pay types
78                 $OUT_PAY = ""; $SW = 2;
79                 while (list($name, $rate, $min, $curr) = SQL_FETCHROW($result_pay))
80                 {
81                         // Prepare data for the row template
82                         $content = array(
83                                 'sw'    => $SW,
84                                 'name'  => $name,
85                                 'rate'  => TRANSLATE_COMMA($rate),
86                                 'min'   => $min,
87                                 'curr'  => $curr,
88                                 'price' => $min,
89                         );
90
91                         if (!ereg(",", $content['price']))
92                         {
93                                 // Add missing zeros
94                                 $content['price'] .= ",".str_repeat("0", $_CONFIG['max_comma']);
95                         }
96
97                         // Load row template and switch color
98                         $OUT_PAY .= LOAD_TEMPLATE("guest_sponsor_pay_row", true, $content);
99                         $SW = 3 - $SW;
100                 }
101         }
102          else
103         {
104                 // No pay types setuped so far!
105                 $OUT_PAY = "<TR><TD colspan=\"2\">
106   ".LOAD_TEMPLATE("admin_settings_saved", true, SPONSOR_NO_ACTIONS_ACTIVATED)."
107 </TD></TR>";
108         }
109 }
110  else
111 {
112         // No actions activated so far!
113         $OUT_ACT = "<TR><TD colspan=\"2\" class=\"bottom2\" style=\"padding-top: 10px; padding-bottom: 10px\">
114   ".LOAD_TEMPLATE("admin_settings_saved", true, SPONSOR_NO_ACTIONS_ACTIVATED)."
115 </TD></TR>";
116         $OUT_PAY = "<TR><TD colspan=\"2\" class=\"bottom2\" style=\"padding-top: 10px; padding-bottom: 10px\">
117   ".LOAD_TEMPLATE("admin_settings_saved", true, SPONSOR_NO_ACTIONS_ACTIVATED)."
118 </TD></TR>";
119 }
120
121 // Transfer rows to constans
122 define('__SPONSOR_ACTIONS' , $OUT_ACT);
123 define('__SPONSOR_PAYTYPES', $OUT_PAY);
124
125 // Free memory
126 if (isset($result_act)) SQL_FREERESULT($result_act);
127 if (isset($result_pay)) SQL_FREERESULT($result_pay);
128
129 // Load main template
130 LOAD_TEMPLATE("guest_sponsor_infos");
131
132 //
133 ?>