]> git.mxchange.org Git - mailer.git/blob - inc/modules/guest/what-sponsor_infos.php
Renamed all SQL-related functions to camel-case notation
[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 - 2013 by Mailer Developer Team                   *
20  * For more information visit: http://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         exit();
41 } // END - if
42
43 // Add description as navigation point
44 addYouAreHereLink('guest', __FILE__);
45
46 if ((!isExtensionActive('sponsor'))) {
47         displayMessage('{%pipe,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 // ... and output variables
56 $OUT_ACT = '';
57 $OUT_PAY = '';
58
59 // Load all sponsor actions
60 $result_act = sqlQuery("SELECT
61         `m`.`title` AS `conv_title`,
62         `c`.`conv_rate`,
63         `c`.`conv_name`
64 FROM
65         `{?_MYSQL_PREFIX?}_sponsor_menu` AS `m`
66 LEFT JOIN
67         `{?_MYSQL_PREFIX?}_sponsor_action_convert` AS `c`
68 ON
69         `m`.`what`=`c`.`ext_name`
70 LEFT JOIN
71         `{?_MYSQL_PREFIX?}_sponsor_registry` AS `r`
72 ON
73         `m`.`what`=`r`.`ext_name`
74 WHERE
75         `m`.`action`='actions' AND
76         `r`.`is_active`='Y'
77 ORDER BY
78         `m`.`sort` ASC", __FILE__, __LINE__);
79
80 if (!ifSqlHasZeroNums($result_act)) {
81         // Load all actions
82         while ($content = sqlFetchArray($result_act)) {
83                 // Load row template and switch color
84                 $OUT_ACT .= loadTemplate('guest_sponsor_act_row', TRUE, $content);
85         } // END - while
86
87         // Check for pay types
88         $result_pay = sqlQuery('SELECT `pay_name`, `pay_rate`, `pay_min_count`, `pay_currency` FROM `{?_MYSQL_PREFIX?}_sponsor_paytypes` ORDER BY `pay_name` ASC', __FILE__, __LINE__);
89         if (!ifSqlHasZeroNums($result_pay)) {
90                 // Load all pay types
91                 while ($content = sqlFetchArray($result_pay)) {
92                         // Load row template and switch color
93                         $OUT_PAY .= loadTemplate('guest_sponsor_pay_row', TRUE, $content);
94                 } // END - while
95         } else {
96                 // No pay types setuped so far!
97                 $OUT_PAY = loadTemplate('guest_sponsor_infos_none_row', TRUE, displayMessage('{--SPONSOR_NO_ACTIONS_ACTIVATED--}', TRUE));
98         }
99 } else {
100         // No actions activated so far!
101         $OUT_ACT = loadTemplate('guest_sponsor_infos_none_row', TRUE, displayMessage('{--SPONSOR_NO_ACTIONS_ACTIVATED--}', TRUE));
102         $OUT_PAY = loadTemplate('guest_sponsor_infos_none_row', TRUE, displayMessage('{--SPONSOR_NO_ACTIONS_ACTIVATED--}', TRUE));
103 }
104
105 // Free memory
106 sqlFreeResult($result_act);
107 sqlFreeResult($result_pay);
108
109 // Transfer rows to an array
110 $content = array(
111         'actions'  => $OUT_ACT,
112         'paytypes' => $OUT_PAY
113 );
114
115 // Load main template
116 loadTemplate('guest_sponsor_infos', FALSE, $content);
117
118 // [EOF]
119 ?>