Removed comment introduced by Profi-Concept, this comment should fine (in a much...
[mailer.git] / inc / modules / member / what-nickname.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 06/19/2004 *
4  * ===================                          Last change: 07/24/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-nickname.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : Nickname instead of the id                       *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Nickname anstelle der id                         *
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, 2010 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 } elseif (!isMember()) {
42         redirectToIndexMemberOnlyModule();
43 }
44
45 // Add description as navigation point
46 addMenuDescription('member', __FILE__);
47
48 if ((!isExtensionActive('nickname')) && (!isAdmin())) {
49         loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('nickname'));
50         return;
51 } // END - if
52
53 $isValid = false;
54
55 if (isFormSent()) {
56         // Nickname was submitted so let's check if it is not already in use
57         if (isPostRequestParameterSet('nickname')) {
58                 // Check if nickname is valid
59                 $PATTERN = '[' . getConfig('nickname_pattern') . ']{' . getConfig('nickname_len') . ',}';
60                 if (isInString($PATTERN, postRequestParameter('nickname'), $array)) {
61                         // Entered nickname is valid?
62                         $isValid = ($array[0] == postRequestParameter('nickname'));
63                 } // END - if
64         } // END - if
65 } // END - if
66
67 if ($isValid === true) {
68         // Look for nickname in database (we only need just one entry so don't worry about the "LIMIT 1" !)
69         $result = SQL_QUERY_ESC("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `nickname`='%s' AND `userid` != '%s' LIMIT 1",
70                 array(postRequestParameter('nickname'), getMemberId()), __FILE__, __LINE__);
71         if (SQL_HASZERONUMS($result)) {
72                 // Nickname not in use, so set it now
73                 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `nickname`='%s' WHERE `userid`=%s LIMIT 1",
74                         array(postRequestParameter('nickname'), getMemberId()), __FILE__, __LINE__);
75                 $content = '{--MEMBER_NICKNAME_SAVED--}';
76         } else {
77                 // Free result
78                 SQL_FREERESULT($result);
79
80                 // Nickname already in use!
81                 $content = '{--MEMBER_NICKNAME_ALREADY_IN_USE--}';
82         }
83
84         // Load template
85         loadTemplate('admin_settings_saved', false, $content);
86 } else {
87         // Do we have already submit the form?
88         if (isPostRequestParameterSet('nickname')) {
89                 loadTemplate('admin_settings_unsaved', false, '{--MEMBER_NICKNAME_IS_INVALID--}');
90         } // END - if
91
92         // Load Template
93         loadTemplate('member_nickname_form', false, getNickname(getMemberId()));
94 }
95
96 // [EOF]
97 ?>