Referal overview completed, thanks to monakoianar for useful hints. :-)
[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", __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' => TRANSLATE_COMMA($min),
89                         );
90
91                         // Load row template and switch color
92                         $OUT_PAY .= LOAD_TEMPLATE("guest_sponsor_pay_row", true, $content);
93                         $SW = 3 - $SW;
94                 }
95         }
96          else
97         {
98                 // No pay types setuped so far!
99                 $OUT_PAY = "<TR><TD colspan=\"2\">
100   ".LOAD_TEMPLATE("admin_settings_saved", true, SPONSOR_NO_ACTIONS_ACTIVATED)."
101 </TD></TR>";
102         }
103 }
104  else
105 {
106         // No actions activated so far!
107         $OUT_ACT = "<TR><TD colspan=\"2\" class=\"bottom2\" style=\"padding-top: 10px; padding-bottom: 10px\">
108   ".LOAD_TEMPLATE("admin_settings_saved", true, SPONSOR_NO_ACTIONS_ACTIVATED)."
109 </TD></TR>";
110         $OUT_PAY = "<TR><TD colspan=\"2\" class=\"bottom2\" style=\"padding-top: 10px; padding-bottom: 10px\">
111   ".LOAD_TEMPLATE("admin_settings_saved", true, SPONSOR_NO_ACTIONS_ACTIVATED)."
112 </TD></TR>";
113 }
114
115 // Transfer rows to constans
116 define('__SPONSOR_ACTIONS' , $OUT_ACT);
117 define('__SPONSOR_PAYTYPES', $OUT_PAY);
118
119 // Free memory
120 if (isset($result_act)) SQL_FREERESULT($result_act);
121 if (isset($result_pay)) SQL_FREERESULT($result_pay);
122
123 // Load main template
124 LOAD_TEMPLATE("guest_sponsor_infos");
125
126 //
127 ?>