2 /************************************************************************
3 * MXChange v0.2.1 Start: 06/10/2005 *
4 * =============== Last change: 05/18/2008 *
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 * -------------------------------------------------------------------- *
14 * -------------------------------------------------------------------- *
15 * Copyright (c) 2003 - 2008 by Roland Haeder *
16 * For more information visit: http://www.mxchange.org *
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. *
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. *
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, *
31 ************************************************************************/
33 // Some security stuff...
34 if (!defined('__SECURITY')) {
35 $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4)."/security.php";
37 } elseif ((!EXT_IS_ACTIVE("sponsor"))) {
39 ADD_FATAL(sprintf(EXTENSION_PROBLEM_NOT_INSTALLED, "sponsor"));
41 ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "sponsor");
46 // Add description as navigation point
47 ADD_DESCR("guest", __FILE__);
52 // Load all sponsor actions
53 $result_act = SQL_QUERY("SELECT DISTINCT m.title, c.conv_rate, c.conv_name
54 FROM "._MYSQL_PREFIX."_sponsor_menu AS m
55 LEFT JOIN "._MYSQL_PREFIX."_sponsor_action_convert AS c ON m.what=c.ext_name
56 LEFT JOIN "._MYSQL_PREFIX."_sponsor_registry AS r ON m.what=r.ext_name
57 WHERE m.action='actions' AND r.is_active='Y'
58 ORDER BY m.sort ASC", __FILE__, __LINE__);
59 $num_act = SQL_NUMROWS($result_act);
63 $OUT_ACT = ""; $SW = 2;
64 while (list($title, $conv, $name) = SQL_FETCHROW($result_act)) {
65 // Prepare data for the row template
69 'conv' => round($conv),
73 // Load row template and switch color
74 $OUT_ACT .= LOAD_TEMPLATE("guest_sponsor_act_row", true, $content);
78 // Check for pay types
79 $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__);
80 if (SQL_NUMROWS($result_pay) > 0) {
82 $OUT_PAY = ""; $SW = 2;
83 while (list($name, $rate, $min, $curr) = SQL_FETCHROW($result_pay)) {
84 // Prepare data for the row template
88 'rate' => TRANSLATE_COMMA($rate),
91 'price' => TRANSLATE_COMMA($min),
94 // Load row template and switch color
95 $OUT_PAY .= LOAD_TEMPLATE("guest_sponsor_pay_row", true, $content);
99 // No pay types setuped so far!
100 $OUT_PAY = "<TR><TD colspan=\"2\">
101 ".LOAD_TEMPLATE("admin_settings_saved", true, SPONSOR_NO_ACTIONS_ACTIVATED)."
105 // No actions activated so far!
106 $OUT_ACT = "<TR><TD colspan=\"2\" class=\"bottom2\" style=\"padding-top: 10px; padding-bottom: 10px\">
107 ".LOAD_TEMPLATE("admin_settings_saved", true, SPONSOR_NO_ACTIONS_ACTIVATED)."
109 $OUT_PAY = "<TR><TD colspan=\"2\" class=\"bottom2\" style=\"padding-top: 10px; padding-bottom: 10px\">
110 ".LOAD_TEMPLATE("admin_settings_saved", true, SPONSOR_NO_ACTIONS_ACTIVATED)."
114 // Transfer rows to constans
115 define('__SPONSOR_ACTIONS' , $OUT_ACT);
116 define('__SPONSOR_PAYTYPES', $OUT_PAY);
119 if (isset($result_act)) SQL_FREERESULT($result_act);
120 if (isset($result_pay)) SQL_FREERESULT($result_pay);
122 // Load main template
123 LOAD_TEMPLATE("guest_sponsor_infos");