New wrapper functions introduced, TODOs.txt updated
[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  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://www.mxchange.org                  *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         die();
41 } // END - if
42
43 // Add description as navigation point
44 addYouAreHereLink('guest', __FILE__);
45
46 if ((!isExtensionActive('sponsor'))) {
47         displayMessage(generateExtensionInactiveNotInstalledMessage('sponsor'));
48         return;
49 } // END - if
50
51 // Init both results (see footer of this file)
52 $result_act = false;
53 $result_pay = false;
54
55 // Load all sponsor actions
56 $result_act = SQL_QUERY("SELECT
57         m.title AS `conv_title`, c.conv_rate, c.conv_name
58 FROM
59         `{?_MYSQL_PREFIX?}_sponsor_menu` AS m
60 LEFT JOIN
61         `{?_MYSQL_PREFIX?}_sponsor_action_convert` AS c
62 ON
63         m.what=c.ext_name
64 LEFT JOIN
65         `{?_MYSQL_PREFIX?}_sponsor_registry` AS r
66 ON
67         m.what=r.ext_name
68 WHERE
69         m.`action`='actions' AND
70         r.is_active='Y'
71 ORDER BY
72         m.sort ASC", __FILE__, __LINE__);
73
74 if (!SQL_HASZERONUMS($result_act)) {
75         // Load all actions
76         $OUT_ACT = '';
77         while ($content = SQL_FETCHARRAY($result_act)) {
78                 // Load row template and switch color
79                 $OUT_ACT .= loadTemplate('guest_sponsor_act_row', true, $content);
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` ASC', __FILE__, __LINE__);
84         if (!SQL_HASZERONUMS($result_pay)) {
85                 // Load all pay types
86                 $OUT_PAY = '';
87                 while ($content = SQL_FETCHARRAY($result_pay)) {
88                         // Load row template and switch color
89                         $OUT_PAY .= loadTemplate('guest_sponsor_pay_row', true, $content);
90                 } // END - while
91         } else {
92                 // No pay types setuped so far!
93                 $OUT_PAY = loadTemplate('guest_sponsor_infos_none_row', false, displayMessage('{--SPONSOR_NO_ACTIONS_ACTIVATED--}', true));
94         }
95 } else {
96         // No actions activated so far!
97         $OUT_ACT = loadTemplate('guest_sponsor_infos_none_row', true, displayMessage('{--SPONSOR_NO_ACTIONS_ACTIVATED--}', true));
98         $OUT_PAY = loadTemplate('guest_sponsor_infos_none_row', true, displayMessage('{--SPONSOR_NO_ACTIONS_ACTIVATED--}', true));
99 }
100
101 // Free memory
102 SQL_FREERESULT($result_act);
103 SQL_FREERESULT($result_pay);
104
105 // Transfer rows to an array
106 $content = array(
107         'actions'  => $OUT_ACT,
108         'paytypes' => $OUT_PAY
109 );
110
111 // Load main template
112 loadTemplate('guest_sponsor_infos', false, $content);
113
114 // [EOF]
115 ?>