Typo 'referral'->'referal' fixed, more 'empty version' fixed
[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  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         die();
42 } // END - if
43
44 // Add description as navigation point
45 addMenuDescription('guest', __FILE__);
46
47 if ((!isExtensionActive('sponsor'))) {
48         loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('sponsor'));
49         return;
50 } // END - if
51
52 // Init both results (see footer of this file)
53 $result_act = false;
54 $result_pay = false;
55
56 // Load all sponsor actions
57 $result_act = SQL_QUERY("SELECT m.title, c.conv_rate, c.conv_name
58 FROM `{?_MYSQL_PREFIX?}_sponsor_menu` AS m
59 LEFT JOIN `{?_MYSQL_PREFIX?}_sponsor_action_convert` AS c ON m.what=c.ext_name
60 LEFT JOIN `{?_MYSQL_PREFIX?}_sponsor_registry` AS r ON m.what=r.ext_name
61 WHERE m.`action`='actions' AND r.is_active='Y'
62 ORDER BY m.sort ASC", __FILE__, __LINE__);
63
64 if (SQL_NUMROWS($result_act) > 0) {
65         // Load all actions
66         $OUT_ACT = ''; $SW = 2;
67         while ($content = SQL_FETCHARRAY($result_act)) {
68                 // Prepare data for the row template
69                 // @TODO Rewritings: conv->conv_rate,name->conv_name in template
70                 $content = array(
71                         'sw'    => $SW,
72                         'title' => $content['title'],
73                         'conv'  => round($content['conv_rate']),
74                         'name'  => $content['conv_name'],
75                 );
76
77                 // Load row template and switch color
78                 $OUT_ACT .= loadTemplate('guest_sponsor_act_row', true, $content);
79                 $SW = 3 - $SW;
80         } // END - while
81
82         // Check for pay types
83         $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__);
84         if (SQL_NUMROWS($result_pay) > 0) {
85                 // Load all pay types
86                 $OUT_PAY = ''; $SW = 2;
87                 while ($content = SQL_FETCHARRAY($result_pay)) {
88                         // Prepare data for the row template
89                         // @TODO Rewritings: name->pay_name,min->pay_min_count,min->pay_min_count,curr->pay_currency
90                         $content = array(
91                                 'sw'    => $SW,
92                                 'name'  => $content['pay_name'],
93                                 'rate'  => translateComma($content['pay_rate']),
94                                 'min'   => $content['pay_min_count'],
95                                 'curr'  => $content['pay_currency'],
96                                 'price' => translateComma($content['pay_min_count']),
97                         );
98
99                         // Load row template and switch color
100                         $OUT_PAY .= loadTemplate('guest_sponsor_pay_row', true, $content);
101                         $SW = 3 - $SW;
102                 }
103         } else {
104                 // No pay types setuped so far!
105                 $OUT_PAY = loadTemplate('guest_sponsor_infos_none_row', loadTemplate('admin_settings_saved', true, getMessage('SPONSOR_NO_ACTIONS_ACTIVATED')));
106         }
107 } else {
108         // No actions activated so far!
109         $OUT_ACT = loadTemplate('guest_sponsor_infos_none_row', loadTemplate('admin_settings_saved', true, getMessage('SPONSOR_NO_ACTIONS_ACTIVATED')));
110         $OUT_PAY = loadTemplate('guest_sponsor_infos_none_row', loadTemplate('admin_settings_saved', true, getMessage('SPONSOR_NO_ACTIONS_ACTIVATED')));
111 }
112
113 // Free memory
114 SQL_FREERESULT($result_act);
115 SQL_FREERESULT($result_pay);
116
117 // Transfer rows to an array
118 $content = array(
119         'actions'  => $OUT_ACT,
120         'paytypes' => $OUT_PAY
121 );
122
123 // Load main template
124 loadTemplate('guest_sponsor_infos', false, $content);
125
126 // [EOF]
127 ?>