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