Updated copyright year.
[mailer.git] / inc / modules / admin / what-list_referral_levels.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 11/24/2012 *
4  * ===================                          Last change: 11/24/2012 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_referral_levels.php                    *
8  * -------------------------------------------------------------------- *
9  * Short description : List/add/edit/delete referral levels             *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Auflisten/hinzufuegen/editieren/loeschen v. R.L. *
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 - 2016 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')) || (!isAdmin())) {
40         die();
41 } // END - if
42
43 // Add description as navigation point
44 addYouAreHereLink('admin', __FILE__);
45
46 // By default show the list...
47 $show = TRUE;
48
49 // Check for 'id' element
50 if ((!isFormSent('add')) && (countRequestPost() > 0) && (!ifPostContainsSelections('id'))) {
51         // Not found so output message
52         displayMessage('{--ADMIN_REFERRA_LEVELS_NO_SELECTIONS--}');
53
54         // Abort here
55         return;
56 } // END - if
57
58 // Add/edit or delete button hit?
59 if (isFormSent('add')) {
60         // Add it
61         doGenericXmlTemplateCallback('admin_add_do_referral_levels');
62 } elseif (isFormSent('edit')) {
63         // Show entries for editing
64         doGenericXmlTemplateCallback('admin_edit_show_referral_levels');
65
66         // Do not show the list of URLs after this template
67         $show = FALSE;
68 } elseif (isFormSent('do_edit')) {
69         // Change data of entries
70         doGenericXmlTemplateCallback('admin_edit_do_referral_levels');
71 } elseif (isFormSent('delete')) {
72         // Show entries for deletion
73         doGenericXmlTemplateCallback('admin_delete_show_referral_levels');
74
75         // Do not show the list of URLs after this template
76         $show = FALSE;
77 } elseif (isFormSent('do_delete')) {
78         // Remove entries from database
79         doGenericXmlTemplateCallback('admin_delete_do_referral_levels');
80 }
81
82 // Show entries?
83 if ($show === FALSE) {
84         // No, a form has already been show
85         return FALSE;
86 } // END - if
87
88 // List all referral_levels
89 doGenericXmlTemplateCallback('admin_list_referral_levels');
90
91 // Form for adding new referral levels
92 loadTemplate('admin_add_referral_level');
93
94 // [EOF]
95 ?>