Next wave of lesser getMessage() usage and more EL
[mailer.git] / inc / modules / admin / what-lock_user.php
index b4309d3530d867379fc41d41dc66a06191932318..f91f2aedd4e6126dc03cefe6465ee6c5151bc326 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 09/28/2003 *
- * ===============                              Last change: 06/10/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 09/28/2003 *
+ * ===================                          Last change: 06/10/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-lock_user.php                               *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Mitglieder sperren                               *
  * -------------------------------------------------------------------- *
- * $Revision:: 856                                                    $ *
- * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009)              $ *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
- * $Author:: stelzi                                                   $ *
+ * $Author::                                                          $ *
  * Needs to be in all Files and every File needs "svn propset           *
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  ************************************************************************/
 
 // Some security stuff...
-if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-}
+if ((!defined('__SECURITY')) || (!isAdmin())) {
+       die();
+} // END - if
 
 // Add description as navigation point
-ADD_DESCR("admin", __FILE__);
+addMenuDescription('admin', __FILE__);
 
 // Is a userid set?
-if (REQUEST_ISSET_GET(('uid'))) {
-       // Load user's data
-       $result_user = SQL_QUERY_ESC("SELECT status, gender, surname, family, email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
-        array(bigintval(REQUEST_GET('uid'))), __FILE__, __LINE__);
+if (isGetRequestParameterSet('userid')) {
+       // Action not performed by default
        $ACT = false;
-       if (SQL_NUMROWS($result_user) == 1) {
-               // User found
-               list($status, $gender, $sname, $fname, $email) = SQL_FETCHROW($result_user);
-
-               // Free result
-               SQL_FREERESULT($result_user);
 
+       // Load user's data
+       if (fetchUserData(getRequestParameter('userid'))) {
                // Is a lock reason set?
-               if ((REQUEST_ISSET_POST(('lock'))) && ($status != "LOCKED")) {
+               if ((isFormSent('lock')) && (getUserData('status') != 'LOCKED')) {
                        // Ok, lock the account!
-                       if (GET_EXT_VERSION("user") >= "0.3.5") {
+                       if (isExtensionInstalledAndNewer('user', '0.3.5')) {
                                // Lock with reason
-                               SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET `status`='LOCKED',lock_reason='%s',lock_timestamp=NOW() WHERE userid=%s LIMIT 1",
-                                       array(REQUEST_POST('reason'), bigintval(REQUEST_GET('uid'))), __FILE__, __LINE__);
+                               SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `status`='LOCKED', `lock_reason`='%s', `lock_timestamp`=NOW() WHERE `userid`=%s LIMIT 1",
+                                       array(postRequestParameter('reason'), bigintval(getRequestParameter('userid'))), __FILE__, __LINE__);
                        } else {
                                // Lock with no lock reason saved
-                               SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET `status`='LOCKED' WHERE userid=%s LIMIT 1",
-                                       array(bigintval(REQUEST_GET('uid'))), __FILE__, __LINE__);
+                               SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `status`='LOCKED' WHERE `userid`=%s LIMIT 1",
+                                       array(bigintval(getRequestParameter('userid'))), __FILE__, __LINE__);
                        }
 
                        // Entry updated?
                        if (SQL_AFFECTEDROWS() == 1) {
                                // Send an email to the user! In later version you can optionally switch this feature off
-                               $msg = LOAD_EMAIL_TEMPLATE("lock-user", array('text' => REQUEST_POST('reason')), bigintval(REQUEST_GET('uid')));
+                               $message = loadEmailTemplate('lock-user', array('text' => postRequestParameter('reason')), bigintval(getRequestParameter('userid')));
 
                                // Send away...
-                               SEND_EMAIL(bigintval(REQUEST_GET('uid')), ADMIN_LOCKED_SUBJ, $msg);
+                               sendEmail(bigintval(getRequestParameter('userid')), getMessage('ADMIN_LOCKED_SUBJ'), $message);
                        } // END - if
 
                        // Prepare message
-                       $MSG = USER_ACCOUNT_LOCKED_1.REQUEST_GET('uid').USER_ACCOUNT_LOCKED_2;
+                       $message = getMaskedMessage('USER_ACCOUNT_LOCKED', bigintval(getRequestParameter('userid')));
                        $ACT = true;
-               } elseif ((REQUEST_ISSET_POST(('unlock'))) && ($status == "LOCKED")) {
+               } elseif ((isPostRequestParameterSet('unlock')) && (getUserData('status') == 'LOCKED')) {
                        // Ok, unlock the account!
-                       if (GET_EXT_VERSION("user") >= "0.3.5") {
+                       if (isExtensionInstalledAndNewer('user', '0.3.5')) {
                                // Reset lock reason as well
-                               SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET `status`='CONFIRMED',lock_reason='',lock_timestamp='0000-00-00 00:00' WHERE userid=%s LIMIT 1",
-                                       array(bigintval(REQUEST_GET('uid'))), __FILE__, __LINE__);
+                               SQL_QUERY_ESC("UPDATE
+       `{?_MYSQL_PREFIX?}_user_data`
+SET
+       `status`='CONFIRMED',
+       `lock_reason`='',
+       `lock_timestamp`='0000-00-00 00:00'
+WHERE
+       `userid`=%s
+LIMIT 1",
+                                       array(bigintval(getRequestParameter('userid'))), __FILE__, __LINE__);
                        } else {
                                // No lock reason to reset
-                               SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET `status`='CONFIRMED' WHERE userid=%s LIMIT 1",
-                                       array(bigintval(REQUEST_GET('uid'))), __FILE__, __LINE__);
+                               SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `status`='CONFIRMED' WHERE `userid`=%s LIMIT 1",
+                                       array(bigintval(getRequestParameter('userid'))), __FILE__, __LINE__);
                        }
 
                        // Entry updated?
                        if (SQL_AFFECTEDROWS() == 1) {
                                // Send an email to the user! In later version you can optionally switch this feature off
-                               $msg = LOAD_EMAIL_TEMPLATE("unlock-user", array('text' => REQUEST_POST('reason')), bigintval(REQUEST_GET('uid')));
+                               $message = loadEmailTemplate('unlock-user', array('text' => postRequestParameter('reason')), bigintval(getRequestParameter('userid')));
 
                                // Send away...
-                               SEND_EMAIL(bigintval(REQUEST_GET('uid')), getMessage('ADMIN_UNLOCKED_SUBJ'), $msg);
-                               if (EXT_IS_ACTIVE("rallye")) {
-                                       RALLYE_AUTOADD_USER(REQUEST_GET('uid'));
+                               sendEmail(bigintval(getRequestParameter('userid')), getMessage('ADMIN_UNLOCKED_SUBJ'), $message);
+                               if (isExtensionActive('rallye')) {
+                                       addUserToReferalRallye(getRequestParameter('userid'));
                                } // END - if
                        } // END - if
 
                        // Prepare message
-                       $MSG = USER_ACCOUNT_UNLOCKED_1.REQUEST_GET('uid').USER_ACCOUNT_UNLOCKED_2;
+                       $message = getMaskedMessage('USER_ACCOUNT_UNLOCKED', bigintval(getRequestParameter('userid')));
                        $ACT = true;
-               } elseif (REQUEST_ISSET_POST('del')) {
+               } elseif (isFormSent('del')) {
                        // Delete the account
                        $ACT = true;
-                       LOAD_INC_ONCE("inc/modules/admin/what-del_user.php");
-               } elseif (REQUEST_ISSET_POST(('no'))) {
+                       loadIncludeOnce('inc/modules/admin/what-del_user.php');
+               } elseif (isPostRequestParameterSet('no')) {
                        // Do not lock him...
-                       $URL = "modules.php?module=admin&amp;what=list_user&amp;uid=".bigintval(REQUEST_GET('uid'));
+                       $url = adminCreateUserLink(getRequestParameter('userid'));
                } else {
-                       $result = SQL_QUERY_ESC("SELECT email, surname, family FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
-                               array(bigintval(REQUEST_GET('uid'))), __FILE__, __LINE__);
-
-                       // Entry found?
-                       if (SQL_NUMROWS($result) == 1) {
-                               // Load data
-                               list ($email, $sname, $fname) = SQL_FETCHROW($result);
-
-                               // Free result
-                               SQL_FREERESULT($result);
-
+                       // Load user data we need
+                       if (fetchUserData(getRequestParameter('userid'))) {
                                // Transfer data to constants for the template
-                               define('__EMAIL', CREATE_EMAIL_LINK($email, "user_data"));
-                               define('__SNAME', $sname);
-                               define('__FNAME', $fname);
-                               define('__UID'  , bigintval(REQUEST_GET('uid')));
+                               $content['userid']  = getRequestParameter('userid');
 
                                // Realy want to lock?
-                               switch ($status)
-                               {
-                               case "CONFIRMED": // Yes, lock him down... ;-)
-                                       define('__OK_VALUE'    , "lock");
-                                       define('__HEADER_VALUE', ADMIN_HEADER_LOCK_ACCOUNT_1.__UID.ADMIN_HEADER_LOCK_ACCOUNT_2);
-                                       define('__TEXT_VALUE'  , ADMIN_TEXT_LOCK_ACCOUNT_1.__UID.ADMIN_TEXT_LOCK_ACCOUNT_2);
-                                       break;
-
-                               case "LOCKED": // Unlock the user
-                                       define('__OK_VALUE'    , "unlock");
-                                       define('__HEADER_VALUE', ADMIN_HEADER_UNLOCK_ACCOUNT_1.__UID.ADMIN_HEADER_UNLOCK_ACCOUNT_2);
-                                       define('__TEXT_VALUE'  , ADMIN_TEXT_UNLOCK_ACCOUNT_1.__UID.ADMIN_TEXT_UNLOCK_ACCOUNT_2);
-                                       break;
-
-                               case "UNCONFIRMED": // Unconfirmed accounts cannot be unlocked!
-                                       define('__OK_VALUE'    , "del");
-                                       define('__HEADER_VALUE', ADMIN_HEADER_DEL_ACCOUNT_1.__UID.ADMIN_HEADER_DEL_ACCOUNT_2);
-                                       define('__TEXT_VALUE'  , ADMIN_TEXT_DEL_ACCOUNT_1.__UID.ADMIN_TEXT_DEL_ACCOUNT_2);
-                                       break;
+                               switch (getUserData('status')) {
+                                       case 'CONFIRMED': // Yes, lock him down... ;-)
+                                               $content['ok']     = 'lock';
+                                               $content['header'] = getMaskedMessage('ADMIN_HEADER_LOCK_ACCOUNT', $content['userid']);
+                                               $content['text']   = getMaskedMessage('ADMIN_TEXT_LOCK_ACCOUNT', $content['userid']);
+                                               break;
+
+                                       case 'LOCKED': // Unlock the user
+                                               $content['ok']     = 'unlock';
+                                               $content['header'] = getMaskedMessage('ADMIN_HEADER_UNLOCK_ACCOUNT', $content['userid']);
+                                               $content['text']   = getMaskedMessage('ADMIN_TEXT_UNLOCK_ACCOUNT', $content['userid']);
+                                               break;
+
+                                       case 'UNCONFIRMED': // Unconfirmed accounts cannot be unlocked!
+                                               $content['ok'] = 'del';
+                                               $content['header'] = getMaskedMessage('ADMIN_HEADER_DEL_ACCOUNT', $content['userid']);
+                                               $content['text']   = getMaskedMessage('ADMIN_TEXT_DEL_ACCOUNT', $content['userid']);
+                                               break;
                                }
 
                                // Output form
-                               LOAD_TEMPLATE("admin_lock_user");
+                               loadTemplate('admin_lock_user', false, $content);
                        } else {
                                // Account does not exists!
-                               LOAD_TEMPLATE("admin_settings_saved", false, "<div class=\"admin_failed\">".sprintf(getMessage('ADMIN_MEMBER_404'), REQUEST_GET('uid'))."</div>");
+                               loadTemplate('admin_settings_saved', false, '<div class="admin_failed">' . getMaskedMessage('ADMIN_MEMBER_404', bigintval(getRequestParameter('userid'))) . '</div>');
                        }
                }
 
                // Is an URL set?
-               if (!empty($URL)) {
+               if (!empty($url)) {
                        // Reload and die...
-                       LOAD_URL($URL);
+                       redirectToUrl($url);
                } elseif ($ACT) {
                        // An action was performed...
-                       if (!empty($MSG)) {
-                               LOAD_TEMPLATE("admin_settings_saved", false, "<div class=\"admin_green\">".$MSG."</div>");
+                       if (!empty($message)) {
+                               loadTemplate('admin_settings_saved', false, '<div class="admin_failed">' . $message . '</div>');
                        } else {
-                               LOAD_TEMPLATE("admin_settings_saved", false, "<div class=\"admin_green\">".getMessage('ADMIN_USER_UPDATED')."</div>");
+                               loadTemplate('admin_settings_saved', false, '<div class="admin_failed">{--ADMIN_USER_UPDATED--}</div>');
                        }
                }
        } else {
                // Account does not exists!
-               LOAD_TEMPLATE("admin_settings_saved", false, "<div class=\"admin_failed\">".sprintf(getMessage('ADMIN_MEMBER_404'), REQUEST_GET('uid'))."</div>");
+               loadTemplate('admin_settings_saved', false, '<div class="admin_failed">' . getMaskedMessage('ADMIN_MEMBER_404', bigintval(getRequestParameter('userid'))) . '</div>');
        }
 } else {
        // List all users
-       ADD_MEMBER_SELECTION_BOX();
+       addMemberSelectionBox();
 }
 
-//
+// [EOF]
 ?>