]> git.mxchange.org Git - mailer.git/blob - inc/gen_refback.php
3e79ad1d7d835d099121df8e63b70d948b9687c6
[mailer.git] / inc / gen_refback.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/27/2008 *
4  * ===============                              Last change: 09/27/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : gen_refback.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : Generate refback table including all refs        *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Refback-Tabelle mit allen Refs generieren        *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (!defined('__SECURITY')) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // Sanity-check: Do we have ref level 0?
41 $result = SQL_QUERY("SELECT id FROM "._MYSQL_PREFIX."_refsystem WHERE level=0", __FILE__, __LINE__);
42 if (SQL_NUMROWS($result) > 0) {
43         // Upgrade refsystem, ref-level 0 is silly here
44         SQL_QUERY("UPDATE "._MYSQL_PREFIX."_refsystem SET level=level+1", __FILE__, __LINE__);
45 } // END - if
46
47 // Free result
48 SQL_FREERESULT($result);
49
50 // Reset the table
51 SQL_QUERY("TRUNCATE TABLE "._MYSQL_PREFIX."_user_refs", __FILE__, __LINE__);
52
53 // Begin with all users in level one
54 $result_direct = SQL_QUERY("SELECT u.userid
55 FROM "._MYSQL_PREFIX."_user_data AS u
56 WHERE u.refid=0
57 ORDER BY u.userid ASC", __FILE__, __LINE__);
58
59 // Do we have entries?
60 if (SQL_NUMROWS($result_direct) > 0) {
61         global $cacheArray;
62
63         // When "walk" through all users
64         while (list($uid) = SQL_FETCHROW($result_direct)) {
65                 // Init level
66                 $cacheArray['back_level'] = 1;
67
68                 // Update refback table
69                 /* DEBUG: */ echo "uid={$uid}<br />\n";
70                 UPDATE_REFBACK_TABLE($uid);
71         } // END - while
72 } // END - if
73
74 // Free result
75 SQL_FREERESULT($result_direct);
76
77 //
78 ?>