3d72aec7f24790a39ea745edc733c62ddca1b175
[mailer.git] / inc / loader / load-payments.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 09/30/2012 *
4  * ===================                          Last change: 09/30/2012 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : load-payments.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 - 2013 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 (isInstaller()) {
42         // Do not run in installation phase
43         //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Run from installation phase.');
44         return FALSE;
45 }
46
47 // Let's start with the admins table...
48 if (($GLOBALS['cache_instance']->loadCacheFile('payments')) && ($GLOBALS['cache_instance']->extensionVersionMatches('payments'))) {
49         // Load cache
50         $GLOBALS['cache_array']['payments'] = $GLOBALS['cache_instance']->getArrayFromCache();
51
52         // Init temporary array
53         $paymentsData = array();
54
55         // Rewrite all to id
56         foreach ($GLOBALS['cache_array']['payments']['id'] as $key => $id) {
57                 // Re-add key with id
58                 foreach ($GLOBALS['cache_array']['payments'] as $key2 => $array) {
59                         // Is key2 not 'id'?
60                         if ($key2 != 'id') {
61                                 // Then Add it
62                                 $paymentsData[$id][$key2] = $GLOBALS['cache_array']['payments'][$key2][$key];
63                         } // END - if
64                 } // END - foreach
65         } // END - foreach
66
67         // Set the array back and remove temporary
68         $GLOBALS['cache_array']['payments'] = $paymentsData;
69         unset($paymentsData);
70 } elseif ((isHtmlOutputMode()) || (isAjaxOutputMode()) || (isRawOutputMode())) {
71         // Create cache file
72         $GLOBALS['cache_instance']->init();
73
74         // Query the database about this
75         $result = sqlQuery('SELECT * FROM `{?_MYSQL_PREFIX?}_payments` ORDER BY `id` ASC', __FILE__, __LINE__);
76         while ($data = sqlFetchArray($result)) {
77                 // Save row
78                 $GLOBALS['cache_instance']->addRow($data);
79         } // END - while
80
81         // Free memory
82         sqlFreeResult($result);
83
84         // Close cache
85         $GLOBALS['cache_instance']->storeExtensionVersion('payments');
86         $GLOBALS['cache_instance']->finalize();
87 }
88
89 // [EOF]
90 ?>