]> git.mxchange.org Git - mailer.git/commitdiff
Added purging of subid and server_name logs
authorRoland Häder <roland@mxchange.org>
Sat, 10 Nov 2012 20:29:55 +0000 (20:29 +0000)
committerRoland Häder <roland@mxchange.org>
Sat, 10 Nov 2012 20:29:55 +0000 (20:29 +0000)
33 files changed:
.gitattributes
doubler.php
inc/daily/daily_100_bonus.php
inc/daily/daily_autopurge.php
inc/daily/daily_beg.php
inc/daily/daily_birthday.php
inc/daily/daily_bonus.php
inc/daily/daily_doubler.php
inc/daily/daily_earning.php
inc/daily/daily_holiday.php
inc/daily/daily_order.php
inc/daily/daily_profile.php
inc/daily/daily_surfbar.php
inc/daily/daily_user.php
inc/daily/daily_user_subids.php [new file with mode: 0644]
inc/extensions/ext-sql_patches.php
inc/extensions/ext-user.php
inc/filters.php
inc/language/autopurge_de.php
inc/language/de.php
inc/language/user_de.php
inc/libs/doubler_functions.php
inc/libs/user_functions.php
inc/mails/doubler_mails.php
inc/modules/admin/what-config_autopurge.php
inc/modules/admin/what-config_doubler.php
inc/modules/admin/what-config_user_subid.php [new file with mode: 0644]
inc/modules/member/what-doubler.php
inc/wrapper-functions.php
templates/de/emails/admin/admin_purge_user_server_name_log.tpl [new file with mode: 0644]
templates/de/emails/admin/admin_purge_user_subid_log.tpl [new file with mode: 0644]
templates/de/html/admin/admin_config_autopurge.tpl
templates/de/html/admin/admin_config_user_subid.tpl [new file with mode: 0644]

index 08acc8d1bff2635c417fd4ed62649469c0d9b6a5..1feadf98687a1588f938fc8dabb8a8a9842ab37b 100644 (file)
@@ -118,6 +118,7 @@ inc/daily/daily_order.php svneol=native#text/plain
 inc/daily/daily_profile.php svneol=native#text/plain
 inc/daily/daily_surfbar.php svneol=native#text/plain
 inc/daily/daily_user.php svneol=native#text/plain
+inc/daily/daily_user_subids.php svneol=native#text/plain
 inc/daily/daily_yoomedia.php svneol=native#text/plain
 inc/databases.php svneol=native#text/plain
 inc/db/.htaccess svneol=native#text/plain
@@ -527,6 +528,7 @@ inc/modules/admin/what-config_title.php svneol=native#text/plain
 inc/modules/admin/what-config_top10.php svneol=native#text/plain
 inc/modules/admin/what-config_transfer.php svneol=native#text/plain
 inc/modules/admin/what-config_user.php svneol=native#text/plain
+inc/modules/admin/what-config_user_subid.php svneol=native#text/plain
 inc/modules/admin/what-config_validator.php svneol=native#text/plain
 inc/modules/admin/what-config_wernis.php svneol=native#text/plain
 inc/modules/admin/what-config_yoomedia.php svneol=native#text/plain
@@ -915,6 +917,8 @@ templates/de/emails/admin/admin_newsletter_reset.tpl svneol=native#text/plain
 templates/de/emails/admin/admin_order_normal.tpl svneol=native#text/plain
 templates/de/emails/admin/admin_payout_request.tpl svneol=native#text/plain
 templates/de/emails/admin/admin_payout_request_banner.tpl svneol=native#text/plain
+templates/de/emails/admin/admin_purge_user_server_name_log.tpl svneol=native#text/plain
+templates/de/emails/admin/admin_purge_user_subid_log.tpl svneol=native#text/plain
 templates/de/emails/admin/admin_rallye_expired.tpl svneol=native#text/plain
 templates/de/emails/admin/admin_rallye_expired_no.tpl svneol=native#text/plain
 templates/de/emails/admin/admin_rallye_no_notify.tpl svneol=native#text/plain
@@ -1220,6 +1224,7 @@ templates/de/html/admin/admin_config_top10.tpl svneol=native#text/plain
 templates/de/html/admin/admin_config_transfer.tpl svneol=native#text/plain
 templates/de/html/admin/admin_config_transfer_pro.tpl -text
 templates/de/html/admin/admin_config_user.tpl svneol=native#text/plain
+templates/de/html/admin/admin_config_user_subid.tpl svneol=native#text/plain
 templates/de/html/admin/admin_config_validator.tpl svneol=native#text/plain
 templates/de/html/admin/admin_config_wernis.tpl svneol=native#text/plain
 templates/de/html/admin/admin_config_yoomedia.tpl svneol=native#text/plain
