Added check if cache is valid, points_data is only available with recent ext-sql_patc...
[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://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         // Do we have cache?
52         if (!isset($GLOBALS['cache_array']['points_data']['subject'])) {
53                 // Try to remove the cache file
54                 $GLOBALS['cache_instance']->removeCacheFile();
55
56                 // Not found, so better abort here
57                 debug_report_bug(__FILE__, __LINE__, 'points_data has been generated, but does not contain "subject". Please try to reload to fix this.');
58         } // END - if
59
60         // Init temporary array
61         $pointsData = array();
62
63         // Rewrite all to subject
64         foreach ($GLOBALS['cache_array']['points_data']['subject'] as $key=>$subject) {
65                 // Re-add key with subject
66                 foreach ($GLOBALS['cache_array']['points_data'] as $key2=>$array) {
67                         // Is key2 not 'subject'?
68                         if ($key2 != 'subject') {
69                                 // Then Add it
70                                 $pointsData[$subject][$key2] = $GLOBALS['cache_array']['points_data'][$key2][$key];
71                         } // END - if
72                 } // END - foreach
73         } // END - foreach
74
75         // Set the array back and remove temporary
76         $GLOBALS['cache_array']['points_data'] = $pointsData;
77         unset($pointsData);
78 } elseif ((isHtmlOutputMode()) && (isExtensionInstalledAndNewer('sql_patches', '0.8.0'))) {
79         // Create cache file
80         $GLOBALS['cache_instance']->init();
81
82         // Query the database about this
83         $result = SQL_QUERY('SELECT * FROM `{?_MYSQL_PREFIX?}_points_data` ORDER BY `id` ASC', __FILE__, __LINE__);
84         while ($dummy = SQL_FETCHARRAY($result)) {
85                 // Save row
86                 $GLOBALS['cache_instance']->addRow($dummy);
87         } // END - while
88
89         // Free memory
90         SQL_FREERESULT($result);
91
92         // Close cache
93         $GLOBALS['cache_instance']->storeExtensionVersion('sql_patches');
94         $GLOBALS['cache_instance']->finalize();
95 }
96
97 // [EOF]
98 ?>