List active/inactive extensions
[mailer.git] / 0.2.1 / inc / libs / transfer_functions.php
1 <?php\r
2 /************************************************************************\r
3  * MXChange v0.2.1                                    Start: 10/13/2004 *\r
4  * ===============                              Last change: 10/13/2004 *\r
5  *                                                                      *\r
6  * -------------------------------------------------------------------- *\r
7  * File              : transfer_functions.php                           *\r
8  * -------------------------------------------------------------------- *\r
9  * Short description : Special functions for transfer extension         *\r
10  * -------------------------------------------------------------------- *\r
11  * Kurzbeschreibung  : Spezielle Funktion fuer transfer-Erweiterung     *\r
12  * -------------------------------------------------------------------- *\r
13  *                                                                      *\r
14  * -------------------------------------------------------------------- *\r
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *\r
16  * For more information visit: http://www.mxchange.org                  *\r
17  *                                                                      *\r
18  * This program is free software; you can redistribute it and/or modify *\r
19  * it under the terms of the GNU General Public License as published by *\r
20  * the Free Software Foundation; either version 2 of the License, or    *\r
21  * (at your option) any later version.                                  *\r
22  *                                                                      *\r
23  * This program is distributed in the hope that it will be useful,      *\r
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *\r
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *\r
26  * GNU General Public License for more details.                         *\r
27  *                                                                      *\r
28  * You should have received a copy of the GNU General Public License    *\r
29  * along with this program; if not, write to the Free Software          *\r
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *\r
31  * MA  02110-1301  USA                                                  *\r
32  ************************************************************************/\r
33 \r
34 // Some security stuff...\r
35 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))\r
36 {\r
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4)."/security.php";\r
38         require($INC);\r
39 }\r
40 //\r
41 function TRANSFER_AUTPPURGE($max, $age)\r
42 {\r
43         global $link;\r
44         // First get total in-going lines\r
45         $result = SQL_QUERY("SELECT id FROM "._MYSQL_PREFIX."_user_transfers_in ORDER BY id", __FILE__, __LINE__);\r
46         if (SQL_NUMROWS($result) > $max)\r
47         {\r
48                 // Update overdue transfers\r
49                 $remove = SQL_NUMROWS($result) - $max;\r
50 \r
51                 // This will make it really old, so the final removal query will find it\r
52                 $result = SQL_QUERY("UPDATE "._MYSQL_PREFIX."_user_transfers_in SET time_trans='0' ORDER BY id LIMIT ".$remove, __FILE__, __LINE__);\r
53         }\r
54         // Second get total out-going lines\r
55         $result = SQL_QUERY("SELECT id FROM "._MYSQL_PREFIX."_user_transfers_out ORDER BY id", __FILE__, __LINE__);\r
56         if (SQL_NUMROWS($result) > $max)\r
57         {\r
58                 // Update overdue transfers\r
59                 $remove = SQL_NUMROWS($result) - $max;\r
60 \r
61                 // This will make it really old, so the final removal query will find it\r
62                 $result = SQL_QUERY("UPDATE "._MYSQL_PREFIX."_user_transfers_out SET time_trans='0' ORDER BY id LIMIT ".$remove, __FILE__, __LINE__);\r
63         }\r
64 \r
65         // Remove old in-going transfers\r
66         $result = SQL_QUERY("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_transfers_in WHERE time_trans < ".(time() - $age), __FILE__, __LINE__);\r
67         $REMOVE = SQL_AFFECTEDROWS($link);\r
68 \r
69         // Remove old out-going transfers\r
70         $result = SQL_QUERY("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_transfers_out WHERE time_trans < ".(time() - $age), __FILE__, __LINE__);\r
71         $REMOVE += SQL_AFFECTEDROWS($link);\r
72 \r
73         // Only send email to admin(s) when we have removed entries\r
74         if ($REMOVE > 0)\r
75         {\r
76                 if (GET_EXT_VERSION("admins") >= "0.4.1")\r
77                 {\r
78                         SEND_ADMIN_EMAILS_PRO(TRANSFER_ADMIN_AUTOPURGE, "admin_transfer_ap", $REMOVE, 0);\r
79                 }\r
80                  else\r
81                 {\r
82                         $msg = LOAD_EMAIL_TEMPLATE("admin_transfer_ap", $REMOVE, 0);\r
83                         SEND_ADMIN_EMAILS(TRANSFER_ADMIN_AUTOPURGE, $msg);\r
84                 }\r
85         }\r
86 }\r
87 //\r
88 ?>\r