Updated copyright notice as there are changes in this year
[mailer.git] / inc / modules / admin / what-list_user_subid.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/09/2012 *
4  * ===================                          Last change: 10/09/2012 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_user_subid.php                         *
8  * -------------------------------------------------------------------- *
9  * Short description : List all URLs in user_subid                      *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Alle URLs in user_subid auflisten                *
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')) || (!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 ((countRequestPost() > 0) && (!ifPostContainsSelections('id')) && (!ifPostContainsSelections('subid'))) {
51         // Not found so output message
52         displayMessage('{--ADMIN_USER_SUBID_NO_SELECTIONS--}');
53
54         // Abort here
55         return;
56 } // END - if
57
58 // Edit or delete button hit?
59 if (isFormSent('edit')) {
60         // Show entries for editing
61         doGenericXmlTemplateCallback('admin_edit_show_user_subid', array(
62                 'userid' => bigintval(getRequestElement('userid'))
63         ));
64
65         // Do not show the list of URLs after this template
66         $show = FALSE;
67 } elseif (isFormSent('do_edit')) {
68         // Change data of entries
69         doGenericXmlTemplateCallback('admin_edit_do_user_subid', array(
70                 'userid' => bigintval(getRequestElement('userid'))
71         ));
72 } elseif (isFormSent('delete')) {
73         // Show entries for deletion
74         doGenericXmlTemplateCallback('admin_delete_show_user_subid', array(
75                 'userid' => bigintval(getRequestElement('userid'))
76         ));
77
78         // Do not show the list of URLs after this template
79         $show = FALSE;
80 } elseif (isFormSent('do_delete')) {
81         // Remove entries from database
82         doGenericXmlTemplateCallback('admin_delete_do_user_subid', array(
83                 'userid' => bigintval(getRequestElement('userid'))
84         ));
85 } elseif (isFormSent('do_delete_stats')) {
86         // Remove entries from database
87         doGenericXmlTemplateCallback('admin_delete_do_user_subid_stats', array(
88                 'userid' => bigintval(getRequestElement('userid'))
89         ));
90 } elseif ((isGetRequestElementSet('do')) && (isGetRequestElementSet('id'))) {
91         // Construct module name
92         $incFile = sprintf("inc/modules/admin/subid-%s.php", SQL_ESCAPE(getRequestElement('do')));
93
94         // Is the include readable and is the sub id assigned to current admin?
95         if (!isUserSubIdAssignedToMember(getRequestElement('id'), getRequestElement('userid'))) {
96                 // Sub id is not assigned to current admin or doesn't exist
97                 reportBug(__FILE__, __LINE__, 'Sub id ' . getRequestElement('id') . ' is not assigned with userid ' .getRequestElement('userid'));
98         } elseif (isIncludeReadable($incFile)) {
99                 // Then include it
100                 loadIncludeOnce($incFile);
101
102                 // Do not show the list of URLs after this template
103                 $show = FALSE;
104         } else {
105                 // Display error message
106                 reportBug(__FILE__, __LINE__, 'Invalid include file ' . basename($incFile) . ' detected.');
107         }
108 }
109
110 // Show entries?
111 if ($show === FALSE) {
112         // No, a form has already been show
113         return FALSE;
114 } // END - if
115
116 // Is a user id sent?
117 if (isGetRequestElementSet('userid')) {
118         // List all sub ids
119         doGenericXmlTemplateCallback('admin_list_user_subid', array(
120                 'userid' => bigintval(getRequestElement('userid'))
121         ));
122 } else {
123         // Output selection form with all confirmed user accounts listed
124         addMemberSelectionBox();
125 }
126
127 // [EOF]
128 ?>