]> git.mxchange.org Git - mailer.git/blobdiff - inc/filter/admins_filter.php
Several code cleanups:
[mailer.git] / inc / filter / admins_filter.php
index 677f1d295b8d951952b2b769f57f15545084a4fe..d38acb9af7c467d8c16345e2b8f2eae52ea15b14 100644 (file)
@@ -55,14 +55,14 @@ function FILTER_ADD_EXTRA_SQL_DATA ($add = '') {
 }
 
 // Reset the login failures
-function FILTER_RESET_ADMINS_LOGIN_FAILURES ($data) {
+function FILTER_RESET_ADMINS_LOGIN_FAILURES ($filterData) {
        // Store it in session
        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!');
-       setSession('mailer_admin_failures'    , getAdminLoginFailures($data['id']));
-       setSession('mailer_admin_last_failure', getAdminLastFailure($data['id']));
+       setSession('mailer_admin_failures'    , getAdminLoginFailures($filterData['id']));
+       setSession('mailer_admin_last_failure', getAdminLastFailure($filterData['id']));
 
        // Prepare update data
-       $postData['login'][getCurrentAdminId()]          = $data['login'];
+       $postData['login'][getCurrentAdminId()]          = $filterData['login'];
        $postData['login_failures'][getCurrentAdminId()] = '0';
        $postData['last_failure'][getCurrentAdminId()]   = null;
 
@@ -74,14 +74,14 @@ function FILTER_RESET_ADMINS_LOGIN_FAILURES ($data) {
 
        // Return the data for further processing
        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Done!');
-       return $data;
+       return $filterData;
 }
 
 // Count the login failure
-function FILTER_COUNT_ADMINS_LOGIN_FAILURE ($data) {
+function FILTER_COUNT_ADMINS_LOGIN_FAILURE ($filterData) {
        // Prepare update data
        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!');
-       $postData['login'][getCurrentAdminId()]          = $data['login'];
+       $postData['login'][getCurrentAdminId()]          = $filterData['login'];
        $postData['login_failures'][getCurrentAdminId()] = '`login_failures`+1';
        $postData['last_failure'][getCurrentAdminId()]   = 'NOW()';
 
@@ -93,17 +93,17 @@ function FILTER_COUNT_ADMINS_LOGIN_FAILURE ($data) {
 
        // Return the data for further processing
        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Done!');
-       return $data;
+       return $filterData;
 }
 
 // Rehashes the given plain admin password and stores it the database
-function FILTER_REHASH_ADMINS_PASSWORD ($data) {
+function FILTER_REHASH_ADMINS_PASSWORD ($filterData) {
        // Generate new hash
        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!');
-       $newHash = generateHash($data['plain_pass']);
+       $newHash = generateHash($filterData['plain_pass']);
 
        // Prepare update data
-       $postData['login'][getCurrentAdminId()]    = $data['login'];
+       $postData['login'][getCurrentAdminId()]    = $filterData['login'];
        $postData['password'][getCurrentAdminId()] = $newHash;
 
        // Change it in the admin
@@ -111,14 +111,14 @@ function FILTER_REHASH_ADMINS_PASSWORD ($data) {
 
        // Update cookie/session and data array
        setAdminMd5(encodeHashForCookie($newHash));
-       $data['pass_hash'] = $newHash;
+       $filterData['pass_hash'] = $newHash;
 
        // Always make sure the cache is destroyed
        rebuildCache('admin');
 
        // Return the data for further processing
        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Done!');
-       return $data;
+       return $filterData;
 }
 
 // [EOF]