New wrapper functions introduced, TODOs.txt updated
[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 - 2011 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 addYouAreHereLink('member', __FILE__);
47
48 if ((!isExtensionActive('nickname')) && (!isAdmin())) {
49         displayMessage(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                 if (preg_match('/[' . getConfig('nickname_pattern') . ']{' . getConfig('nickname_len') . ',}/', postRequestParameter('nickname'), $array)) {
60                         // Entered nickname is valid?
61                         $isValid = ($array[0] == postRequestParameter('nickname'));
62                 } // END - if
63         } // END - if
64 } // END - if
65
66 if ($isValid === true) {
67         // Look for nickname in database (we only need just one entry so don't worry about the "LIMIT 1" !)
68         $result = SQL_QUERY_ESC("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `nickname`='%s' AND `userid` != %s LIMIT 1",
69                 array(postRequestParameter('nickname'), getMemberId()), __FILE__, __LINE__);
70         if (SQL_HASZERONUMS($result)) {
71                 // Nickname not in use, so set it now
72                 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `nickname`='%s' WHERE `userid`=%s LIMIT 1",
73                         array(postRequestParameter('nickname'), getMemberId()), __FILE__, __LINE__);
74                 $content = '{--MEMBER_NICKNAME_SAVED--}';
75         } else {
76                 // Free result
77                 SQL_FREERESULT($result);
78
79                 // Nickname already in use!
80                 $content = '{--MEMBER_NICKNAME_ALREADY_IN_USE--}';
81         }
82
83         // Load template
84         displayMessage($content);
85 } else {
86         // Do we have already submit the form?
87         if (isPostRequestParameterSet('nickname')) {
88                 loadTemplate('admin_settings_unsaved', false, '{--MEMBER_NICKNAME_IS_INVALID--}');
89         } // END - if
90
91         // Load Template
92         loadTemplate('member_nickname_form', false, getNickname(getMemberId()));
93 }
94
95 // [EOF]
96 ?>