First batch of removal of the headers needed for revision-functions.php
[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  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
14  * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
15  * For more information visit: http://mxchange.org                      *
16  *                                                                      *
17  * This program is free software; you can redistribute it and/or modify *
18  * it under the terms of the GNU General Public License as published by *
19  * the Free Software Foundation; either version 2 of the License, or    *
20  * (at your option) any later version.                                  *
21  *                                                                      *
22  * This program is distributed in the hope that it will be useful,      *
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
25  * GNU General Public License for more details.                         *
26  *                                                                      *
27  * You should have received a copy of the GNU General Public License    *
28  * along with this program; if not, write to the Free Software          *
29  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
30  * MA  02110-1301  USA                                                  *
31  ************************************************************************/
32
33 // Some security stuff...
34 if (!defined('__SECURITY')) {
35         die();
36 } elseif (isInstaller()) {
37         // Do not run in installation phase
38         //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Run from installation phase.');
39         return FALSE;
40 }
41
42 // Let's start with the admins table...
43 if (($GLOBALS['cache_instance']->loadCacheFile('payments')) && ($GLOBALS['cache_instance']->extensionVersionMatches('payments'))) {
44         // Load cache
45         $GLOBALS['cache_array']['payments'] = $GLOBALS['cache_instance']->getArrayFromCache();
46
47         // Init temporary array
48         $paymentsData = array();
49
50         // Rewrite all to id
51         foreach ($GLOBALS['cache_array']['payments']['id'] as $key => $id) {
52                 // Re-add key with id
53                 foreach ($GLOBALS['cache_array']['payments'] as $key2 => $array) {
54                         // Is key2 not 'id'?
55                         if ($key2 != 'id') {
56                                 // Then Add it
57                                 $paymentsData[$id][$key2] = $GLOBALS['cache_array']['payments'][$key2][$key];
58                         } // END - if
59                 } // END - foreach
60         } // END - foreach
61
62         // Set the array back and remove temporary
63         $GLOBALS['cache_array']['payments'] = $paymentsData;
64         unset($paymentsData);
65 } elseif ((isHtmlOutputMode()) || (isAjaxOutputMode()) || (isRawOutputMode())) {
66         // Create cache file
67         $GLOBALS['cache_instance']->init();
68
69         // Query the database about this
70         $result = sqlQuery('SELECT * FROM `{?_MYSQL_PREFIX?}_payments` ORDER BY `id` ASC', __FILE__, __LINE__);
71         while ($data = sqlFetchArray($result)) {
72                 // Save row
73                 $GLOBALS['cache_instance']->addRow($data);
74         } // END - while
75
76         // Free memory
77         sqlFreeResult($result);
78
79         // Close cache
80         $GLOBALS['cache_instance']->storeExtensionVersion('payments');
81         $GLOBALS['cache_instance']->finalize();
82 }
83
84 // [EOF]
85 ?>