index b640d54d79e5640e47b1b084e6ee0eab61fdc48a..a9ab0c8ac952287c985acd9c704b3cb9571408de 100644 (file)
@@ -85,7 +85,7 @@ if (isFormSent()) {
                setPostRequestElement('points', bigintval(round(convertCommaToDot(postRequestElement('points')))));
 
                // Probe for enough points
-               $probe_points = ((postRequestElement('points') >= getConfig('doubler_min')) && (postRequestElement('points') <= getConfig('doubler_max')));
+               $probe_points = ((postRequestElement('points') >= getDoublerMin()) && (postRequestElement('points') <= getDoublerMax()));
 
                // Check all together
                if ((isUserDataValid()) && (getUserData('password') == generateHash(postRequestElement('password'), substr(getUserData('password'), 0, -40))) && (getUserData('status') == 'CONFIRMED') && ($probe_points)) {
@@ -96,7 +96,7 @@ if (isFormSent()) {
                        $points = getTotalPoints(getUserData('userid'));
 
                        // So let's continue with probing his points amount
-                       if (($points - getConfig('doubler_left') - postRequestElement('points') * getConfig('doubler_charge') / 100) >= 0) {
+                       if (($points - getConfig('doubler_left') - postRequestElement('points') * getDoublerCharge() / 100) >= 0) {
                                // Enough points are left so let's continue with the doubling process
                                // Create doubling "account" with *DOUBLED* points
                                SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_doubler` (`userid`, `refid`, `points`, `remote_ip`, `timemark`, `completed`, `is_ref`) VALUES (%s,%s,%s,'%s', UNIX_TIMESTAMP(), 'N','N')",
@@ -111,7 +111,7 @@ if (isFormSent()) {
                                subtractPoints('doubler', getUserData('userid'), postRequestElement('points'));
 
                                // Add points to "total payed" including charge
-                               $points = postRequestElement('points') - postRequestElement('points') * getConfig('doubler_charge') / 100;
+                               $points = postRequestElement('points') - postRequestElement('points') * getDoublerCharge() / 100;
                                updateConfiguration('doubler_points', $points, '+');
                                incrementConfigEntry('doubler_points', $points);
 
@@ -121,7 +121,7 @@ if (isFormSent()) {
                                        SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_doubler` (`userid`, `refid`, `points`, `remote_ip`, `timemark`, `completed`, `is_ref`) VALUES (%s,0,%s,'%s',UNIX_TIMESTAMP(),'N','Y')",
                                                array(
                                                        convertZeroToNull(determineReferralId()),
-                                                       (postRequestElement('points') * 2 * getConfig('doubler_ref') / 100),
+                                                       (postRequestElement('points') * 2 * getDoublerRef() / 100),
                                                        detectRemoteAddr()
                                                ), __FILE__, __LINE__);
 
@@ -146,10 +146,10 @@ if (isFormSent()) {
                } elseif (getUserData('status') == 'LOCKED') {
                        // Account is locked by admin / holiday!
                        $content['message'] = '{--DOUBLER_FORM_STATUS_LOCKED--}';
-               } elseif (postRequestElement('points') < getConfig('doubler_min')) {
+               } elseif (postRequestElement('points') < getDoublerMin()) {
                        // Not enougth points entered
                        $content['message'] = '{--DOUBLER_FORM_POINTS_MIN--}';
-               } elseif (postRequestElement('points') > getConfig('doubler_max')) {
+               } elseif (postRequestElement('points') > getDoublerMax()) {
                        // Too much points entered
                        $content['message'] = '{--DOUBLER_FORM_POINTS_MAX--}';
                } elseif (isNicknameUsed(postRequestElement('userid'))) {
@@ -172,7 +172,7 @@ if (isFormSent()) {
 } // END - if (isFormSet())
 
 // Shall I check for points immediately?
-if (getConfig('doubler_send_mode') == 'DIRECT') {
+if (getDoublerSendMode() == 'DIRECT') {
        loadInclude('inc/mails/doubler_mails.php');
 } // END - if
 
@@ -204,7 +204,7 @@ if (isExtensionActive('nickname')) {
 }
 
 // Which mail-send-mode did the admin setup?
-$content['payout_time'] = '{--DOUBLER_PAYOUT_TIME_' . getConfig('doubler_send_mode') . '--}';
+$content['payout_time'] = '{--DOUBLER_PAYOUT_TIME_' . getDoublerSendMode() . '--}';
 
 // Generate table with already payed out doubles
 $content['payout_history'] = generateDoublerTable(0, 'Y', 'N', 'DESC');
index c32db5f50900974e55d8f955738731bcbd04a85b..dcca9cb084e91a54a7d60d2c5ec1b7d32309b379 100644 (file)
@@ -42,7 +42,7 @@ if (!defined('__SECURITY')) {
        // Do not execute when script is in CSS mode or no daily reset
        return;
 } elseif (!isExtensionActive('bonus')) {
-       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
+       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension ext-bonus disabled.');
        return;
 }
 
index 0dd607299eb37bcd9d242776ded435d0a7fd2cd4..f2c4d689a16ffd41cb6d8e5ee2bfbaa7c94bc7e3 100644 (file)
@@ -42,7 +42,7 @@ if (!defined('__SECURITY')) {
        // Do not execute when script is in CSS mode or no daily reset
        return;
 } elseif (!isExtensionActive('autopurge')) {
-       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
+       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension ext-autopurge disabled.');
        return;
 }
 
index 300f3c2ff1cb53f0ece1e4135ac8331b6767c090..a1eef8d7d22df1149a536dfc0f89f42973e7b040 100644 (file)
@@ -42,7 +42,7 @@ if (!defined('__SECURITY')) {
        // Do not execute when script is in CSS mode or no daily reset
        return;
 } elseif ((!isExtensionActive('beg')) || (!isBegRallyeEnabled())) {
-       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
+       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension ext-beg disabled.');
        return;
 }
 
index ae3b57134a08aa7f5cbf81cb54f9278d51fb654b..b44250769c1df42cadc52983c3253a37f9c727e3 100644 (file)
@@ -43,7 +43,7 @@ if (!defined('__SECURITY')) {
        return;
 } elseif (!isExtensionActive('birthday')) {
        // Extension not active/installed
-       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
+       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension ext-birthday disabled.');
        return;
 }
 
index 56a72bb728130673271b281dd66b4e55a1ea8f93..4faf7a0f6e80a8eb2591433ae63eef42f17596af 100644 (file)
@@ -42,7 +42,7 @@ if (!defined('__SECURITY')) {
        // Do not execute when script is in CSS mode or no daily reset
        return;
 } elseif (!isExtensionActive('bonus')) {
-       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
+       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension ext-bonus disabled.');
        return;
 }
 
index 836e747ffb1985f1d8bea7555d835ef7d335d57a..d170f7f5bc7f58f349c431aa046d08c38ffc9ecd 100644 (file)
@@ -41,8 +41,8 @@ if (!defined('__SECURITY')) {
 } elseif ((!isHtmlOutputMode()) || (!isResetModeEnabled())) {
        // Do not execute when script is in CSS mode or no daily reset
        return;
-} elseif ((!isExtensionActive('doubler')) || (getConfig('doubler_send_mode') != 'RESET')) {
-       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
+} elseif ((!isExtensionActive('doubler')) || (getDoublerSendMode() != 'RESET')) {
+       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension ext-doubler disabled.');
        return;
 }
 
index 93028cd7883e653cf46e21fe2f7e8f3cba2c7cdc..de4a03e82e6464be10818648e5d3662668021490 100644 (file)
@@ -42,7 +42,7 @@ if (!defined('__SECURITY')) {
        // Do not execute when script is in CSS mode or no daily reset
        return;
 } elseif (!isExtensionActive('earning')) {
-       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
+       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension ext-earning disabled.');
        return;
 }
 
index 2f8ffb29634fdc74b53fa6fa62c5f6bc636aac53..e1488dd0bfa13f80f3111d4abdd73ce1bb34aa92 100644 (file)
@@ -42,7 +42,7 @@ if (!defined('__SECURITY')) {
        // Do not execute when script is in CSS mode or no daily reset
        return;
 } elseif (!isExtensionActive('holiday')) {
-       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
+       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension ext-holiday disabled.');
        return;
 }
 
index 029687ec84ae72d6a77a98c35436edc7a87f6f83..39b5f64e191bcac533bc905dcba2d4edc2963156 100644 (file)
@@ -42,7 +42,7 @@ if (!defined('__SECURITY')) {
        // Do not execute when script is in CSS mode or no daily reset
        return;
 } elseif (!isExtensionActive('order')) {
-       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
+       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension ext-order disabled.');
        return;
 }
 
index 97a34f5ab52c1ac69683878a9a74bc4697c33e41..70b0eb96b5882a04e60810b13e90016a87f053a1 100644 (file)
@@ -43,7 +43,7 @@ if (!defined('__SECURITY')) {
        // Do not execute when script is in CSS mode or no daily reset
        return;
 } elseif (!isExtensionActive('profile')) {
-       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
+       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension ext-profile disabled.');
        return;
 }
 
index 495f0b0fb7f2e2cb8281ab70503fc68cecd563bc..b1d1db4cec00d3d3a3c597869844ccfa1397bcaf 100644 (file)
@@ -42,7 +42,7 @@ if (!defined('__SECURITY')) {
        // Do not execute when script is in CSS mode or no daily reset
        return;
 } elseif (!isExtensionActive('surfbar')) {
-       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
+       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension ext-surfbar disabled.');
        return;
 }
 
index fa5e28e1892a126286aaceec40ade5c6b050b2c6..591ba21b76e52ba056e7352fbd5e42f29295bf59 100644 (file)
@@ -42,7 +42,7 @@ if (!defined('__SECURITY')) {
        // Do not execute when script is in CSS mode or no daily reset
        return;
 } elseif ((!isExtensionActive('sql_patches')) || (!isExtensionActive('user'))) {
-       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension(s) disabled.');
+       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension(s) ext-sql_patches/ext-user disabled.');
        return;
 }
 
diff --git a/inc/daily/daily_user_subids.php b/inc/daily/daily_user_subids.php
new file mode 100644 (file)
index 0000000..9a3ebee
--- /dev/null
@@ -0,0 +1,72 @@
+<?php
+/************************************************************************
+ * Mailer v0.2.1-FINAL                                Start: 11/10/2012 *
+ * ===================                          Last change: 11/10/2012 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : daily_user_subids.php                            *
+ * -------------------------------------------------------------------- *
+ * Short description : Things to be done on daily reset                 *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Dinge, die beim taeglichen Reset erledigt werden *
+ * -------------------------------------------------------------------- *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
+ *                                                                      *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or    *
+ * (at your option) any later version.                                  *
+ *                                                                      *
+ * This program is distributed in the hope that it will be useful,      *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
+ * GNU General Public License for more details.                         *
+ *                                                                      *
+ * You should have received a copy of the GNU General Public License    *
+ * along with this program; if not, write to the Free Software          *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
+ * MA  02110-1301  USA                                                  *
+ ************************************************************************/
+
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       die();
+} elseif ((!isHtmlOutputMode()) || (!isResetModeEnabled())) {
+       // Do not execute when script is in CSS mode or no daily reset
+       return;
+} elseif (!isExtensionInstalledAndNewer('user', '0.5.8')) {
+       logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension ext-user disabled or out-dated.');
+       return;
+}
+
+// Debug line
+//* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset started.');
+
+// Is auto-purging activated and configured correctly?
+if ((isApSubidsEnabled()) && (getApSubidsSince() > 0)) {
+       // Start purging
+       SQL_QUERY('DELETE LOW_PRIORITY FROM
+       `{?_MYSQL_PREFIX?}_subid_log`
+WHERE
+       (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(`entry_added`)) >= {?ap_subids_since?}',
+               __FILE__, __LINE__);
+
+       // Are some entries deleted?
+       if (SQL_AFFECTEDROWS() > 0) {
+               // Okay, then send an email to the admin
+               sendAdminNotification('{--ADMIN_PURGE_USER_SUBID_LOG_SUBJECT--}', 'admin_purge_user_subid_log', SQL_AFFECTEDROWS());
+       } // END - if
+} // END - if
+
+// Debug line
+//* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset ended.');
+
+// [EOF]
+?>
index d0e26dd18ccf9e56d3a37e9e3a79f4a2d98cec89..5c02468c3ca501481bcc98285089e028b298e331 100644 (file)
@@ -41,10 +41,10 @@ if (!defined('__SECURITY')) {
 } // END - if
 
 // Version number
-setThisExtensionVersion('0.9.2');
+setThisExtensionVersion('0.9.3');
 
 // Version history array (add more with , '0.0.1' and so on)
-setExtensionVersionHistory(array('0.0.0', '0.0.1', '0.0.2', '0.0.3', '0.0.4', '0.0.5', '0.0.6', '0.0.7', '0.0.8', '0.0.9', '0.1.0', '0.1.1', '0.1.2', '0.1.3', '0.1.4', '0.1.5', '0.1.6', '0.1.7', '0.1.8', '0.1.9', '0.2.0', '0.2.1', '0.2.2', '0.2.3', '0.2.4', '0.2.5', '0.2.6', '0.2.7', '0.2.8', '0.2.9', '0.3.0', '0.3.1', '0.3.2', '0.3.3', '0.3.4', '0.3.5', '0.3.6', '0.3.7', '0.3.8', '0.3.9', '0.4.0', '0.4.1', '0.4.2', '0.4.3', '0.4.4', '0.4.5', '0.4.6', '0.4.7', '0.4.8', '0.4.9', '0.5.0', '0.5.1', '0.5.2', '0.5.3', '0.5.4', '0.5.5', '0.5.6', '0.5.7', '0.5.8', '0.5.9', '0.6.0', '0.6.1', '0.6.2', '0.6.3', '0.6.4', '0.6.4', '0.6.5', '0.6.6', '0.6.7', '0.6.8', '0.6.9', '0.7.0', '0.7.1', '0.7.2', '0.7.3', '0.7.4', '0.7.5', '0.7.6', '0.7.7', '0.7.8', '0.7.9', '0.8.0', '0.8.1', '0.8.2', '0.8.3', '0.8.4', '0.8.5', '0.8.6', '0.8.7', '0.8.8', '0.8.9', '0.9.0', '0.9.1', '0.9.2'));
+setExtensionVersionHistory(array('0.0.0', '0.0.1', '0.0.2', '0.0.3', '0.0.4', '0.0.5', '0.0.6', '0.0.7', '0.0.8', '0.0.9', '0.1.0', '0.1.1', '0.1.2', '0.1.3', '0.1.4', '0.1.5', '0.1.6', '0.1.7', '0.1.8', '0.1.9', '0.2.0', '0.2.1', '0.2.2', '0.2.3', '0.2.4', '0.2.5', '0.2.6', '0.2.7', '0.2.8', '0.2.9', '0.3.0', '0.3.1', '0.3.2', '0.3.3', '0.3.4', '0.3.5', '0.3.6', '0.3.7', '0.3.8', '0.3.9', '0.4.0', '0.4.1', '0.4.2', '0.4.3', '0.4.4', '0.4.5', '0.4.6', '0.4.7', '0.4.8', '0.4.9', '0.5.0', '0.5.1', '0.5.2', '0.5.3', '0.5.4', '0.5.5', '0.5.6', '0.5.7', '0.5.8', '0.5.9', '0.6.0', '0.6.1', '0.6.2', '0.6.3', '0.6.4', '0.6.4', '0.6.5', '0.6.6', '0.6.7', '0.6.8', '0.6.9', '0.7.0', '0.7.1', '0.7.2', '0.7.3', '0.7.4', '0.7.5', '0.7.6', '0.7.7', '0.7.8', '0.7.9', '0.8.0', '0.8.1', '0.8.2', '0.8.3', '0.8.4', '0.8.5', '0.8.6', '0.8.7', '0.8.8', '0.8.9', '0.9.0', '0.9.1', '0.9.2', '0.9.3'));
 
 // Keep this extension always active!
 setExtensionAlwaysActive('Y');
@@ -108,6 +108,7 @@ IN (
                unregisterFilter(__FILE__, __LINE__, 'member_login_check', 'RESET_USER_LOGIN_FAILURE', TRUE, isExtensionDryRun());
                unregisterFilter(__FILE__, __LINE__, 'add_history_entry', 'ADD_HISTORY_ENTRY', TRUE, isExtensionDryRun());
                unregisterFilter(__FILE__, __LINE__, 'init', 'GENERATE_FILE_SECRET_HASH', TRUE, isExtensionDryRun());
+               unregisterFilter(__FILE__, __LINE__, 'extra_autopurge', 'SERVER_NAME_EXTRA_AUTOPURGE', TRUE, isExtensionDryRun());
                break;
 
        case 'activate': // Do stuff when admin activates this extension
@@ -963,6 +964,17 @@ PRIMARY KEY (`server_name_id`)
                                // Update notes (these will be set as task text!)
                                setExtensionUpdateNotes("Sorry, hatte noch IP-Nummer, User-Agent, aufrufende Seite und Z&auml;hler vergessen.");
                                break;
+
+                       case '0.9.3': // SQL queries for v0.9.3
+                               addConfigAddSql('ap_server_name', "ENUM('Y','N') NOT NULL DEFAULT 'Y'");
+                               addConfigAddSql('ap_server_name_since', 'BIGINT(20) UNSIGNED NOT NULL DEFAULT ' . (getOneDay() * 7));
+
+                               // Register filter
+                               registerFilter(__FILE__, __LINE__, 'extra_autopurge', 'SERVER_NAME_EXTRA_AUTOPURGE', FALSE, TRUE, isExtensionDryRun());
+
+                               // Update notes (these will be set as task text!)
+                               setExtensionUpdateNotes("Bereinigung von verkehrten <strong>SERVER_NAME</strong> Eintr&auml;gen hinzugef&uuml;gt.");
+                               break;
                } // END - switch
                break;
 
index 1e4d7215e1fd37032a8a33852ddde7b46ebc1e7e..994b40b92915c3566030f8df1f6f6553696a83ff 100644 (file)
@@ -41,10 +41,10 @@ if (!defined('__SECURITY')) {
 } // END - if
 
 // Version number
-setThisExtensionVersion('0.5.7');
+setThisExtensionVersion('0.5.8');
 
 // Version history array (add more with , '0.0.1' and so on)
-setExtensionVersionHistory(array('0.0.0', '0.1.0', '0.1.1', '0.1.2', '0.1.3', '0.1.4', '0.1.5', '0.1.6', '0.1.7', '0.1.8', '0.1.9', '0.2.0', '0.2.1', '0.2.2', '0.2.3', '0.2.4', '0.2.5', '0.2.6', '0.2.7', '0.2.8', '0.2.9', '0.3.0', '0.3.1', '0.3.2', '0.3.3', '0.3.4', '0.3.5', '0.3.6', '0.3.7', '0.3.8', '0.3.9', '0.4.0', '0.4.1', '0.4.2', '0.4.3', '0.4.4', '0.4.5', '0.4.6', '0.4.7', '0.4.8', '0.4.9', '0.5.0', '0.5.1', '0.5.2', '0.5.3', '0.5.4', '0.5.5', '0.5.6', '0.5.7'));
+setExtensionVersionHistory(array('0.0.0', '0.1.0', '0.1.1', '0.1.2', '0.1.3', '0.1.4', '0.1.5', '0.1.6', '0.1.7', '0.1.8', '0.1.9', '0.2.0', '0.2.1', '0.2.2', '0.2.3', '0.2.4', '0.2.5', '0.2.6', '0.2.7', '0.2.8', '0.2.9', '0.3.0', '0.3.1', '0.3.2', '0.3.3', '0.3.4', '0.3.5', '0.3.6', '0.3.7', '0.3.8', '0.3.9', '0.4.0', '0.4.1', '0.4.2', '0.4.3', '0.4.4', '0.4.5', '0.4.6', '0.4.7', '0.4.8', '0.4.9', '0.5.0', '0.5.1', '0.5.2', '0.5.3', '0.5.4', '0.5.5', '0.5.6', '0.5.7', '0.5.8'));
 
 // Keep this extension always active!
 setExtensionAlwaysActive('Y');
@@ -663,6 +663,17 @@ INDEX (`subid`)",
                                // Update notes (these will be set as task text!)
                                setExtensionUpdateNotes("Men&uuml; zum Auflisten des Guthabens hinzugef&uuml;gt. Diese Daten sollen noch sp&auml;ter weiter verarbeitet werden. Zum Beispiel soll dann schnell feststellbar sein, welche Verdienstgruppe das meiste und wenigste {?POINTS?}-Volumen besitzt.");
                                break;
+
+                       case '0.5.8': // SQL queries for v0.5.8
+                               addConfigAddSql('ap_subids', "ENUM('Y', 'N') NOT NULL DEFAULT 'Y'");
+                               addConfigAddSql('ap_subids_since', 'BIGINT(20) UNSIGNED NOT NULL DEFAULT ' . (getOneDay() * 7));
+
+                               // Admin menu
+                               addAdminMenuSql('setup', 'config_user_subid', 'Sub-Id Tracking', '&Auml;ndern Sie hier alle Einstellungen zu den Sub-Ids.', 10);
+
+                               // Update notes (these will be set as task text!)
+                               setExtensionUpdateNotes("Bereinigung von Sub-Ids und deren Einstellungen hinzugef&uuml;gt.");
+                               break;
                } // END - switch
                break;
 
index 5f2dc52d1886c224b2e8846905515b2dae4d52c8..38193a20596f899e1c675581fb71d02c1c7540d3 100644 (file)
@@ -1352,5 +1352,27 @@ function FILTER_ADD_INPUT_HIDDEN_SESSION_ID ($filterData) {
        return $filterData;
 }
 
+// Filter for purging old SERVER_NAME entries
+function FILTER_SERVER_NAME_EXTRA_AUTOPURGE ($filterData) {
+       // Is purging configured?
+       if ((isApServerNameEnabled()) && (getApServerNameSince() > 0)) {
+               // Then start purging
+               SQL_QUERY('DELETE LOW_PRIORITY FROM
+       `{?_MYSQL_PREFIX?}_server_name_log`
+WHERE
+       (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(`server_name_added`)) >= {?ap_server_name_since?}',
+                       __FILE__, __LINE__);
+
+               // Are some entries deleted?
+               if (SQL_AFFECTEDROWS() > 0) {
+                       // Okay, then send an email to the admin
+                       sendAdminNotification('{--ADMIN_PURGE_USER_SERVER_NAME_LOG_SUBJECT--}', 'admin_purge_user_server_name_log', SQL_AFFECTEDROWS());
+               } // END - if
+       } // END - if
+
+       // Return filter data
+       return $filterData;
+}
+
 // [EOF]
 ?>
index bf51d393b832ab921d9d5a43b96c732a10f003b3..fb8fa8386d02b0cce70428a8b64322ff44f63f40 100644 (file)
@@ -45,27 +45,22 @@ addMessages(array(
        // Admin lines
        'ADMIN_CONFIG_AUTOPURGE_TITLE' => "Konfiguration der automatischen L&ouml;schungen",
        'ADMIN_CONFIG_AUTOPURGE_INACTIVE' => "Sollten inaktive Accounts erkannt und gel&ouml;scht werden?",
-       'ADMIN_CONFIG_AUTOPURGE_INACTIVE_SINCE' => "Dauer bis best&auml;tigtes Account als inaktiv markiert wird",
-       'ADMIN_CONFIG_AUTOPURGE_INACTIVE_TIME' => "Dauer bis inaktives Account gel&ouml;scht wird",
+       'ADMIN_CONFIG_AUTOPURGE_INACTIVE_SINCE' => "Dauer bis best&auml;tigtes Account als inaktiv markiert wird:",
+       'ADMIN_CONFIG_AUTOPURGE_INACTIVE_TIME' => "Dauer bis inaktives Account gel&ouml;scht wird:",
        'ADMIN_CONFIG_AUTOPURGE_UNCONFIRMED' => "Sollen unbest&auml;tigte Accounts gel&ouml;scht werden?",
-       'ADMIN_CONFIG_AUTOPURGE_UNCONFIRMED_TIME' => "Dauer bis unbest&auml;tigte Accounts gel&ouml;scht werden",
+       'ADMIN_CONFIG_AUTOPURGE_UNCONFIRMED_TIME' => "Dauer bis unbest&auml;tigte Accounts gel&ouml;scht werden:",
        'ADMIN_AUTOPURGE_ALL_ACTIVE' => "Alle Ihre Mitlieder sind aktiv.",
        'ADMIN_CONFIG_AUTOPURGE_TASKS' => "L&ouml;schen von veralteten zu L&ouml;schen markierten Aufgaben?",
-       'ADMIN_CONFIG_AUTOPURGE_TASKS_TIME' => "Dauer bis zu l&ouml;schen marktierte Aufgaben gel&ouml;scht werden",
-       'ADMIN_CONFIG_AUTOPURGE_INACTIVE_TITLE' => "Inaktive Accounts l&ouml;schen",
-       'ADMIN_CONFIG_AUTOPURGE_UNCONFIRMED_TITLE' => "Unbest&auml;tigte Accounts l&ouml;schen",
-       'ADMIN_CONFIG_AUTOPURGE_TASKS_TITLE' => "Veraltete Aufgaben l&ouml;schen",
-       'ADMIN_CONFIG_AUTOPURGE_NOTIFICATION_TITLE' => "Benachtigung an Admin bei Auto-L&ouml;schung",
-       'ADMIN_CONFIG_AUTOPURGE_NOTIFY_INACTIVE' => "Benachrichtigung bei inaktive Accounts l&ouml;schen",
-       'ADMIN_CONFIG_AUTOPURGE_NOTIFY_UNCONFIRMED' => "Benachrichtigung bei unbest&auml;tigte Accounts l&ouml;schen",
-       'ADMIN_CONFIG_AUTOPURGE_NOTIFY_TASKS' => "Benachrichtigung bei veraltete Aufgaben l&ouml;schen",
+       'ADMIN_CONFIG_AUTOPURGE_TASKS_TIME' => "Dauer bis zu l&ouml;schen marktierte Aufgaben gel&ouml;scht werden:",
+       'ADMIN_CONFIG_AUTOPURGE_NOTIFY_INACTIVE' => "Benachrichtigung bei inaktive Accounts l&ouml;schen?",
+       'ADMIN_CONFIG_AUTOPURGE_NOTIFY_UNCONFIRMED' => "Benachrichtigung bei unbest&auml;tigte Accounts l&ouml;schen?",
+       'ADMIN_CONFIG_AUTOPURGE_NOTIFY_TASKS' => "Benachrichtigung bei veraltete Aufgaben l&ouml;schen?",
        'ADMIN_LIST_AUTOPURGE_TITLE' => "Automatisch zu l&ouml;schende Mitglieder",
        'ADMIN_LIST_AUTOPURGE_FOOTER' => "Hier sollte ein Hinweis kommen.",
        'ADMIN_AUTOPURGE_NOTIFIED' => "Benachrichtigt",
-       'ADMIN_CONFIG_AUTOPURGE_DELETE_MAILS_TITLE' => "Mails von gel&ouml;schten Mitgliedern l&ouml;schen",
        'ADMIN_CONFIG_AUTOPURGE_DELETE_MAILS' => "Sollen die Mailbuchungen von bereits gel&ouml;schten Mitgliedern gel&ouml;scht werden?",
-       'ADMIN_CONFIG_AUTOPURGE_DELETE_MAILS_TIME' => "Dauer bis Mails gel&ouml;scht werden",
-       'ADMIN_CONFIG_AUTOPURGE_NOTIFY_DELETE_MAILS' => "Benachrichtigen bei L&ouml;schung von Mails",
+       'ADMIN_CONFIG_AUTOPURGE_DELETE_MAILS_TIME' => "Dauer bis Mails gel&ouml;scht werden:",
+       'ADMIN_CONFIG_AUTOPURGE_NOTIFY_DELETE_MAILS' => "Benachrichtigen bei L&ouml;schung von Mails?",
 
        // Subject lines
        'MEMBER_AUTOPURGE_SUBJECT' => "{?POINTS?}-Gutschrift bei Auto-L&ouml;schung",
@@ -79,10 +74,17 @@ addMessages(array(
        'ADMIN_AUTOPURGE_TURBO_SUBJECT' => "[Auto-Purge:] Veraltete Bonus-Eintr&auml;ge",
        'ADMIN_AUTOPURGE_DELETE_MAILS_SUBJECT' => "[Auto-Purge:] Mailbuchungen bereits gel. Mitglieder",
 
+       // Admin - legends
+       'ADMIN_CONFIG_AUTOPURGE_INACTIVE_LEGEND' => "Inaktive Accounts l&ouml;schen",
+       'ADMIN_CONFIG_AUTOPURGE_UNCONFIRMED_LEGEND' => "Unbest&auml;tigte Accounts l&ouml;schen",
+       'ADMIN_CONFIG_AUTOPURGE_TASKS_LEGEND' => "Veraltete Aufgaben l&ouml;schen",
+       'ADMIN_CONFIG_AUTOPURGE_NOTIFICATION_LEGEND' => "Benachtigung an Admin bei Auto-L&ouml;schung",
+       'ADMIN_CONFIG_AUTOPURGE_DELETE_MAILS_LEGEND' => "Mails von gel&ouml;schten Mitgliedern l&ouml;schen",
+       'ADMIN_CONFIG_AUTOPURGE_MAILID_LEGEND' => "Mailbest&auml;tigungslinks l&ouml;schen",
+
        // Moved from other extensions
        'ADMIN_CONFIG_AUTOPURGE_ACTIVE' => "Auto-L&ouml;schung von Best&auml;tigungslink ist aktiviert?",
        'ADMIN_CONFIG_MAIL_LIFETIME' => "G&uuml;tigkeitsdauer der Best&auml;tigungslinks (0 = Best&auml;tigungslinks laufen nie ab)",
-       'ADMIN_CONFIG_AUTOPURGE_MAILID_TITLE' => "Mailbest&auml;tigungslinks l&ouml;schen",
 
        // Points accounts - subject
        'POINTS_SUBJECT_AUTOPURGE_ADD' => "Mailr&uuml;ckverg&uuml;tung durch Autol&ouml;schung",
index 87d8da253772fd27c64e36bfbdb0669fda4080df..6fe926b9dbafafe7fe7361fa579140e66980f195 100644 (file)
@@ -1375,6 +1375,14 @@ addMessages(array(
        'ADMIN_TASK_LIST_SERVER_NAME_LOG_TITLE' => "Es sind geloggte SERVER_NAME-Logbucheintr&auml;ge vorhanden.",
        'ADMIN_SERVER_NAME' => "Host-Kopfzeile",
 
+       // Admin - server_name_log - config
+       'ADMIN_CONFIG_AUTOPURGE_SERVER_NAME_LOG_LEGEND' => "Bereinigung von SERVER_NAME-Eintr&auml;gen",
+       'ADMIN_CONFIG_AUTOPURGE_SERVER_NAME_LOG' => "Sollen verkehrte SERVER_NAME-Eintr&auml;ge bereinigt werden?",
+       'ADMIN_CONFIG_AUTOPURGE_SERVER_NAME_LOG_TIME' => "Dauer bis SERVER_NAME-Eintr&auml;ge gel&ouml;scht werden:",
+
+       // Admin - server_name_log - subject lines
+       'ADMIN_PURGE_USER_SERVER_NAME_LOG_SUBJECT' => "Es wurden verkehrte SERVER_NAME-Eintr&auml;ge bereinigt",
+
        // Admin - user's points amount
        'ADMIN_LIST_USER_AMOUNTS_TITLE' => "Verteilung des {?POINTS?}-Gesamtvolumens",
        'ADMIN_TOTAL_POINTS' => "Gesamtguthaben",
index 376d583a1cfc0afe38705f1e81b0de196139d672..1b70bd183c94fec911450d69f754c55e23bd30ea 100644 (file)
@@ -169,6 +169,7 @@ addMessages(array(
        'ADMIN_MEM_EDIT_USER_SUBIDS_SUBJECT' => "Mitglied hat eine Sub-Id ge&auml;ndert",
        'ADMIN_DELETE_USER_SUBIDS_SUBJECT' => "Eine Sub-Id wurde gel&ouml;scht",
        'ADMIN_MEM_DELETE_USER_SUBIDS_SUBJECT' => "Mitglied hat eine Sub-Id gel&ouml;scht",
+       'ADMIN_PURGE_USER_SUBID_LOG_SUBJECT' => "Bereinigung des Sub-Id-Logbuchs",
        'MEMBER_ADD_USER_SUBIDS_SUBJECT' => "Neue Sub-Id hinzugef&uuml;gt",
        'MEMBER_EDIT_USER_SUBIDS_SUBJECT' => "&Auml;nderung Ihrer Sub-Id",
        'MEMBER_MEM_EDIT_USER_SUBIDS_SUBJECT' => "&Auml;nderung Ihrer Sub-Id",
@@ -189,6 +190,12 @@ addMessages(array(
        'ADMIN_USER_SUBID_NO_SELECTIONS' => "Sie haben keine Eintr&auml;ge ausgew&auml;hlt oder es liegt ein Fehler vor. Bitte melden Sie dies im Bug-Tracker (auch wie es dazu gekommen ist).",
        'ADMIN_CHANGE_USER_SUBID' => "Sub-Id &auml;ndern:",
 
+       // Admin - config subids
+       'ADMIN_CONFIG_USER_SUBID_TITLE' => "Einstellungen zu Sub-Id-Tracking",
+       'ADMIN_CONFIG_USER_SUBID_AUTOPURGE_LEGEND' => "Bereinigung des Sub-Id-Logbuchs:",
+       'ADMIN_CONFIG_USER_SUBID_STUFF_AUTOPURGE' => "Soll das Logbuch f&uuml;r Sub-Id-Tracking bereinigt werden?",
+       'ADMIN_CONFIG_USER_SUBID_STUFF_AUTOPURGE_SINCE' => "Wie lange sollen alte Logbucheintr&auml;ge bestehen bleiben?",
+
        // Generic - subids
        'SUBID_VALUE' => "Sub-Id:",
        'SUBID_ADDED' => "Hinzugef&uuml;gt:",
index 4d8b7cf5c81cc842d7e99d216ef575b70c7354a2..fc13a2f44c16d3c023b673253c39cae3ab6f7246 100644 (file)
@@ -133,7 +133,7 @@ function getDoublerTotalPointsLeft() {
 
        if (getConfig('doubler_own') == 'Y') {
                // Take points from doubler's own account
-               $points += getConfig('doubler_points') - getConfig('doubler_used');
+               $points += getDoublerPoints() - getConfig('doubler_used');
        } // END - if
 
        if ((getConfig('doubler_jackpot') == 'Y') && (isExtensionActive('jackpot'))) {
@@ -143,9 +143,9 @@ function getDoublerTotalPointsLeft() {
                if (!empty($jackpot)) $points += $jackpot;
        } // END - if
 
-       if (isValidUserId(getConfig('doubler_userid'))) {
+       if (isValidUserId(getDoublerUserid())) {
                // Get user's points
-               $user = getTotalPoints(getConfig('doubler_userid'));
+               $user = getTotalPoints(getDoublerUserid());
                $points += $user;
        } // END - if
 
index 189f3f782f9db78ffe3b9d7cac5bc83eaa642f4a..64e03f1a5cc01b151a4c7edf242a1649d51f9209 100644 (file)
@@ -1169,5 +1169,41 @@ function getTesterUserEmail () {
        return $GLOBALS[__FUNCTION__];
 }
 
+// Getter for 'ap_subids' config entry
+function getApSubids () {
+       // Is there cache?
+       if (!isset($GLOBALS[__FUNCTION__])) {
+               // Determine it
+               $GLOBALS[__FUNCTION__] = getConfig('ap_subids');
+       } // END - if
+
+       // Return cache
+       return $GLOBALS[__FUNCTION__];
+}
+
+// Determines whether 'ap_subids' is set to 'Y'
+function isApSubidsEnabled () {
+       // Is there cache?
+       if (!isset($GLOBALS[__FUNCTION__])) {
+               // Determine it
+               $GLOBALS[__FUNCTION__] = (getApSubids() == 'Y');
+       } // END - if
+
+       // Return cache
+       return $GLOBALS[__FUNCTION__];
+}
+
+// Getter for 'ap_subids_since' config entry
+function getApSubidsSince () {
+       // Is there cache?
+       if (!isset($GLOBALS[__FUNCTION__])) {
+               // Determine it
+               $GLOBALS[__FUNCTION__] = getConfig('ap_subids_since');
+       } // END - if
+
+       // Return cache
+       return $GLOBALS[__FUNCTION__];
+}
+
 // [EOF]
 ?>
index 6babb35b1880d90a4563396ae719de11f2e1c426..e1620270bb5eeac782fb0f53526f2a3de1030ea9 100644 (file)
@@ -148,10 +148,10 @@ if (((!SQL_HASZERONUMS($result_total)) && (getConfig('doubler_sent_all') == 'Y')
                        }
 
                        // Exclude webmaster from doubling...
-                       if ($content['userid'] != getConfig('doubler_userid')) {
+                       if ($content['userid'] != getDoublerUserid()) {
                                // Add points
                                initReferralSystem();
-                               addPointsThroughReferralSystem(sprintf("doubler_%s", strtolower(getConfig('doubler_send_mode'))), $content['userid'], $content['points']);
+                               addPointsThroughReferralSystem(sprintf("doubler_%s", strtolower(getDoublerSendMode())), $content['userid'], $content['points']);
                        } // END - if
 
                        // Set entry as "payed"
@@ -168,9 +168,9 @@ if (((!SQL_HASZERONUMS($result_total)) && (getConfig('doubler_sent_all') == 'Y')
                        } // END - if
 
                        // Exclude also webmaster's id in taking points from webmaster's account
-                       if (($userPoints > 0) && ($userPoints >= $content['points']) && ($okay === FALSE) && (getConfig('doubler_userid') > 0) && ($content['userid'] != getConfig('doubler_userid'))) {
+                       if (($userPoints > 0) && ($userPoints >= $content['points']) && ($okay === FALSE) && (getDoublerUserid() > 0) && ($content['userid'] != getDoublerUserid())) {
                                // Subtract points
-                               $okay = subtractPoints('doubler_payout', getConfig('doubler_userid'), $content['points']);
+                               $okay = subtractPoints('doubler_payout', getDoublerUserid(), $content['points']);
                        } // END - if
 
                        // Update doubler's account only when others are not updated
index 0beaf4ddbb3e3a30d439710ce4e803663dc30c67..c06ffecd8983df306f610dd8b7907e1a5d9508b9 100644 (file)
@@ -60,11 +60,12 @@ if (isFormSent()) {
        $content['ap_notify_del_mails']   = addSelectionBox('yn', getConfig('ap_dm_notify')   , 'ap_dm_notify');
 
        // Output time selection boxes
-       $content['ap_in_since']       = createConfigurationTimeSelections('ap_inactive_since'  , 'MWDh');
-       $content['ap_in_time']        = createConfigurationTimeSelections('ap_inactive_time'   , 'MWDh');
-       $content['ap_un_time']        = createConfigurationTimeSelections('ap_unconfirmed_time', 'MWDh');
-       $content['ap_task_time']      = createConfigurationTimeSelections('ap_tasks_time'      , 'MWDh');
-       $content['ap_del_mails_time'] = createConfigurationTimeSelections('ap_dm_timeout'      , 'MWDh');
+       $content['ap_in_since']          = createConfigurationTimeSelections('ap_inactive_since'   , 'MWDh');
+       $content['ap_in_time']           = createConfigurationTimeSelections('ap_inactive_time'    , 'MWDh');
+       $content['ap_un_time']           = createConfigurationTimeSelections('ap_unconfirmed_time' , 'MWDh');
+       $content['ap_task_time']         = createConfigurationTimeSelections('ap_tasks_time'       , 'MWDh');
+       $content['ap_del_mails_time']    = createConfigurationTimeSelections('ap_dm_timeout'       , 'MWDh');
+       $content['ap_server_name_since'] = createConfigurationTimeSelections('ap_server_name_since', 'MWDh');
 
        // Mail confirmation links
        $content['auto_purge'] = createConfigurationTimeSelections('auto_purge', 'MWD');
index ae143e0142ad5476f05ec75d1e20fbe2d3d04c49..fee6cfea01ac94bd1f934ca5d36c4805d3a35c97 100644 (file)
@@ -61,7 +61,7 @@ if (isFormSent()) {
        } // END - foreach
 
        // Transfer options
-       $content['doubler_userid'] = addMemberSelectionBox(getConfig('doubler_userid'), FALSE, TRUE, TRUE, 'doubler_userid');
+       $content['doubler_userid'] = addMemberSelectionBox(getDoublerUserid(), FALSE, TRUE, TRUE, 'doubler_userid');
 
        // Number of rows to display (option lines!!!)
        foreach (array('new','pay','old') as $entry) {
diff --git a/inc/modules/admin/what-config_user_subid.php b/inc/modules/admin/what-config_user_subid.php
new file mode 100644 (file)
index 0000000..bcc6051
--- /dev/null
@@ -0,0 +1,58 @@
+<?php
+/************************************************************************
+ * Mailer v0.2.1-FINAL                                Start: 11/10/2012 *
+ * ===================                          Last change: 11/10/2012 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-config_user_subid.php                       *
+ * -------------------------------------------------------------------- *
+ * Short description : Configuration for                                *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Konfiguration der                                *
+ * -------------------------------------------------------------------- *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
+ *                                                                      *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or    *
+ * (at your option) any later version.                                  *
+ *                                                                      *
+ * This program is distributed in the hope that it will be useful,      *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
+ * GNU General Public License for more details.                         *
+ *                                                                      *
+ * You should have received a copy of the GNU General Public License    *
+ * along with this program; if not, write to the Free Software          *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
+ * MA  02110-1301  USA                                                  *
+ ************************************************************************/
+
+// Some security stuff...
+if ((!defined('__SECURITY')) || (!isAdmin())) {
+       die();
+} // END - if
+
+// Add description as navigation point
+addYouAreHereLink('admin', __FILE__);
+
+if (isFormSent()) {
+       // Save data
+       adminSaveSettingsFromPostData();
+} else {
+       // Prepare time selections
+       $content['ap_subids_since'] = createConfigurationTimeSelections('ap_subids_since', 'MWDh');
+
+       // Load template
+       loadTemplate('admin_config_user_subid', FALSE, $content);
+}
+
+// [EOF]
+?>
index 3e25234b8b86bd650bb448b57308d4385efe385d..6e0f92faaa3be35ec5473c502236945632208610 100644 (file)
@@ -51,7 +51,7 @@ if ((!isExtensionActive('doubler')) && (!isAdmin())) {
 } // END - if
 
 // Which mail-send-mode did the admin setup?
-$content['payout_time'] = '{--DOUBLER_PAYOUT_TIME_' . getConfig('doubler_send_mode') . '--}';
+$content['payout_time'] = '{--DOUBLER_PAYOUT_TIME_' . getDoublerSendMode() . '--}';
 
 // Generate table with already payed out doubles
 $content['payout_history'] = generateDoublerTable(getMemberId(), 'Y', 'N', 'DESC');
index da71a257dfaf64ccb12ae72633ea648add793d38..65ac9da294c95ca86e822916bd0fe3035722357d 100644 (file)
@@ -2474,6 +2474,42 @@ function isDisplayHomeInIndexEnabled () {
        return $GLOBALS[__FUNCTION__];
 }
 
+// Getter for 'ap_server_name_since'
+function getApServerNameSince () {
+       // Is the cache entry set?
+       if (!isset($GLOBALS[__FUNCTION__])) {
+               // No, so determine it
+               $GLOBALS[__FUNCTION__] = getConfig('ap_server_name_since');
+       } // END - if
+
+       // Return cached entry
+       return $GLOBALS[__FUNCTION__];
+}
+
+// Getter for 'ap_server_name'
+function getApServerName () {
+       // Is the cache entry set?
+       if (!isset($GLOBALS[__FUNCTION__])) {
+               // No, so determine it
+               $GLOBALS[__FUNCTION__] = getConfig('ap_server_name');
+       } // END - if
+
+       // Return cached entry
+       return $GLOBALS[__FUNCTION__];
+}
+
+// Checks whether 'ap_server_name' is 'Y'
+function isApServerNameEnabled () {
+       // Is the cache entry set?
+       if (!isset($GLOBALS[__FUNCTION__])) {
+               // No, so determine it
+               $GLOBALS[__FUNCTION__] = (getApServerName() == 'Y');
+       } // END - if
+
+       // Return cached entry
+       return $GLOBALS[__FUNCTION__];
+}
+
 // Getter for 'admin_menu_javascript'
 function getAdminMenuJavascript () {
        // Is the cache entry set?
diff --git a/templates/de/emails/admin/admin_purge_user_server_name_log.tpl b/templates/de/emails/admin/admin_purge_user_server_name_log.tpl
new file mode 100644 (file)
index 0000000..6d0a101
--- /dev/null
@@ -0,0 +1,8 @@
+Hallo Administrator,
+
+es wurden soeben {%pipe,translateComma=$content%} Logbucheintr&auml;ge aus der Tabelle {?_MYSQL_PREFIX?}_server_name_log bereinigt, die mehr als {%config,createFancyTime=ap_server_name_since%} noch gespeichert waren.
+
+Mit freundlichen Gr&uuml;&szlig;en,
+  Ihr {?MAIN_TITLE?} Script
+
+{?URL?}/admin.php
diff --git a/templates/de/emails/admin/admin_purge_user_subid_log.tpl b/templates/de/emails/admin/admin_purge_user_subid_log.tpl
new file mode 100644 (file)
index 0000000..c42ed92
--- /dev/null
@@ -0,0 +1,8 @@
+Hallo Administrator,
+
+es wurden soeben {%pipe,translateComma=$content%} Logbucheintr&auml;ge aus der Tabelle {?_MYSQL_PREFIX?}_subid_log bereinigt, die mehr als {%config,createFancyTime=ap_subids_since%} noch gespeichert waren.
+
+Mit freundlichen Gr&uuml;&szlig;en,
+  Ihr {?MAIN_TITLE?} Script
+
+{?URL?}/admin.php
index f7d6778271f84024836a42aa361fe45878cc0c26..385094182809250f471c5b2dd8b76829e3b47be9 100644 (file)
@@ -6,7 +6,7 @@
        </div>
 
        <fieldset id="autopurge_inactive_fields">
-               <legend>{--ADMIN_CONFIG_AUTOPURGE_INACTIVE_TITLE--}</legend>
+               <legend>{--ADMIN_CONFIG_AUTOPURGE_INACTIVE_LEGEND--}</legend>
 
                <div class="table_row">
                        <label class="admin_label" for="autopurge_inactive">{--ADMIN_CONFIG_AUTOPURGE_INACTIVE--}</label>
@@ -25,7 +25,7 @@
        </fieldset>
 
        <fieldset id="autopurge_unconfirmed_fields">
-               <legend>{--ADMIN_CONFIG_AUTOPURGE_UNCONFIRMED_TITLE--}</legend>
+               <legend>{--ADMIN_CONFIG_AUTOPURGE_UNCONFIRMED_LEGEND--}</legend>
 
                <div class="table_row">
                        <label class="admin_label" for="autopurge_unconfirmed">{--ADMIN_CONFIG_AUTOPURGE_UNCONFIRMED--}</label>
                </div>
 
                <div class="table_row">
-                       <label class="admin_label" for="ap_un_time">{--ADMIN_CONFIG_AUTOPURGE_UNCONFIRMED_TIME--}:</label>
+                       <label class="admin_label" for="ap_un_time">{--ADMIN_CONFIG_AUTOPURGE_UNCONFIRMED_TIME--}</label>
                        <div align="center">$content[ap_un_time]</div>
                </div>
        </fieldset>
 
        <fieldset id="autopurge_tasks_fields">
-               <legend>{--ADMIN_CONFIG_AUTOPURGE_TASKS_TITLE--}</legend>
+               <legend>{--ADMIN_CONFIG_AUTOPURGE_TASKS_LEGEND--}</legend>
 
                <div class="table_row">
                        <label class="admin_label" for="autopurge_tasks">{--ADMIN_CONFIG_AUTOPURGE_TASKS--}</label>
@@ -53,7 +53,7 @@
        </fieldset>
 
        <fieldset id="autopurge_mailid_fields">
-               <legend>{--ADMIN_CONFIG_AUTOPURGE_MAILID_TITLE--}</legend>
+               <legend>{--ADMIN_CONFIG_AUTOPURGE_MAILID_LEGEND--}</legend>
 
                <div class="table_row">
                        <label class="admin_label" for="auto_purge">{--ADMIN_CONFIG_AUTOPURGE_ACTIVE--}</label>
@@ -72,7 +72,7 @@
        </fieldset>
 
        <fieldset id="autopurge_delete_mails_fields">
-               <legend>{--ADMIN_CONFIG_AUTOPURGE_DELETE_MAILS_TITLE--}</legend>
+               <legend>{--ADMIN_CONFIG_AUTOPURGE_DELETE_MAILS_LEGEND--}</legend>
 
                <div class="table_row">
                        <label class="admin_label" for="ap_del_mails">{--ADMIN_CONFIG_AUTOPURGE_DELETE_MAILS--}</label>
                </div>
        </fieldset>
 
+       <fieldset id="autopurge_server_name_log_fields">
+               <legend>{--ADMIN_CONFIG_AUTOPURGE_SERVER_NAME_LOG_LEGEND--}</legend>
+
+               <div class="table_row">
+                       <label class="admin_label" for="autopurge_server_name_log">{--ADMIN_CONFIG_AUTOPURGE_SERVER_NAME_LOG--}</label>
+                       <div align="center">{%template,ConfigurationYesNoSelectionBox=ap_server_name%}</div>
+               </div>
+
+               <div class="table_row">
+                       <label class="admin_label" for="ap_un_time">{--ADMIN_CONFIG_AUTOPURGE_SERVER_NAME_LOG_TIME--}</label>
+                       <div align="center">$content[ap_server_name_since]</div>
+               </div>
+       </fieldset>
+
        <fieldset id="autopurge_notification_fields">
-               <legend>{--ADMIN_CONFIG_AUTOPURGE_NOTIFICATION_TITLE--}</legend>
+               <legend>{--ADMIN_CONFIG_AUTOPURGE_NOTIFICATION_LEGEND--}</legend>
 
                <div class="table_row">
                        <label class="admin_label" for="ap_notify_inactive">{--ADMIN_CONFIG_AUTOPURGE_NOTIFY_INACTIVE--}</label>
diff --git a/templates/de/html/admin/admin_config_user_subid.tpl b/templates/de/html/admin/admin_config_user_subid.tpl
new file mode 100644 (file)
index 0000000..fac4113
--- /dev/null
@@ -0,0 +1,32 @@
+<div align="center">
+{%form,formMethodPost=modules.php?module=admin&amp;what=config_user_subid%}
+<div class="table dashed">
+       <div class="table_header bottom">
+               <strong>{--ADMIN_CONFIG_USER_SUBID_TITLE--}</strong>
+       </div>
+
+       <fieldset id="config_ap_subids_since">
+               <legend>{--ADMIN_CONFIG_USER_SUBID_AUTOPURGE_LEGEND--}</legend>
+
+               <div class="table_row">
+                       <label for="ap_subids">{--ADMIN_CONFIG_USER_SUBID_STUFF_AUTOPURGE--}</label>
+                       <div align="center">
+                               {%template,ConfigurationYesNoSelectionBox=ap_subids%}
+                       </div>
+               </div>
+
+               <div class="table_row">
+                       <label for="ap_subids_since">{--ADMIN_CONFIG_USER_SUBID_STUFF_AUTOPURGE_SINCE--}</label>
+                       <div align="center">
+                               $content[ap_subids_since]
+                       </div>
+               </div>
+       </fieldset>
+
+       <div class="table_footer top">
+               <input type="reset" class="form_reset" value="{--CLEAR_FORM--}" />
+               <input type="submit" class="form_submit" name="ok" value="{--SAVE_SETTINGS--}" />
+       </div>
+</div>
+{%form_close%}
+</div>