- Daily/weekly/monthly reset completely rewritten
[mailer.git] / inc / modules / admin / what-list_surfbar_reflvl.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/01/2008 *
4  * ================                             Last change: 09/01/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_surfbar_reflvl.php                     *
8  * -------------------------------------------------------------------- *
9  * Short description : List referal levels for surfbar                  *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Referalebenen der Surfbar auflisten              *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
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, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!is_admin())) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 } // END - if
39
40 // Add description as navigation point
41 ADD_DESCR("admin", basename(__FILE__));
42
43 // Add a level?
44 if ((isset($_POST['add'])) && (!empty($_POST['lvl'])) && (!empty($_POST['perc']))) {
45         // Rewrite percentage and level
46         $percent = (float) str_replace(",", ".", $_POST['perc']);
47         $level   = bigintval($_POST['lvl']);
48
49         // Add the referal level
50         ADMIN_SPONSOR_ADD_REFERAL_LEVEL($levl, $percent);
51 } // END - if
52
53 // Load all referal levels
54 $result = SQL_QUERY("SELECT id, level, percent FROM "._MYSQL_PREFIX."_surfbar_reflevels ORDER BY level ASC", __FILE__, __LINE__);
55
56 // Some levels found?
57 if (SQL_NUMROWS($result) > 0) {
58         // List all levels
59         $OUT = ""; $SW = 2;
60         while ($content = SQL_FETCHARRAY($result)) {
61                 // Prepare content
62                 $content['percent'] = TRANSLATE_COMMA($content['percent']);
63                 $content['sw'] = $SW;
64
65                 // Load row template
66                 $OUT .= LOAD_TEMPLATE("admin_list_surfbar_reflvl_row", true, $content);
67
68                 // Switch color
69                 $SW = 3 - $SW;
70         } // END - while
71
72         // Load main template
73         LOAD_TEMPLATE("admin_list_surfbar_reflvl", false, $OUT);
74 } else {
75         // No level setup so far
76         LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SURFBAR_NO_REF_LEVELS_FOUND);
77 }
78
79 // Free result
80 SQL_FREERESULT($result);
81
82 // Add space
83 OUTPUT_HTML("<br />");
84
85 // Output form for adding new level
86 LOAD_TEMPLATE("admin_add_surfbar_reflvl");
87
88 //
89 ?>