Added cache loader for table 'points_data'
[mailer.git] / inc / loader / load-points_data.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 07/31/2011 *
4  * ===================                          Last change: 07/31/2011 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : load-points_data.php                             *
8  * -------------------------------------------------------------------- *
9  * Short description : Load more cache files                            *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Mehr Cache-Dateien nachladen                     *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://www.mxchange.org                  *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         die();
41 } elseif (isInstallationPhase()) {
42         // Use this code if you don't want to run this cache loader on installation phase
43         return;
44 }
45
46 // Let's start with the admins table...
47 if (($GLOBALS['cache_instance']->loadCacheFile('points_data')) && ($GLOBALS['cache_instance']->extensionVersionMatches('sql_patches'))) {
48         // Load cache
49         $GLOBALS['cache_array']['points_data'] = $GLOBALS['cache_instance']->getArrayFromCache();
50
51         // Init temporary array
52         $pointsData = array();
53
54         // Rewrite all to subject
55         foreach ($GLOBALS['cache_array']['points_data']['subject'] as $key=>$subject) {
56                 // Re-add key with subject
57                 foreach ($GLOBALS['cache_array']['points_data'] as $key2=>$array) {
58                         // Is key2 not 'subject'?
59                         if ($key2 != 'subject') {
60                                 // Then Add it
61                                 $pointsData[$subject][$key2] = $GLOBALS['cache_array']['points_data'][$key2][$key];
62                         } // END - if
63                 } // END - foreach
64         } // END - foreach
65
66         // Set the array back and remove temporary
67         $GLOBALS['cache_array']['points_data'] = $pointsData;
68         unset($pointsData);
69 } elseif (isHtmlOutputMode()) {
70         // Create cache file
71         $GLOBALS['cache_instance']->init();
72
73         // Query the database about this
74         $result = SQL_QUERY('SELECT * FROM `{?_MYSQL_PREFIX?}_points_data` ORDER BY `id` ASC', __FILE__, __LINE__);
75         while ($dummy = SQL_FETCHARRAY($result)) {
76                 // Save row
77                 $GLOBALS['cache_instance']->addRow($dummy);
78         } // END - while
79
80         // Free memory
81         SQL_FREERESULT($result);
82
83         // Close cache
84         $GLOBALS['cache_instance']->storeExtensionVersion('sql_patches');
85         $GLOBALS['cache_instance']->finalize();
86 }
87
88 // [EOF]
89 ?>